   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary-color: #2e7d32;
            --secondary-color: #ff8f00;
            --text-color: #333333;
            --light-bg: #f9f9f9;
            --header-height: 70px;
            --header-mobile-height: 60px;
            --footer-bg: #121212;
            --footer-secondary: #0a0a0a;
            --footer-text: #e0e0e0;
            --footer-link: #a0a0a0;
            --border-color: rgba(255, 255, 255, 0.07);

        }

        body {
            background-color: var(--light-bg);
            color: var(--text-color);
        }

        /* Header Container */
        .header {
            width: 100%;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        /* Top Bar with promo message */
        .top-bar {
            background-color: var(--primary-color);
            color: white;
            text-align: center;
            padding: 8px;
            font-size: 14px;
        }

        /* Main Header */
        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            height: var(--header-height);
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Logo */
        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 40px;
            margin-right: 10px;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .logo-text span {
            color: var(--secondary-color);
        }

        /* Navigation */
        .nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-links {
            display: flex;
            gap: 25px;
            list-style: none;
        }

        .nav-link {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary-color);
        }

        .nav-link.active {
            color: var(--primary-color);
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 3px;
        }

        /* Header Icons */
        .header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .icon-btn {
            background: none;
            border: none;
            cursor: pointer;
            position: relative;
            padding: 5px;
            color: var(--text-color);
            transition: color 0.3s;
        }

        .icon-btn:hover {
            color: var(--primary-color);
        }

        .icon-btn svg {
            width: 24px;
            height: 24px;
        }

        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: var(--secondary-color);
            color: white;
            font-size: 12px;
            font-weight: bold;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-color);
            z-index: 1001;
            padding: 5px;
        }
        
        .mobile-menu-btn svg {
            width: 24px;
            height: 24px;
            display: block;
        }

        /* Search Bar */
        .search-container {
            position: relative;
            width: 300px;
        }

        .search-input {
            width: 100%;
            padding: 10px 15px;
            padding-right: 40px;
            border: 1px solid #ddd;
            border-radius: 30px;
            font-size: 14px;
            transition: all 0.3s;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
        }

        .search-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #777;
        }

        .search-btn:hover {
            color: var(--primary-color);
        }

        /* Mobile Navigation (Hidden by default) */
        .mobile-nav {
            display: none;
            position: fixed;
            top: var(--header-mobile-height);
            left: 0;
            width: 100%;
            height: calc(100vh - var(--header-mobile-height));
            background-color: white;
            z-index: 999;
            padding: 20px;
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
        }

        .mobile-nav.active {
            transform: translateX(0);
        }

        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .mobile-nav-link {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 18px;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: block;
        }

        .mobile-nav-link.active {
            color: var(--primary-color);
        }

        /* Media Queries for Responsiveness */
        @media (max-width: 992px) {
            .search-container {
                width: 200px;
            }
            
            .nav-links {
                gap: 15px;
            }
        }

        @media (max-width: 768px) {
            .main-header {
                height: var(--header-mobile-height);
            }
            
            .search-container, .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block !important;
                position: relative;
                z-index: 1001;
            }
            
            .mobile-nav {
                display: block;
            }
            
            .header-icons {
                gap: 10px;
                display: flex;
                align-items: center;
            }
            
            .logo-text {
                font-size: 20px;
            }
            
            .mobile-search {
                display: block;
                margin: 20px 0;
            }
        }

        @media (max-width: 480px) {
            .top-bar {
                font-size: 12px;
                padding: 5px;
            }
            
            .main-header {
                padding: 0 15px;
            }
            
            .logo img {
                height: 30px;
            }
            
            .logo-text {
                font-size: 18px;
            }
        }

         .carousel-container {
            width: 100%;
            background-color: white;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .carousel {
            position: relative;
            height: 500px;
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .carousel-slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }

        .slide-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .slide-content {
            z-index: 2;
            max-width: 60%;
        }

        .slide-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .slide-description {
            font-size: 18px;
            margin-bottom: 20px;
            opacity: 0.8;
        }

        .slide-button {
            display: inline-block;
            padding: 12px 24px;
            background-color: #333;
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .slide-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .slide-image {
            position: absolute;
            right: -50px;
            bottom: -50px;
            width: 60%;
            height: 100%;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: bottom right;
            opacity: 0.15;
            transform: rotate(5deg) scale(1.2);
        }

        /* Slide background colors */
        .slide-1 {
            background-color: #e8f5e9;
            color: #2e7d32;
        }
        .slide-1 .slide-button {
            background-color: #2e7d32;
        }

        .slide-2 {
            background-color: #fff8e1;
            color: #ff8f00;
        }
        .slide-2 .slide-button {
            background-color: #ff8f00;
        }

        .slide-3 {
            background-color: #e0f2f1;
            color: #00796b;
        }
        .slide-3 .slide-button {
            background-color: #00796b;
        }

        .slide-4 {
            background-color: #fff3e0;
            color: #e65100;
        }
        .slide-4 .slide-button {
            background-color: #e65100;
        }

        .slide-5 {
            background-color: #e3f2fd;
            color: #1565c0;
        }
        .slide-5 .slide-button {
            background-color: #1565c0;
        }

        /* Navigation buttons */
        .carousel-nav {
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            z-index: 3;
        }

        .nav-button {
            background-color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .nav-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }

        /* Indicators */
        .carousel-indicators {
            display: flex;
            justify-content: center;
            padding: 15px 0;
            gap: 10px;
        }

        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #dddddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            width: 30px;
            border-radius: 10px;
            background-color: #333;
        }

        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .slide-content {
                max-width: 70%;
            }
        }
        
        @media (max-width: 768px) {
            .carousel {
                height: 450px;
            }
            
            .slide-content {
                max-width: 100%;
            }
            
            .slide-image {
                opacity: 0.1;
            }
        }
        
        @media (max-width: 480px) {
            .carousel {
                height: 400px;
            }
            
            .slide-title {
                font-size: 24px;
            }
        }

         /* Categories Section Container */
        .categories-section {
            padding: 40px 0;
            background-color: white;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section Header */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-color);
            position: relative;
            padding-left: 15px;
        }

        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 5px;
            background-color: var(--secondary-color);
            border-radius: 10px;
        }

        .view-all {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .view-all:hover {
            color: var(--secondary-color);
        }

        .view-all svg {
            margin-left: 5px;
            width: 18px;
            height: 18px;
        }

        /* Categories Scroll Container */
        .categories-scroll-container {
            position: relative;
        }

        .categories-scroll {
            display: flex;
            gap: 15px;
            padding: 10px 5px 20px;
            overflow-x: auto;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none; /* Firefox */
        }

        /* Hide scrollbar for Chrome, Safari and Opera */
        .categories-scroll::-webkit-scrollbar {
            display: none;
        }

        /* Category Card */
        .category-card {
            flex: 0 0 auto;
            width: 175px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background-color: white;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .category-image {
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .category-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .category-card:hover .category-image img {
            transform: scale(1.05);
        }

        .category-details {
            padding: 15px;
            text-align: center;
        }

        .category-name {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--text-color);
        }

        .item-count {
            font-size: 13px;
            color: #777;
            background-color: #f7f7f7;
            padding: 3px 10px;
            border-radius: 20px;
            display: inline-block;
        }

        /* Navigation Buttons */
        .scroll-nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: white;
            border: none;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 5;
            transition: all 0.3s ease;
        }

        .scroll-nav-button:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .scroll-nav-button.prev {
            left: -15px;
        }

        .scroll-nav-button.next {
            right: -15px;
        }

        .scroll-nav-button svg {
            width: 24px;
            height: 24px;
        }

        /* Indicators/Dots */
        .scroll-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 15px;
        }

        .indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            width: 25px;
            border-radius: 10px;
            background-color: var(--secondary-color);
        }

        /* First Item Highlight */
        .featured-category {
            width: 250px;
            position: relative;
        }

        .featured-category .category-image {
            height: 160px;
        }

        .featured-category .category-name {
            font-size: 18px;
        }

        .featured-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-header {
                flex-wrap: wrap;
            }
            
            .section-title {
                font-size: 24px;
                margin-bottom: 10px;
            }
            
            .scroll-nav-button {
                display: none;
            }
            
            .featured-category {
                width: 220px;
            }
            
            .featured-category .category-image {
                height: 140px;
            }
            
            .category-card {
                width: 160px;
            }
        }

        @media (max-width: 480px) {
            .featured-category {
                width: 180px;
            }
            
            .featured-category .category-image {
                height: 120px;
            }
            
            .category-card {
                width: 140px;
            }
            
            .category-image {
                height: 100px;
            }
        }

     /* Featured Products Section */
        .featured-section {
            padding: 50px 0;
            background-color: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section Header */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-color);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 70px;
            height: 3px;
            background-color: var(--secondary-color);
            margin-top: 10px;
            border-radius: 2px;
        }

        .view-all-btn {
            display: inline-flex;
            align-items: center;
            padding: 8px 20px;
            background-color: var(--light-bg);
            color: var(--text-color);
            text-decoration: none;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .view-all-btn:hover {
            background-color: var(--secondary-color);
            color: white;
        }

        .view-all-btn svg {
            margin-left: 6px;
            width: 16px;
            height: 16px;
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }

        /* Product Card */
        .product-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
        }

        /* Product Image Container */
        .product-img-container {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-img {
            transform: scale(1.05);
        }

        /* Featured Tag */
        .featured-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            z-index: 1;
        }

        /* Sale Tag */
        .sale-tag {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--sale-color);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            z-index: 1;
        }

        /* Organic Tag */
        .organic-tag {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--organic-color);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            z-index: 1;
        }

        /* Quick Shop Button */
        .quick-shop-btn {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 12px;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            text-align: center;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
        }

        .product-card:hover .quick-shop-btn {
            transform: translateY(0);
        }

        /* Product Info */
        .product-info {
            padding: 15px;
        }

        .product-category {
            font-size: 12px;
            color: #777;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .product-name {
            font-size: 16px;
            color: var(--text-color);
            margin-bottom: 10px;
            font-weight: 600;
            line-height: 1.4;
        }

        /* Product Bottom */
        .product-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 10px;
            border-top: 1px solid var(--border-color);
        }

        /* Price */
        .price-container {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .current-price {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .original-price {
            font-size: 14px;
            color: #999;
            text-decoration: line-through;
        }

        /* Add to Cart Button */
        .add-to-cart {
            background-color: var(--light-bg);
            color: var(--text-color);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .add-to-cart:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .add-to-cart svg {
            width: 20px;
            height: 20px;
        }

        /* Rating Stars */
        .rating {
            display: flex;
            align-items: center;
            gap: 2px;
            margin-bottom: 8px;
        }

        .star {
            color: #ffc107;
            font-size: 14px;
        }

        /* Product Badge */
        .product-badge {
            position: absolute;
            top: 40px;
            left: 10px;
            background-color: white;
            color: var(--text-color);
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            z-index: 1;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .section-header {
                margin-bottom: 20px;
            }
            
            .section-title {
                font-size: 24px;
                margin-bottom: 10px;
            }
            
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .product-img-container {
                height: 180px;
            }
            
            .quick-shop-btn {
                font-size: 13px;
                padding: 10px;
            }
        }

        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            
            .product-img-container {
                height: 150px;
            }
            
            .section-title {
                font-size: 22px;
            }
            
            .product-name {
                font-size: 14px;
            }
            
            .current-price {
                font-size: 16px;
            }
            
            .original-price {
                font-size: 12px;
            }
            
            .product-category {
                font-size: 11px;
            }
            
            .rating {
                margin-bottom: 5px;
            }
            
            .star {
                font-size: 12px;
            }
            
            .product-info {
                padding: 10px;
            }
            
            .add-to-cart {
                width: 36px;
                height: 36px;
            }
            
            .featured-tag, .organic-tag, .sale-tag, .product-badge {
                padding: 3px 6px;
                font-size: 10px;
            }
        }

    /* Promotions Section */
        .promotions-section {
            padding: 50px 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-color);
        }

        .section-subtitle {
            font-size: 16px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Promotions Container */
        .promotions-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        /* Main Promotion (Left) */
        .main-promotion {
            grid-column: 1;
            grid-row: 1 / span 2;
            height: 100%;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        .main-promo-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .main-promo-content {
            position: relative;
            z-index: 2;
            padding: 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
            color: white;
        }

        .promo-badge {
            display: inline-block;
            background-color: var(--secondary-color);
            color: white;
            padding: 6px 15px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .main-promo-title {
            font-size: 36px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 15px;
            max-width: 400px;
        }

        .main-promo-text {
            font-size: 16px;
            margin-bottom: 25px;
            max-width: 400px;
            line-height: 1.6;
            opacity: 0.9;
        }

        .promo-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secondary-color);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
            max-width: 200px;
        }

        .promo-button:hover {
            background-color: white;
            color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Secondary Promotions (Right) */
        .secondary-promotion {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            height: 250px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        .secondary-promo-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .secondary-promo-content {
            position: relative;
            z-index: 2;
            padding: 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
            color: white;
        }

        .secondary-promo-title {
            font-size: 24px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 10px;
            max-width: 300px;
        }

        .secondary-promo-text {
            font-size: 14px;
            margin-bottom: 20px;
            max-width: 300px;
            line-height: 1.6;
            opacity: 0.9;
        }

        .discount-circle {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: var(--discount-color);
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            line-height: 1;
            z-index: 3;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .discount-amount {
            font-size: 22px;
        }

        .discount-label {
            font-size: 12px;
            text-transform: uppercase;
        }

        /* Countdown Timer */
        .countdown-container {
            display: flex;
            gap: 10px;
            margin: 20px 0;
        }

        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.15);
            padding: 10px;
            border-radius: 8px;
            min-width: 60px;
        }

        .countdown-number {
            font-size: 20px;
            font-weight: 700;
        }

        .countdown-label {
            font-size: 12px;
            opacity: 0.8;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .main-promo-title {
                font-size: 30px;
            }
            
            .secondary-promo-title {
                font-size: 22px;
            }
        }

        @media (max-width: 768px) {
            .promotions-container {
                grid-template-columns: 1fr;
            }
            
            .main-promotion {
                grid-column: 1;
                grid-row: 1;
                height: 400px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .main-promo-content,
            .secondary-promo-content {
                padding: 25px;
            }
        }

        @media (max-width: 480px) {
            .promotions-section {
                padding: 30px 0;
            }
            
            .section-header {
                margin-bottom: 25px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .main-promotion {
                height: 350px;
            }
            
            .secondary-promotion {
                height: 200px;
            }
            
            .main-promo-title {
                font-size: 24px;
            }
            
            .secondary-promo-title {
                font-size: 20px;
            }
            
            .main-promo-text,
            .secondary-promo-text {
                font-size: 14px;
                margin-bottom: 15px;
            }
            
            .countdown-item {
                min-width: 50px;
                padding: 8px;
            }
            
            .countdown-number {
                font-size: 18px;
            }
            
            .discount-circle {
                width: 60px;
                height: 60px;
                top: 15px;
                right: 15px;
            }
            
            .discount-amount {
                font-size: 18px;
            }
        }

       /* FAQ Section */
        .faq-section {
            padding: 60px 0;
            background-color: white;
        }

       
        /* FAQ Accordion */
        .faq-container {
            margin-bottom: 40px;
        }

        .faq-item {
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            background-color: var(--accordion-bg);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            padding: 20px 25px;
            padding-right: 60px;
            cursor: pointer;
            font-weight: 600;
            font-size: 17px;
            position: relative;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background-color: var(--accordion-hover);
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            font-weight: 300;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            content: '−';
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            line-height: 1.6;
            color: #555;
        }

        .faq-item.active .faq-answer {
            padding: 0 25px 20px;
            max-height: 1000px; /* Arbitrary large value */
        }

        /* Still Have Questions */
        .still-have-questions {
            background-color: var(--light-bg);
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .questions-title {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--text-color);
        }

        .questions-text {
            margin-bottom: 25px;
            color: #666;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .contact-button:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .faq-section {
                padding: 40px 0;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .faq-question {
                font-size: 16px;
                padding: 18px 20px;
                padding-right: 50px;
            }
            
            .still-have-questions {
                padding: 30px 20px;
            }
            
            .questions-title {
                font-size: 22px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 24px;
            }
            
            .category-button {
                padding: 8px 15px;
                font-size: 13px;
            }
            
            .search-input {
                padding: 12px 15px 12px 45px;
                font-size: 14px;
            }
            
            .faq-question {
                font-size: 15px;
                padding: 15px;
                padding-right: 40px;
            }
            
            .faq-question::after {
                right: 15px;
                font-size: 22px;
            }
            
            .faq-item.active .faq-answer {
                padding: 0 15px 15px;
            }
            
            .still-have-questions {
                padding: 25px 15px;
            }
            
            .questions-title {
                font-size: 20px;
            }
        }

    /* Footer */
        .footer {
            background-color: var(--footer-bg);
            color: var(--footer-text);
            padding-top: 60px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Footer Top */
        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 50px;
            border-bottom: 1px solid var(--border-color);
        }

        /* About Column */
        .footer-about {
            padding-right: 20px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo img {
            height: 40px;
            margin-right: 10px;
        }

        .footer-logo-text {
            font-size: 24px;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-logo-text span {
            color: var(--secondary-color);
        }

        .footer-about p {
            margin-bottom: 25px;
            color: var(--footer-link);
            font-size: 14px;
        }

        /* Social Media */
        .social-media {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }

        .social-icon svg {
            width: 18px;
            height: 18px;
        }

        /* App Download */
        .app-download {
            margin-top: 20px;
        }

        .app-title {
            font-size: 14px;
            margin-bottom: 10px;
            color: white;
        }

        .app-buttons {
            display: flex;
            gap: 10px;
        }

        .app-button {
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 5px;
            padding: 8px 12px;
            color: white;
            text-decoration: none;
            font-size: 12px;
            transition: all 0.3s ease;
        }

        .app-button:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .app-icon {
            font-size: 20px;
        }

        .app-text {
            display: flex;
            flex-direction: column;
        }

        .app-store-text {
            font-size: 8px;
            opacity: 0.8;
        }

        .app-store-name {
            font-weight: 600;
            font-size: 12px;
        }

        /* Footer Columns */
        .footer-column h3 {
            color: white;
            font-size: 18px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2px;
            background-color: var(--secondary-color);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--footer-link);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        /* Contact Info */
        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            color: var(--footer-link);
            font-size: 14px;
        }

        .contact-icon {
            margin-right: 15px;
            color: var(--secondary-color);
            flex-shrink: 0;
        }

        /* Newsletter */
        .newsletter-form {
            margin-top: 20px;
            position: relative;
        }

        .newsletter-input {
            width: 100%;
            padding: 12px 15px;
            padding-right: 50px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 5px;
            color: white;
            font-size: 14px;
        }

        .newsletter-input::placeholder {
            color: var(--footer-link);
        }

        .newsletter-input:focus {
            outline: none;
            background-color: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .newsletter-button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--secondary-color);
            border: none;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .newsletter-button:hover {
            background-color: #e67e00;
        }

        /* Footer Mid */
        .footer-mid {
            padding: 30px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-color);
        }

        .payment-methods {
            display: flex;
            gap: 10px;
        }

        .payment-icon {
            width: 40px;
            height: 25px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: white;
            font-weight: 600;
        }

        /* Footer Bottom */
        .footer-bottom {
            background-color: var(--footer-secondary);
            padding: 20px 0;
            text-align: center;
            font-size: 14px;
            color: var(--footer-link);
        }

        .footer-bottom a {
            color: white;
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .footer-top {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .footer-about {
                grid-column: span 2;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding-top: 40px;
            }
            
            .footer-top {
                grid-template-columns: 1fr;
                gap: 30px;
                padding-bottom: 30px;
            }
            
            .footer-about {
                grid-column: span 1;
                padding-right: 0;
            }
            
            .footer-mid {
                flex-direction: column;
                gap: 20px;
                padding: 20px 0;
            }
            
            .app-buttons {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .social-media {
                justify-content: center;
            }
            
            .footer-column h3 {
                text-align: center;
            }
            
            .footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .footer-links a {
                display: block;
                text-align: center;
            }
            
            .contact-info li {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 5px;
            }
            
            .app-download {
                text-align: center;
            }
            
            .app-title {
                text-align: center;
            }
        }

    /* Hero Section Base Styles */
        .hero-section {
            position: relative;
            height: 250px;
            overflow: hidden;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            margin-bottom: 40px;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
            color: white;
        }

        .hero-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 18px;
            max-width: 600px;
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .breadcrumb {
            display: flex;
            list-style: none;
            margin-bottom: 20px;
        }

        .breadcrumb li {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }

        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: rgba(255, 255, 255, 0.5);
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: white;
            text-decoration: underline;
        }

        .hero-button {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--secondary-color);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .hero-button:hover {
            background-color: #e68200;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Specific Hero Section Styles */
        .shop-hero {
            background-image: url('../img/banner/main-slide-02.jpg');
            height: 350px;
        }


        /* Responsive Styles */
        @media (max-width: 768px) {
            .hero-section {
                height: 250px;
            }
            
            .hero-title {
                font-size: 32px;
            }
            
            .hero-subtitle {
                font-size: 16px;
            }
            
            .about-hero {
                height: 350px;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                height: 200px;
            }
            
            .hero-title {
                font-size: 28px;
            }
            
            .hero-subtitle {
                font-size: 14px;
            }
            
            .about-hero {
                height: 300px;
            }
            
            .hero-button {
                padding: 10px 20px;
                font-size: 14px;
            }
        }

        /* Product Filter Section */
        .fm-product-filter-section {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px var(--shadow-color);
            padding: 15px 20px;
            margin-bottom: 30px;

        }

        .fm-filter-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        /* Filter Group Styles */
        .fm-filter-group {
            position: relative;
            min-width: 200px;
            flex: 1;
        }

        /* Select Dropdown Styles */
        .fm-filter-select {
            appearance: none;
            width: 100%;
            padding: 12px 40px 12px 15px;
            font-size: 14px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
             border-color: green;
            background-color: var(--input-bg);
            cursor: pointer;
            color: var(--text-color);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .fm-filter-select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
        }

        /* Custom Dropdown Arrow */
        .fm-filter-group::after {
            content: '▼';
            font-size: 10px;
            color: var(--text-color);
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
        }

        /* Search Input Styles */
        .fm-search-container {
            position: relative;
            flex: 2;
            min-width: 250px;
             border-color: green;
        }

        .fm-search-input {
            width: 100%;
            padding: 12px 15px 12px 40px;
            font-size: 14px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            background-color: var(--input-bg);
            color: var(--text-color);
             border-color: green;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .fm-search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
        }

        .fm-search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
        }

        /* Filter Button Styles */
        .fm-filter-button {
            padding: 12px 20px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
            display: none; /* Hidden on desktop, shown on mobile */
        }

        .fm-filter-button:hover {
            background-color: #226626;
            transform: translateY(-2px);
        }

        /* Filter Tag Styles */
        .fm-filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }

        .fm-filter-tag {
            display: inline-flex;
            align-items: center;
            padding: 6px 12px;
            background-color: #f0f0f0;
            border-color: green;
            border-radius: 20px;
            font-size: 12px;
            color: var(--text-color);
        }

        .fm-tag-remove {
            margin-left: 8px;
            cursor: pointer;
            font-size: 14px;
            width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease;
        }

        .fm-tag-remove:hover {
            background-color: rgba(0, 0, 0, 0.2);
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .fm-filter-container {
                flex-direction: column;
                align-items: stretch;
            }
            
            .fm-filter-group, .fm-search-container {
                width: 100%;
                min-width: 100%;
            }
            
            .fm-filter-button {
                display: block;
                width: 100%;
                margin-top: 10px;
            }
        }

.cart-feedback {
    position: fixed;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2e7d32;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: bottom 0.3s ease;
}

.cart-feedback.show {
    bottom: 20px;
}
/* User account styles */
.user-account {
    position: relative;
    display: flex;
    align-items: center;
}

.user-name {
    margin-left: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    display: none; /* Hidden on mobile */
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 150px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.user-account:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-dropdown ul li {
    padding: 0;
    margin: 0;
}

.user-dropdown ul li a {
    display: block;
    padding: 10px 15px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
}

.user-dropdown ul li a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

/* Media queries for responsive design */
@media (min-width: 768px) {
    .user-name {
        display: block; /* Show on desktop */
    }
}

/* Adjust mobile navigation for the updated login items */
.mobile-nav-links .mobile-user-info {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    text-align: center;
}

.mobile-nav-links .mobile-user-name {
    font-weight: 600;
    color: white;
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
}

/* Enhanced styling for mobile nav links */
.mobile-nav-links li a {
    position: relative;
}

.mobile-nav-links li a.account-link::after {
    content: "→";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
*/