 :root {
            --primary-color: #046A38;
            --secondary-color: #C4B7A6;
            --text-color: #2E2E2E;
            --background-color: #FFFFFF;
            --highlight-color: #B3A580;
            --border-color: #C4B7A6;
            --text-light: #6b6b6b;
            --shadow-soft: 0 20px 60px rgba(4, 106, 56, 0.1);
            --shadow-hover: 0 30px 80px rgba(4, 106, 56, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }

body {
    background-color: var(--background-color);
    color: var(--text-color);
    padding-top: 120px; /* Account for fixed header */
}
.hero {
            width: 100%;
            max-width: 1400px;
            margin: 80px auto 60px;
            position: relative;
            background: var(--background-color);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-8px);
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
            align-items: center;
        }

        .hero-image {
            position: relative;
            height: 100%;
            overflow: hidden;
            background: linear-gradient(45deg, #f1f3f4, #e8eaed);
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg, 
                rgba(196, 183, 166, 0.1) 0%, 
                rgba(4, 106, 56, 0.05) 100%
            );
            z-index: 2;
            transition: opacity 0.6s ease;
        }

        .hero:hover .hero-image::before {
            opacity: 0.7;
        }

        .hero-image video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero:hover .hero-image video {
            transform: scale(1.08);
        }

        .hero-content {
            padding: 80px 60px;
            position: relative;
            z-index: 3;
            background: var(--background-color);
        }

        .hero-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 80px;
            background: linear-gradient(to bottom, var(--highlight-color), transparent);
            border-radius: 2px;
        }

        .hero-subtitle {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--highlight-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 24px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 0.2s;
        }

        .hero-title {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            font-size: 3.5rem;
            font-weight: 300;
            color: var(--text-color);
            line-height: 1.1;
            margin-bottom: 32px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards 0.4s;
        }

        .hero-title .accent {
            color: var(--primary-color);
            font-weight: 700;
        }

        .hero-description {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            font-size: 1.125rem;
            font-weight: 400;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 48px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 0.6s;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #035a2f 100%);
            color: var(--background-color);
            text-decoration: none;
            font-family: 'Helvetica Neue', Arial, sans-serif;
            font-size: 0.95rem;
            font-weight: 500;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 0.8s;
        }

        .hero-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }

        .hero-cta:hover::before {
            left: 100%;
        }

        .hero-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(4, 106, 56, 0.3);
        }

        .hero-cta-arrow {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .hero-cta:hover .hero-cta-arrow {
            transform: translateX(4px);
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .floating-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--highlight-color);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 6s ease-in-out infinite;
        }

        .floating-dot:nth-child(1) {
            top: 20%;
            right: 15%;
            animation-delay: 0s;
        }

        .floating-dot:nth-child(2) {
            top: 60%;
            right: 25%;
            animation-delay: 2s;
        }

        .floating-dot:nth-child(3) {
            top: 80%;
            right: 10%;
            animation-delay: 4s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            33% {
                transform: translateY(-20px) rotate(120deg);
            }
            66% {
                transform: translateY(10px) rotate(240deg);
            }
        }

        @media (max-width: 968px) {
            .hero-container {
                grid-template-columns: 1fr;
                grid-template-rows: 400px 1fr;
            }

            .hero-content {
                padding: 60px 40px;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-description {
                font-size: 1rem;
            }
        }

        @media (max-width: 640px) {
            .hero {
                margin: 40px auto 40px;
                border-radius: 16px;
            }

            .hero-content {
                padding: 40px 24px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-container {
                grid-template-rows: 300px 1fr;
            }
        }

.section-title {
    color: #333333; /* Deep, rich black */
    border-bottom: 2px solid #bfa27c; /* Elegant gold tone */
    padding-bottom: 15px;
    margin: 60px 20px 40px;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Playfair Display', serif; /* Luxury serif font */
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #bfa27c;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .feature {
            background: var(--background-color);
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(4, 106, 56, 0.08);
        }

        .feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .feature:hover::before {
            transform: scaleX(1);
        }

        .feature:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 20px 40px rgba(4, 106, 56, 0.2);
        }

        .feature-image-container {
            position: relative;
            height: 220px;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(4, 106, 56, 0.05), rgba(196, 183, 166, 0.05));
        }

        .feature img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
            filter: brightness(0.95) saturate(1.1);
        }

        .feature:hover img {
            transform: scale(1.08);
            filter: brightness(1) saturate(1.2);
        }

        .feature-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(4, 106, 56, 0.7), rgba(179, 165, 128, 0.6));
            opacity: 0;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature:hover .feature-overlay {
            opacity: 1;
        }

        .overlay-icon {
            color: black;
            font-size: 24px;
            position: absolute; 
            top: 10px;
            left: 10px;
            width: 48px;
            height: 48px;
            background: var(--background-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            transform: scale(0.8);
            transition: all 0.3s ease;
        }

        .feature:hover .overlay-icon {
            transform: scale(1);
        }

        .feature-content {
            padding: 32px 28px;
            position: relative;
        }

        .feature-number {
            position: absolute;
            top: -20px;
            right: 28px;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--background-color);
            font-weight: bold;
            font-size: 16px;
            box-shadow: 0 4px 12px rgba(4, 106, 56, 0.3);
        }

        .feature h3 {
            font-size: 1.4rem;
            color: var(--text-color);
            margin-bottom: 16px;
            font-weight: 600;
            letter-spacing: 0.5px;
            line-height: 1.3;
            position: relative;
        }

        .feature h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
            transition: width 0.4s ease;
        }

        .feature:hover h3::after {
            width: 60px;
        }

        .feature p {
            font-size: 1rem;
            color: var(--text-color);
            line-height: 1.6;
            margin-bottom: 24px;
            opacity: 0.8;
        }

        .shop-now-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
            border: none;
            border-radius: 50px;
            color: var(--background-color);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 15px rgba(4, 106, 56, 0.3);
            position: relative;
            overflow: hidden;
        }

        .shop-now-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .shop-now-btn:hover::before {
            left: 100%;
        }

        .shop-now-btn:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 25px rgba(4, 106, 56, 0.4);
        }

        .shop-now-btn:active {
            transform: translateY(0) scale(0.98);
        }

        .btn-icon {
            transition: transform 0.3s ease;
        }

        .shop-now-btn:hover .btn-icon {
            transform: translateX(4px);
        }

        /* Floating Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .feature:nth-child(2) {
            animation: float 6s ease-in-out infinite;
            animation-delay: -2s;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .features {
                grid-template-columns: 1fr;
                gap: 24px;
                padding: 40px 16px;
            }

            .feature-content {
                padding: 24px 20px;
            }

            .feature h3 {
                font-size: 1.2rem;
            }

            .feature p {
                font-size: 0.95rem;
            }

            .shop-now-btn {
                padding: 12px 24px;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .feature-image-container {
                height: 180px;
            }

            .feature h3 {
                font-size: 1.1rem;
            }
        }

        body {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

/* Product Card Styles */
.celebrity-products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 0 20px;
    margin-bottom: 40px;
    margin-top: 100px;
}

.product-card {
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(4, 106, 56, 0.08);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(4, 106, 56, 0.15);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-color);
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
    z-index: 2;
    cursor: pointer;
}

.wishlist-btn:hover {
    color: var(--highlight-color);
}

.wishlist-btn i.fa-solid {
    color: var(--highlight-color);
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-title {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 48px;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    justify-content: center;
}

.current-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
}

.original-price {
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-decoration: line-through;
}

.discount-percent {
    background: var(--primary-color);
    color: var(--background-color);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: bold;
}

.add-to-cart {
    width: 100%;
    padding: 10px;
    background: var(--background-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.add-to-cart:hover {
    background: var(--primary-color);
    color: var(--background-color);
}

.add-to-cart:disabled {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--background-color);
    cursor: not-allowed;
    opacity: 0.6;
}

/* Offer Badge Styles */
.offer-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    color: var(--background-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(4, 106, 56, 0.2);
}

.offer-badge.categories {
    background: linear-gradient(135deg, var(--highlight-color), var(--primary-color));
}

.offer-badge.brand {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.offer-badge.product {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.limited-time {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        padding-top: 140px;
    }

    .hero {
        margin-top: 140px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 20px;
    }

    .feature {
        min-width: 100%;
    }

    .product-card {
        max-width: 100%;
        margin: 0 5px 20px 5px;
    }

    .flash-sale h2 {
        font-size: 1.5rem;
    }

    .flash-sale p {
        font-size: 1rem;
    }

    .timer-box {
        font-size: 1.2rem;
        padding: 10px;
        min-width: 50px;
    }
}

 .product-showcase {
            max-width: 1200px;
            margin: 0 auto;
            background: var(--background-color);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .product-showcase:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .product-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 500px;
            align-items: center;
        }

        .product-image-section {
            position: relative;
            height: 100%;
            overflow: hidden;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f1f3f4 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 40px;
        }

        .product-image-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(
                circle at center,
                rgba(196, 183, 166, 0.1) 0%,
                rgba(4, 106, 56, 0.05) 70%,
                transparent 100%
            );
            z-index: 1;
        }

        .product-image-link {
            position: relative;
            z-index: 2;
            display: block;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 16px;
            overflow: hidden;
        }

        .product-image-link:hover {
            transform: scale(1.05) rotate(2deg);
        }

        .product-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            object-fit: cover;
            border-radius: 16px;
            transition: all 0.6s ease;
            filter: drop-shadow(0 15px 35px rgba(4, 106, 56, 0.15));
        }

        .product-image:hover {
            filter: drop-shadow(0 25px 50px rgba(4, 106, 56, 0.25));
        }

        .product-content {
            padding: 80px 60px;
            position: relative;
            background: var(--background-color);
        }

        .product-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100px;
            background: linear-gradient(to bottom, var(--primary-color), var(--highlight-color));
            border-radius: 2px;
        }

        .product-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--highlight-color), #d4c7a8);
            color: var(--background-color);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 8px 16px;
            border-radius: 20px;
            margin-bottom: 24px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 0.2s;
        }

        .product-title {
            font-size: 1rem;
            font-weight: 300;
            color: var(--text-color);
            line-height: 1.2;
            margin-bottom: 16px;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards 0.4s;
        }

        .title-underline {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
            border-radius: 2px;
            margin-bottom: 32px;
            opacity: 0;
            transform: scaleX(0);
            transform-origin: left;
            animation: scaleIn 0.8s ease forwards 0.6s;
        }

        .product-description {
            font-size: 1.125rem;
            font-weight: 400;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 0.8s;
        }

        .product-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 36px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #035a2f 100%);
            color: var(--background-color);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 1s;
        }

        .product-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }

        .product-cta:hover::before {
            left: 100%;
        }

        .product-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 45px rgba(4, 106, 56, 0.4);
        }

        .product-cta-arrow {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .product-cta:hover .product-cta-arrow {
            transform: translateX(6px);
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .floating-particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--highlight-color);
            border-radius: 50%;
            opacity: 0.4;
            animation: float 8s ease-in-out infinite;
        }

        .floating-particle:nth-child(1) {
            top: 15%;
            right: 20%;
            animation-delay: 0s;
        }

        .floating-particle:nth-child(2) {
            top: 70%;
            right: 15%;
            animation-delay: 3s;
        }

        .floating-particle:nth-child(3) {
            top: 45%;
            right: 8%;
            animation-delay: 6s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            to {
                opacity: 1;
                transform: scaleX(1);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) scale(1);
            }
            25% {
                transform: translateY(-15px) scale(1.1);
            }
            50% {
                transform: translateY(-5px) scale(0.9);
            }
            75% {
                transform: translateY(-20px) scale(1.05);
            }
        }

        @media (max-width: 768px) {
            .product-container {
                grid-template-columns: 1fr;
                grid-template-rows: 400px 1fr;
            }

            .product-content {
                padding: 50px 30px;
                text-align: center;
            }

            .product-title {
                font-size: 2.2rem;
            }

            .product-description {
                font-size: 1rem;
            }

            .product-image-section {
                padding: 40px 20px;
            }
        }

        @media (max-width: 480px) {
            .product-showcase {
                margin: 20px auto;
                border-radius: 16px;
            }

            .product-content {
                padding: 40px 24px;
            }

            .product-title {
                font-size: 1.8rem;
            }

            .product-container {
                grid-template-rows: 300px 1fr;
            }
        }
        :root {
    --primary-color: #046A38;
    --secondary-color: #C4B7A6;
    --text-color: #2E2E2E;
    --background-color: #FFFFFF;
    --highlight-color: #B3A580;
    --border-color: #C4B7A6;
    --text-light: #6b6b6b;
    --shadow-soft: 0 20px 60px rgba(4, 106, 56, 0.1);
    --shadow-hover: 0 30px 80px rgba(4, 106, 56, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text-color);
    padding-top: 120px;
}

.celebrity-products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 0 20px;
    margin-bottom: 40px;
    margin-top: 100px;
}

.product-card {
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(4, 106, 56, 0.08);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(4, 106, 56, 0.15);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-color);
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.btn-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
    z-index: 2;
    cursor: pointer;
}

.btn-wishlist:hover {
    color: var(--highlight-color);
}

.btn-wishlist i.fa-solid {
    color: var(--highlight-color);
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-title {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 48px;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    justify-content: center;
}

.current-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
}

.original-price {
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-decoration: line-through;
}

.discount-percent {
    background: var(--primary-color);
    color: var(--background-color);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: bold;
}

.add-to-cart {
    width: 100%;
    padding: 10px;
    background: var(--background-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.add-to-cart:hover {
    background: var(--primary-color);
    color: var(--background-color);
}

.add-to-cart:disabled {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--background-color);
    cursor: not-allowed;
    opacity: 0.6;
}

.offer-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    color: var(--background-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(4, 106, 56, 0.2);
}

.offer-badge.categories {
    background: linear-gradient(135deg, var(--highlight-color), var(--primary-color));
}

.offer-badge.brand {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.offer-badge.product {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.limited-time {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.no-products {
    text-align: center;
    padding: 40px;
    color: var(--text-color);
}

@media (max-width: 768px) {
    body {
        padding-top: 140px;
    }
    .hero {
        margin-top: 140px;
    }
    .product-card {
        max-width: 100%;
        margin: 0 5px 20px 5px;
    }
}