html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: none;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
}

.nav-main {
    flex: 0 0 auto;
}

.hero {
    flex: 1 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--accent-color);
            color: white;
            padding: 5px 10px;
            font-size: 12px;
        }
        
.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    padding: 0;
    margin: 18px;
    list-style: none;
}

.nav-links li {
    margin: 1 8px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #a98372;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-links li a:hover {
    color: #a98372;
}

.nav-links li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-icons {
    display: flex;
    align-items: center;
}

.logo {
    margin-right: auto;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }
       
       :root {
            --primary-bg: #ffffff;
            --secondary-bg: #f5f5f5;
            --text-color: #111111;
            --accent-color: #ff3e3e;
            --secondary-text: #757575;
            --hover-color: #e5e5e5;
        }

        .dark-mode {
            --primary-bg: #111111;
            --secondary-bg: #1a1a1a;
            --text-color: #ffffff;
            --secondary-text: #b0b0b0;
            --hover-color: #2d2d2d;
        }

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background: var(--primary-bg);
            color: var(--text-color);
            line-height: 1.5;
        }

/* See More Button Styles */
.see-more {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.see-more .btn-primary {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

.see-more .btn-primary:hover {
    background-color: #555;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    margin-right: auto;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.nav-links {
    display: flex;
    justify-content: center; /* Center the list items horizontally */
    flex-grow: 1; /* Allow the nav-links to grow and take available space */
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-links li {
    margin: 0 5px; /* Space between list items */
}

.nav-links li a {
    text-decoration: none;
    color: #333; /* Original color */
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease; /* Smooth color transition */
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color:#a98372; /* Blue underline */
    transform-origin: bottom right;
    transition: transform 0.3s ease-out; /* Smooth underline transition */
}

.nav-links li a:hover {
    color: #a98372; /* Change text color on hover */
}

.nav-links li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-icons {
    display: flex;
    align-items: center;
}

/* Product Page Styles */
.product-details {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.product-images {
    flex: 1;
    margin-right: 20px;
}

.product-images img.main-img {
    width: 100%;
    height: auto;
}

.thumb-imgs {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.thumb-imgs img {
    width: 32%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumb-imgs img:hover {
    transform: scale(1.1);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 20px;
}

.product-options {
    margin-bottom: 20px;
}

.product-options label {
    display: block;
    margin-bottom: 5px;
}

.product-options select {
    padding: 5px;
    width: 100px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.footer {
    background-color: #f8f8f8;
    padding: 20px 0;
    text-align: center;
    margin-top: 20px;
}


/* Product Page Styles */
.product-details {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.product-images {
    flex: 1;
    margin-right: 20px;
}

.product-images img.main-img {
    width: 100%;
    height: auto;
}

.thumb-imgs {
    display: flex;
    overflow-x: auto; /* Enable horizontal scrolling */
    margin-top: 10px;
    padding-bottom: 10px;
}

.thumb-imgs img {
    flex: 0 0 auto;
    width: 100px;
    height: auto;
    cursor: pointer;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.thumb-imgs img:hover {
    transform: scale(1.1);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.product-price {
    font-size: 16px;
    color: #007bff;
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 20px;
}

.product-options {
    margin-bottom: 20px;
}

.product-options label {
    display: block;
    margin-bottom: 5px;
}

.product-options select {
    padding: 5px;
    width: 100px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}





        /* Utility Classes */
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--text-color);
            color: var(--primary-bg);
            text-decoration: none;
        }

        .btn-primary:hover {
            background: var(--secondary-text);
        }

        /* Navigation */
        .top-bar {
            background: var(--secondary-bg);
            padding: 0.5rem 0;
            font-size: 0.8rem;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-main {
            background: var(--primary-bg);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            gap: 1.6rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
        }

        .nav-icons {
            display: flex;
            gap: 1.5rem;
        }

        /* Hero Section */
        .hero {
            height: 90vh;
            position: relative;
            overflow: hidden;
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-title {
            font-size: 7.2em;
            margin-bottom: 1rem;
            font-weight: 800;
            line-height: 1em;
            letter-spacing: -0.02em;
            text-transform: capitalize;
            color: var(--light-color);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .site-banner{
            text-align: center;
        }
        .site-banner h1.hero{
            font-size: 7.2em;
            font-weight: 800;
            line-height: 1em;
            letter-spacing: -0.02em;
            text-transform: capitalize;
            color: var(--light-color);
        }
        /* Featured Section */
        .featured {
            padding: 4rem 0;
        }

        .featured-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .featured-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
        }

        .featured-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .featured-content {
            position: absolute;
            bottom: 2rem;
            left: 2rem;
            color: white;
        }

        /* Innovation Section */
        .innovation {
            background: var(--secondary-bg);
            padding: 1rem 0;
        }

        .innovation-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        .innovation-text {
            padding: 2rem;
        }

        .innovation-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .innovation-img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            border-radius: 10px;
        }

        /* Trending Section */
        .trending {
            padding: 4rem 0;
            gap: 2rem
        }

        .trending-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: var(--primary-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .product-img {
            width: 100%;
            height: 300px;
            object-fit: contain;
        }

        .product-info {
            padding: 1.5rem;
        }
        
        
        /* Membership Section */
        .membership {
            background: var(--text-color);
            color: var(--primary-bg);
            padding: 4rem 0;
            text-align: center;
        }

        .membership-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .membership-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .membership-card {
            padding: 2rem;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
        }

        .categories {
            padding: 4rem 2rem;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .category-card {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .category-card img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .category-card:hover img {
            transform: scale(1.1);
        }

        .category-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
            text-align: center;
        }
        
        a.btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #333;
            color: #fff;
            text-align: center;
            text-decoration: none;
            border: none;
            cursor: pointer;
}

        a.btn:hover {
            background-color: #555;
}

        .btn-outline {
            border: 2px solid white;
            padding: 0.5rem 1.5rem;
            color: white;
            text-decoration: none;
            display: inline-block;
            margin-top: 1rem;
            transition: var(--transition);
        }

        .btn-outline:hover {
            background: white;
            color: black;
        }
        
        .join-now-btn {
            margin-top: 20px; /* Adjust the value as needed for more or less space */
            display: inline-block;
        }



        .featured-products {
            padding: 4rem 2rem;
            background: var(--primary-light);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
        }

        .product-slider {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-image {
            position: relative;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: var(--transition);
        }

        .product-card:hover .product-overlay {
            opacity: 1;
        }

        
        .quick-view {
            background: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            cursor: pointer;
            transform: translateY(20px);
            transition: var(--transition);
        }

        .product-card:hover .quick-view {
            transform: translateY(0);
        }


        .product-info {
            padding: 45px;
            text-align: center;
        }
        .product-price {
            font-weight: bold;
            color: #887272;
        }
        
        .product-link {
            text-decoration: none;
            color: inherit;
}

        .product-card {
            display: block;
            cursor: pointer;
}


        .price {
            color: var(--accent);
            font-weight: bold;
            margin: 0.5rem 0;
        }

        .product-actions {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .add-to-cart {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            cursor: pointer;
            transition: var(--transition);
        }

        .add-to-wishlist {
            background: none;
            border: 1px solid var(--accent);
            color: var(--accent);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter {
            background: url('https://picsum.photos/3000/2000?random=6') center/cover;
            padding: 6rem 2rem;
            position: relative;
            color: white;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
        }

        .newsletter-content {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 25px;
        }
        
        /* General Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.nav-main {
    background-color: #f8f8f8;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Main navigation links (desktop) */
.main-nav-links {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 1.6rem;
}

.main-nav-links li {
    margin: 0 10px;
}

.main-nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav-links li a:hover {
    color: #a98372;
}

.page-links {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.page-links li {
    margin: 5px 10px; /* Adjust margin for mobile */
}

.page-links li a {
    text-decoration: none;
    color: #555;
    font-weight: normal;
    position: relative;
    transition: color 0.3s ease;
}

.page-links li a:hover {
    color: #ff5733;
}

.nav-icons {
    display: flex;
    align-items: center;
}

/* Product Page Styles */
.featured-products {
    margin-top: 20px;
}

.catalog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.catalog-grid .product-link {
    flex: 1 1 calc(50% - 20px); /* Two columns */
}


        /* Footer */
        .footer {
            background: var(--secondary-bg);
            padding: 4rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .footer-links h4 {
            margin-bottom: 1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links a {
            color: var(--secondary-text);
            text-decoration: none;
            line-height: 2;
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--secondary-text);
            text-align: center;
            color: var(--secondary-text);
        }
.featured-products {
    margin-top: 20px;
}

.catalog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.catalog-grid .product-link {
    flex: 1 1 calc(50% - 20px);
}


.catalog-item {
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
}

.catalog-img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.btn-primary {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}



/* Product Page Styles */
.featured-products {
    margin-top: 20px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 20px;
}

/* Animation Styles */
.catalog-grid {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.catalog-grid.fade-out {
    opacity: 0;
}

.catalog-grid.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}




/* Animation Styles */
.catalog-grid {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.catalog-grid.fade-out {
    opacity: 0;
}

.catalog-grid.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .featured-grid {
                grid-template-columns: 1fr;
            }
            html, body {
                height: 100%;
                width: 100%;
                margin: 0;
                padding: 0;
                overflow-x: none;
                font-family: Arial, sans-serif;
                box-sizing: border-box;
            }
            .innovation-content {
                grid-template-columns: 1fr;
            }

            .membership-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
.nav-links.show {
    display: flex;
}

        @media (max-width: 768px) {
            
            html, body {
                height: 100%;
                width: 100%;
                margin: 0;
                padding: 0;
                overflow-x: none;
                font-family: Arial, sans-serif;
                box-sizing: border-box;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }

            .logo {
                order: 1;
                margin: 20px 0;
                text-align: center;
            }

            .main-nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                right: 0;
                background: #fff;
                width: 200px;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1);
                z-index: 100;
                gap: 0;
            }
            .main-nav-links.show {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            
            .nav-container { 
                flex-direction: column; 
            }
            
            .container {
                padding: 10px;
            }

            .featured-img {
                height: 300px;
            }

            .innovation-img {
                height: 400px;
            }
        }

        /* Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .fade-up.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Menu Button */
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
        }
    
    
.mobile-menu {
    display: none;
}

.thumb-imgs {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.thumb-imgs img {
    width: 23%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumb-imgs img:hover {
    transform: scale(1.1);
}

.product-description {
    margin-bottom: 20px;
}

.product-options {
    margin-bottom: 20px;
}

.product-options label {
    display: block;
    margin-bottom: 5px;
}

.product-options select {
    padding: 5px;
    width: 100px;
}



/* Hero Section Styles */

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(70%);
}


/* Responsive Styles */
@media (max-width: 768px) {


    .main-nav-links li {
        margin: 10px 0;
    }
    .nav-icons{
        display: none; 
    }
    .mobile-menu {
        display: block;
    }

    .product-details {
        flex-direction: column;
    }

    .product-images, .product-info {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.category-nav {
            padding: 15px 0;
            background: var(--secondary-color);
        }

        .category-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .category-list {
            display: flex;
            gap: 30px;
            list-style: none;
            overflow-x: auto;
            padding-bottom: 5px;
        }

        .category-list::-webkit-scrollbar {
            height: 3px;
        }

        .category-list::-webkit-scrollbar-thumb {
            background: var(--accent-color);
        }

        .category-list a {
            text-decoration: none;
            color: var(--text-color);
            white-space: nowrap;
            font-weight: 500;
        }
        
       /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .featured-grid {
                grid-template-columns: 1fr;
            }
            html, body {
                height: 100%;
                width: 100%;
                margin: 0;
                padding: 0;
                overflow-x: none;
                font-family: Arial, sans-serif;
                box-sizing: border-box;
            }
            .innovation-content {
                grid-template-columns: 1fr;
            }

            .membership-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
.nav-links.show {
    display: flex;
}

        @media (max-width: 768px) {
            
            html, body {
                height: 100%;
                width: 100%;
                margin: 0;
                padding: 0;
                overflow-x: none;
                font-family: Arial, sans-serif;
                box-sizing: border-box;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }

            .logo {
                order: 1;
                margin: 20px 0;
                text-align: center;
            }

            .main-nav-links {
                display: none;
            }
            
            .nav-container { 
                flex-direction: column; 
            }
            
            .container {
                padding: 10px;
            }

            .featured-img {
                height: 300px;
            }

            .innovation-img {
                height: 400px;
            }
        }

        /* Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .fade-up.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Menu Button */
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
        }
    
    
.mobile-menu {
    display: none;
}

.thumb-imgs {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.thumb-imgs img {
    width: 23%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumb-imgs img:hover {
    transform: scale(1.1);
}

.product-description {
    margin-bottom: 20px;
}

.product-options {
    margin-bottom: 20px;
}

.product-options label {
    display: block;
    margin-bottom: 5px;
}

.product-options select {
    padding: 5px;
    width: 100px;
}



/* Hero Section Styles */

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(70%);
}


/* Responsive Styles */
@media (max-width: 768px) {


    .main-nav-links li {
        margin: 10px 0;
    }
    .nav-icons{
        display: none; 
    }
    .mobile-menu {
        display: block;
    }

    .product-details {
        flex-direction: column;
    }

    .product-images, .product-info {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.category-nav {
            padding: 15px 0;
            background: var(--secondary-color);
        }

        .category-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .category-list {
            display: flex;
            gap: 30px;
            list-style: none;
            overflow-x: auto;
            padding-bottom: 5px;
        }

        .category-list::-webkit-scrollbar {
            height: 3px;
        }

        .category-list::-webkit-scrollbar-thumb {
            background: var(--accent-color);
        }

        .category-list a {
            text-decoration: none;
            color: var(--text-color);
            white-space: nowrap;
            font-weight: 500;
        }
        
/* Hamburger styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
}
.hamburger span {
  display: block;
  height: 4px;
  background: #222;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

