@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@300;400;500;600;700;800;900&display=swap');
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #000; 
    background-color: #f4f4f4;
}

header {
    background-color: #cccbcb;
    padding: 10px 0;
}

.header-container {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.company-name {
    text-align: center; 
    margin-top: 5px; 
    margin-bottom: 5px;
}

.company-name a {
    display: inline-block;
    text-decoration: none;
}

.company-name img {
    max-width: 20px; 
    height: auto; 
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    max-width: 70px;
}

.navlist {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; 
    overflow: hidden;
    width: 100%; 
}

.navlist li {
    display: inline;
}

.navlist li a {
    display: inline-block;
    color: #000; 
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.navlist li a:hover {
    background-color: #000000;
    color: #fff; 
}

.navbar {
    overflow: hidden;
    background-color: #333;
  }
  
  .navbar a {
    float: left;
    font-size: 16px;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  .dropdown .dropbtn {
    font-size: 16px;  
    border: none;
    outline: none;
    color: rgb(0, 0, 0);
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: rgb(255, 255, 255);
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

.header-right {
    display: flex;
    align-items: center;
}

.header-right ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-right ul li {
    margin-left: 10px;
}

.header-right a {
    color: #000; 
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header-lower {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
}

.header-lower .navlist {
    flex: 1; 
    justify-content: center; 
}

.header-lower-right {
    display: flex;
    align-items: center;
}

.search-bar {
    padding: 8px 30px 8px 40px; 
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 200px; 
    box-sizing: border-box; 
    background-color: #fff;
    background-image: url('https://img.icons8.com/color/search'); 
    background-size: 20px; 
    background-position: 10px center; 
    background-repeat: no-repeat; 
}

.header-lower-right a {
    margin-left: 10px;
}

.header-lower-right a img {
    width: 30px;
    height: 30px;
    margin-left: 10px;
}

.banner {
    width: 100%;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 250px;
}

.h3-web-container {
    overflow: hidden; 
    width: 100%;
    box-sizing: border-box;
}

.h3-web {
    display: inline-block; 
    white-space: nowrap; 
    animation: marquee 25s linear infinite;
    padding-left: 100%; 
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
#cart{
    padding: 40px 80px;
}
#cart table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    white-space: nowrap;
}
#cart table img{
    width: 70px;
}
#cart table td:nth-child(1){
    width: 100px;
    text-align: center;
}
#cart table td:nth-child(2){
    width: 150px;
    text-align: center;
}
#cart table td:nth-child(3){
    width: 250px;
    text-align: center;
}
#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6){
    width: 150px;
    text-align: center;
}
#cart table td:nth-child(5) input{
    width: 70px;
    padding: 10px 5px 10px 15px;
}
#cart table thead{
    border: 1px solid #e2e9e1;
    border-left: none;
    border-right: none;
} 
#cart table thead td{
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    padding: 18px 0;
}
#cart table tbody tr td{
    padding-top: 15px;
}
#cart table tbody td{
    font-size: 13px;
}
#cart-add{
    padding: 40px 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#coupon{
    width: 50%;
    margin-bottom: 30px;
}
#coupon h3,
#subtotal h3{
    padding-bottom: 15px;
}
#coupon input{
    padding: 10px 20px;
    outline: none;
    width: 60%;
    margin-right: 10px;
    border: 1px solid #e2e9e1;
}
#coupon button,
#subtotal button{
    background-color:#088178;
    color: #fff;
    padding: 11px 20px;
}
#subtotal{
    width: 50%;
    margin-bottom: 30px;
    border: 1px solid #e2e9e1;
    padding: 30px;
}
#subtotal table{
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}
#subtotal table td{
    width: 50%;
    border: 1px solid #e2e9e1;
    padding: 10px;
    font-size: 13px;
}
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    align-items: center;
}
.footer-contact {
    flex: 1;
    min-width: 200px;
    margin: 20px;
    text-align: left;
}
.footer-contact h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
}
.footer-contact h5 {
    margin: 5px 0;
    font-size: 1.1em;
}
.footer-links {
    flex: 1;
    min-width: 200px;
    margin: 20px;
    text-align: center;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links ul li {
    margin: 10px 0;
}
.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s;
}
.footer-links ul li a:hover {
    color: #ff6347;
}
.social-media {
    flex: 1;
    min-width: 200px;
    margin: 20px;
    text-align: right;
}
.social-media h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
}
.social-media a {
    margin: 0 10px;
    transition: transform 0.3s;
}
.social-media a img {
    width: 30px;
    height: 30px;
}
.social-media a:hover {
    transform: scale(1.2);
}

.background-container {
    background-image: url("https://img.freepik.com/free-vector/abstract-technological-background_23-2148897676.jpg?w=996&t=st=1718909301~exp=1718909901~hmac=9f40e1accca173535839252b1ace362f9acfbba461fef031b9a1d5b832175e30");
    background-size: cover; 
    background-repeat: no-repeat; 
    background-attachment: fixed; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.loading-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-screen .spinner {
    border: 12px solid #f3f3f3;
    border-top: 12px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}