@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'League Spartan', sans-serif;
}

/* --- Header Section --- */
/* Header */
#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #E3E6F3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 999;
    flex-wrap: wrap;
}

#header .logo {
    width: 120px;
}

/* Navigation */
#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: #088178;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: #088178;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

/* Search Box */
.search-box {
    display: flex;
    margin: 0 30px;
    flex: 1;
    max-width: 500px;
}

.search-box input {
    padding: 10px 15px;
    border: 1px solid #e2e9e1;
    border-radius: 4px 0 0 4px;
    width: 100%;
    outline: none;
}

.search-box button {
    background: #088178;
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: 0.3s ease;
}

.search-box button:hover {
    background: #066b63;
}

/* Cart Icon */
#cart-icon {
    position: relative;
}

#cart-count, #mobile-cart-count {
    background: #088178;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    position: absolute;
    top: -8px;
    right: -8px;
}

/* Mobile Menu */
#mobile {
    display: none;
    align-items: center;
}

#mobile a {
    color: #1a1a1a;
    text-decoration: none;
    margin-right: 20px;
}

#mobile-cart-count {
    position: relative;
    top: -2px;
    right: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .search-box {
        margin: 10px 0;
        order: 3;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 799px) {
    #header {
        padding: 20px 40px;
    }
    
    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 80px;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: #E3E6F3;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 40px 0 0 10px;
        transition: 0.3s;
        z-index: 1000;
    }
    
    #navbar.active {
        right: 0;
    }
    
    #navbar li {
        margin-bottom: 25px;
    }
    
    #mobile {
        display: flex;
        align-items: center;
    }
    
    #mobile i {
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 20px;
    }
    
    #lg-bag {
        display: none;
    }
    
    .search-box {
        order: 0;
        margin: 10px 0;
    }
}

@media (max-width: 477px) {
    #header {
        padding: 10px 20px;
    }
    
    #navbar {
        width: 100%;
        right: -100%;
    }
    
    #navbar.active {
        right: 0;
    }
    
    #mobile {
        margin-left: auto;
    }
}
#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 80px; /* Reduced vertical padding to allow the logo to grow */
    background-color:  rgb(207, 236, 235);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
}

#header img {
    height: 45px; 
    width: auto;
    position: top 25% ;
}

#navbar {
    display: flex;
    align-items: center;
    list-style: none;
}

#navbar li {
    padding: 0 20px;
    position: relative;
    display: flex;
    align-items: center;
}

#navbar li i {
    font-size: 14px;
    margin-right: 10px; /* Space between icon and text */
    color: #1a1a1a;
}

#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: #088178;
}

/* Modern Underline Animation */
#navbar li a::after {
    content: "";
    width: 0;
    height: 2px;
    background: #088178;
    position: absolute;
    bottom: -4px;
    left: 20px;
    transition: 0.3s ease;
}

#navbar li a:hover::after,
#navbar li a.active::after {
    width: 40%;
}

/* --- Hero Section --- */
#hero {
    background-image: url("images/hero.png");
    height: 90vh;
    width: 100%;
    background-size: cover;
    /* Use 'center' to bring the faces back, or '70%' to nudge it slightly right */
    background-position: center 0%; 
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e3e6f3;
}

#hero h4 {
    padding-bottom: 15px;
    color: #222;
    font-size: 20px;
    letter-spacing: 1px;
}

#hero h2 {
    font-size: 48px;
    color: #222;
    font-weight: 700;
}

#hero h1 {
    color: #088178;
    font-size: 72px;
    line-height: 1;
    margin: 10px 0;
    /* Adding subtle shadow for readability against image */
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

#hero p {
    font-size: 18px;
    color: #465b52;
    margin: 15px 0 30px 0;
}

#hero button {
    background-color: #088178;
    border: none;
    padding: 15px 50px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.4s ease;
}

#hero button a {
    text-decoration: none;
    color: #fff;
}

#hero button:hover {
    background-color: #1a1a1a; /* Changes color to black on hover */
    transform: translateY(-5px); /* Lift effect */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1200px) {
    #product1 .products-container {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 799px) {
    #header {
        padding: 15px 30px;
    }
    #hero {
        padding: 0 30px;
        background-position: center right 25%;
    }
    #hero h1 { font-size: 50px; }
    #hero h2 { font-size: 35px; }
    #navbar { display: none; }
    
    /* Featured Products */
#product1 {
    text-align: center;
    padding: 40px 20px;
}

#product1 .pro-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

#product1 .pro {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

#product1 .pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#product1 .pro img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

#product1 .pro .des {
    text-align: left;
    padding: 0 10px;
}

#product1 .pro .des h5 {
    font-size: 16px;
    margin: 10px 0;
    color: #333;
}

#product1 .pro .des .star {
    color: #ffc107;
    margin: 5px 0;
}

#product1 .pro .des h4 {
    font-size: 18px;
    font-weight: 700;
    color: #088178;
    margin: 10px 0;
}

#product1 .pro .cart {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #e8f6ea;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #088178;
    transition: 0.3s;
}

#product1 .pro .cart:hover {
    background: #088178;
    color: #fff;
}

.stock {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 500;
}

.stock.in {
    color: #28a745;
}

.stock.out {
    color: #dc3545;
}

.loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
    color: #666;
}
    
    #product1 .products-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    #product1 .pro {
        padding: 12px;
    }
    
    #product1 .pro img {
        height: 180px;
    }
    
    #product1 .cart {
        opacity: 1 !important;
        transform: none !important;
    }
}
/* Notification */
/* Cart Notification */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: 4px;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* Cart Link in Header */
.cart-link {
    position: relative;
    color: #333;
    text-decoration: none;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
@media (max-width: 480px) {
    #product1 .products-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    #product1 .pro {
        padding: 10px;
    }
    
    #product1 .pro img {
        height: 150px;
    }
    
    #product1 .pro .des h5 {
        font-size: 13px;
    }
    
    #product1 .pro .des h4 {
        font-size: 14px;
    }
}


#hero button {
    /* Background & Reset */
    background-image: url("images/button.png");
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%; /* Ensures the drawing stretches to fit padding */
    border: 0;
    cursor: pointer;
    
    /* Typography */
    color: #088178;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;

    /* Spacing - Adjusted for hand-drawn alignment */
    padding: 14px 80px 14px 65px;
    display: inline-block;
    transition: all 0.3s ease;

    /* Hand-Drawn Shading Effect */
    /* This creates an "imperfect" shadow that looks like a pencil scribble or thick marker */
    box-shadow: 5px 5px 0px rgba(8, 129, 120, 0.2); 
    
    /* Rough Border Radius for a non-perfect shape */
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;

}

#hero button:hover {
    /* Animation for the "Sketch" look */
    transform: rotate(-1deg) scale(1.05); /* Slight tilt makes it look organic */
    filter: brightness(1.1);
    box-shadow: 8px 8px 0px rgba(8, 129, 120, 0.3);
}

#hero button a {
    text-decoration: none;
    color: inherit; /* Takes the #088178 from the parent button */
    display: block;
}

#feature{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

}

#feature .fe-box{
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.3);
    border: 1px solid#cce7d0;
    border-radius: 10px;
    margin: 15px 0;
}
#feature .fe-box:hover{
    box-shadow: 10px 10px 54px rgba(0, 0, 0, 0.3);

}
#feature .fe-box h6{
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #088178;
    background-color: #fddde4;

}

#feature .fe-box img{
    width: 100%;
    margin-bottom:10px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
}

#feature .fe-box:nth-child(2) h6{
    background-color: #cdebbc;  
}

#feature .fe-box:nth-child(3) h6{
    background-color: #cdebbc;  
}
#feature .fe-box:nth-child(4) h6{
    background-color: #cdebbc;  
}
#feature .fe-box:nth-child(5) h6{
    background-color: #cdebbc;  
}
#feature .fe-box:nth-child(6) h6{
    background-color: #cdebbc;  
}

/* --- Section Styling --- */
#product1 {
    text-align: center;
    padding: 80px 40px; /* Added horizontal padding */
    max-width: 1800px; /* Optional: limit max width for very large screens */
    margin: 0 auto; /* Center the container */
}

/* --- Container for Products --- */
#product1 .products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    padding: 20px 0;
    justify-content: center;
}

/* --- Individual Product Card --- */
#product1 .pro {
    width: 100%;
    padding: 15px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#product1 .pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#product1 .pro img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

#product1 .pro .des {
    text-align: start;
    padding: 10px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#product1 .pro .des span {
    color: #606063;
    font-size: 12px;
}

#product1 .pro .des h5 {
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 14px;
}

#product1 .pro .des i {
    font-size: 12px;
    color: rgb(243, 181, 25);
}

#product1 .pro .des h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #088178;
}

/* --- Shopping Cart Icon --- */
#product1 .pro .cart {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e8f6ea;
    font-weight: 500;
    color: #088178;
    border: 1px solid #cce7d0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 85px;
    right: 15px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

#product1 .pro:hover .cart {
    opacity: 1;
    transform: translateY(0);
}

#product1 .pro .cart:hover {
    background-color: #088178;
    color: #fff;
}

/* New Arrivals Section */
#new-arrivals {
    text-align: center;
    padding: 40px 40px 80px;
    max-width: 1800px;
    margin: 0 auto;
    background-color: #f9f9f9;
}

#new-arrivals h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

#new-arrivals p {
    color: #606063;
    font-size: 16px;
    margin-bottom: 30px;
}

#new-arrivals .products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    padding: 20px 0;
    justify-content: center;
}

#new-arrivals .pro {
    width: 100%;
    padding: 15px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#new-arrivals .pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#new-arrivals .pro img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

#new-arrivals .pro .des {
    text-align: start;
    padding: 10px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#new-arrivals .pro .des span {
    color: #606063;
    font-size: 12px;
}

#new-arrivals .pro .des h5 {
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 14px;
}

#new-arrivals .pro .des i {
    font-size: 12px;
    color: rgb(243, 181, 25);
}

#new-arrivals .pro .des h4 {
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #088178;
}

#new-arrivals .pro .cart {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e8f6ea;
    font-weight: 500;
    color: #088178;
    border: 1px solid #cce7d0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 85px;
    right: 15px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

#new-arrivals .pro:hover .cart {
    opacity: 1;
    transform: translateY(0);
}

#new-arrivals .pro .cart:hover {
    background-color: #088178;
    color: #fff;
}

/* Responsive styles for New Arrivals */
@media (max-width: 1200px) {
    #new-arrivals .products-container {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 799px) {
    #new-arrivals {
        padding: 30px 20px 60px;
    }
    
    #new-arrivals .products-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    #new-arrivals .pro {
        padding: 12px;
    }
    
    #new-arrivals .pro img {
        height: 180px;
    }
    
    #new-arrivals .cart {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 480px) {
    #new-arrivals .products-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    #new-arrivals .pro {
        padding: 10px;
    }
    
    #new-arrivals .pro img {
        height: 150px;
    }
    
    #new-arrivals .pro .des h5 {
        font-size: 13px;
    }
    
    #new-arrivals .pro .des h4 {
        font-size: 14px;
    }
}
/* Banner Section */
#banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Changed from flex-start to center */
    text-align: center; /* Ensure text is centered */
    background-image: url("images/banner/b2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 40vh;
    padding: 0 20px; /* Reduced padding for better mobile */
    margin: 40px 0;
    position: relative;
    color: #fff;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.3);
}

#banner h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0 25px; /* Adjusted margins */
    position: relative;
    z-index: 2;
    line-height: 1.2;
    max-width: 800px; /* Increased max-width for better text flow */
    padding: 0 20px; /* Added padding for better edge spacing */
}

/* Remove the align-items: center from mobile media query since it's now centered by default */
@media (max-width: 480px) {
    #banner {
        height: 30vh;
        padding: 0 15px;
    }
    
    #banner h2 {
        font-size: 24px;
        padding: 0 10px;
    }
    
    #banner h4 {
        font-size: 16px;
    }
}

#banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#banner h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    color: #fff;
}

#banner h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    line-height: 1.2;
    max-width: 600px;
}

#banner h2 span {
    color: #ffd700;
}

#banner button {
    background-color: #088178;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#banner button:hover {
    background-color: #0a9a8f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 799px) {
    #banner {
        height: 35vh;
        padding: 0 40px;
    }
    
    #banner h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    #banner {
        height: 30vh;
        padding: 0 20px;
        text-align: center;
        align-items: center;
    }
    
    #banner h2 {
        font-size: 24px;
    }
    
    #banner h4 {
        font-size: 16px;
    }
    
    #banner button {
        padding: 10px 20px;
        font-size: 14px;
    }
}
/* Banner Section Styles */
.banner1, .banner2, .banner3, .banner4, .banner5 {
    width: 100%;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.banner-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px;
    color: #fff;
    text-align: left;
    z-index: 1;
}

/* Dark overlay for better text readability */
.banner-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

/* Individual banner backgrounds */
.bannerbox1 {
    background-image: url('images/banner/b17.jpg');
}

.bannerbox2 {
    background-image: url('images/banner/b10.jpg');
}

.bannerbox3 {
    background-image: url('images/banner/b7.jpg');
}

.bannerbox4 {
    background-image: url('images/banner/b4.jpg');
}

.bannerbox5 {
    background-image: url('images/banner/b18.jpg');
}

/* Banner Typography */
.banner-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-box h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    max-width: 500px;
}

.banner-box span {
    font-size: 16px;
    margin-bottom: 20px;
    display: block;
}

/* White Button Style */
.banner-box .white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-box .white:hover {
    background: #fff;
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-box {
        min-height: 40vh;
        text-align: center;
        align-items: center;
        padding: 20px;
    }
    
    .banner-box h2 {
        font-size: 32px;
    }
    
    .banner-box h4 {
        font-size: 18px;
    }
    
    .banner-box span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .banner-box {
        min-height: 30vh;
    }
    
    .banner-box h2 {
        font-size: 24px;
    }
    
    .banner-box h4 {
        font-size: 16px;
    }
    
    .banner-box .white {
        padding: 10px 20px;
        font-size: 12px;
    }
}
/* ===============================
   BANNER GRID — 3 / 2 LAYOUT
================================ */

/* GRID */
.banner-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 40px;
}

/* TOP BANNERS (2) */
.banner-large {
    grid-column: span 3;
    height: 300px;
}

/* BOTTOM BANNERS (3) */
.banner-small {
    grid-column: span 2;
    height: 180px; /* squished like screenshot */
}

/* BASE */
.banner {
    border-radius: 6px;
    overflow: hidden;
}

.banner-box {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.banner-box * {
    position: relative;
    z-index: 1;
}

/* TEXT */
.banner-large h2 { font-size: 28px; }
.banner-small h2 { font-size: 18px; }

.banner-small span {
    font-size: 13px;
    margin-top: 6px;
}

/* BUTTON */
.btn {
    width: fit-content;
    margin-top: 12px;
    padding: 8px 18px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

/* BACKGROUNDS */
.banner-1 { background-image: url("images/banner/b17.jpg"); }
.banner-2 { background-image: url("images/banner/b10.jpg"); }
.banner-3 { background-image: url("images/banner/b7.jpg"); }
.banner-4 { background-image: url("images/banner/b4.jpg"); }
.banner-5 { background-image: url("images/banner/b18.jpg"); }

/* MOBILE */
@media (max-width: 768px) {
    .banner-grid {
        grid-template-columns: 1fr;
    }

    .banner-large,
    .banner-small {
        grid-column: span 1;
        height: auto;
        min-height: 220px;
    }
}
/* Newsletter Section */
#newsletter {
    background-color: #00525b;
    padding: 60px 0;
    margin: 60px 0;
}

.newsletter-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.newsletter-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.newsletter-text p {
    color: white;
    font-size: 15px;
    margin: 0;
}

.newsletter-text p span {
    color: #fff;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    padding: 14px 20px;
    width: 300px;
    border: 1px solid #e3e6f3;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'League Spartan', sans-serif;
}

.newsletter-form input[type="email"]:focus {
    border-color: #088178;
    box-shadow: 0 0 0 2px rgba(8, 129, 120, 0.2);
}

.newsletter-form .normal {
    background-color: #088178;
    color:#fff;
    border: none;
    padding: 0 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    height: 48px;
    white-space: nowrap;
}

.newsletter-form .normal:hover {
    background-color: #0a9a8f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 850px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-form input[type="email"] {
        width: 100%;
        max-width: 400px;
    }
    
    .newsletter-form .normal {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    #newsletter {
        padding: 40px 0;
        margin: 40px 0;
    }
    
    .newsletter-text h2 {
        font-size: 20px;
    }
    
    .newsletter-text p {
        font-size: 14px;
    }
    
    .newsletter-form input[type="email"],
    .newsletter-form .normal {
        width: 100%;
        max-width: none;
    }
}

    footer {
        background-color: #f5f5f5;
        padding: 40px 20px;
    }
    footer .col {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    footer .logo {
        margin-bottom: 20px;
        width: 120px;
        height: auto;
    }
    footer h4 {
        font-size: 16px;
        margin-bottom: 15px;
        color: #222;
    }
    footer p {
        font-size: 14px;
        margin: 0 0 8px 0;
        color: #666;
    }
    footer a {
        font-size: 14px;
        text-decoration: none;
        color: #666;
        margin-bottom: 8px;
        transition: 0.3s;
    }
    footer a:hover {
        color: #088178;
    }
    .follow i {
        color: #465b52;
        padding-right: 15px;
        cursor: pointer;
        transition: 0.3s;
    }
    .follow i:hover {
        color: #088178;
    }
    .install .row {
        display: flex;
        gap: 10px;
        margin: 10px 0;
    }
    .install .row img {
        border: 1px solid #088178;
        border-radius: 6px;
        max-width: 150px;
    }
    .payment-methods {
        margin-top: 10px;
    }
    .payment-methods img {
        max-width: 200px;
        height: auto;
    }
    .copyright {
        width: 100%;
        text-align: center;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e1e1e1;
        font-size: 14px;
        color: #666;
    }
    /* Responsive Design */
    @media (min-width: 768px) {
        footer {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            padding: 60px 40px;
        }
        .copyright {
            grid-column: 1 / -1;
        }
    }
    @media (max-width: 767px) {
        footer .col {
            align-items: center;
            text-align: center;
        }
        .install .row {
            justify-content: center;
        }
        .follow {
            text-align: center;
            width: 100%;
        }
    }
/* Loading Spinner */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #088178;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Add to cart animation */
@keyframes addToCart {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.added-to-cart {
    animation: addToCart 0.5s ease;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    cursor: pointer;
    padding: 10px;
}

@media (max-width: 799px) {
    .mobile-menu {
        display: block;
    }
    
    #navbar {
        position: fixed;
        top: 70px;
        left: -300px;
        width: 300px;
        height: 100vh;
        background: #fff;
        box-shadow: 0 40px 60px rgba(0,0,0,0.1);
        padding: 40px 0 0 10px;
        transition: 0.3s;
        z-index: 1000;
    }
    
    #navbar.active {
        left: 0;
    }
    
    #navbar li {
        margin-bottom: 25px;
    }
}
/* Cart Page */
#cart-add {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 40px 80px;
}

#coupon {
    width: 50%;
    margin-bottom: 30px;
}

#coupon h3,
#subtotal h3 {
    padding-bottom: 15px;
}

#coupon input {
    padding: 10px 20px;
    width: 60%;
    margin-right: 10px;
    border: 1px solid #e2e9e1;
    outline: none;
}

#subtotal {
    width: 40%;
    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;
}

/* Responsive Design */
@media (max-width: 799px) {
    #cart-add {
        flex-direction: column;
        margin: 20px;
    }
    
    #coupon {
        width: 100%;
    }
    
    #subtotal {
        width: 100%;
        padding: 20px;
    }
    
    #coupon input {
        width: 60%;
    }
}

@media (max-width: 477px) {
    #coupon input {
        width: 100%;
        margin-bottom: 10px;
    }
}