    @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

    :root {
        --primary-color: #D4A373;
        /* Warm gold/tan */
        --secondary-color: #FAEDCD;
        /* Cream */
        --accent-color: #A98467;
        /* Mocha brown */
        --dark-bg: #332D29;
        --text-main: #333333;
        --text-light: #Fefefe;
        --transition: all 0.3s ease;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Outfit', sans-serif;
        background-color: #FFFDF9;
        color: var(--text-main);
        line-height: 1.6;
    }

    /* Header & Navigation */
    header {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        padding: 10px 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-container {
        display: flex;
        align-items: center;
    }

    .logo-container img {
        height: 60px;
        /* Reduced to shrink header height */
        transform: scale(2.2);
        /* Scale up visually to compensate for whitespace and small height */
        width: auto;
        object-fit: contain;
        transition: var(--transition);
    }

    .logo-container img:hover {
        transform: scale(2.3);
    }

    .nav-menu {
        list-style: none;
        display: flex;
        gap: 30px;
    }

    .nav-menu li a {
        text-decoration: none;
        color: var(--dark-bg);
        font-weight: 600;
        font-size: 1.1rem;
        position: relative;
        padding: 5px 0;
        transition: var(--transition);
    }

    .nav-menu li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 2px;
        background-color: var(--primary-color);
        transition: var(--transition);
    }

    .nav-menu li a:hover {
        color: var(--primary-color);
    }

    .nav-menu li a:hover::after {
        width: 100%;
    }

    /* Header Right Side (Icons & Button) */
    .header-right {
        display: flex;
        align-items: center;
        gap: 25px;
    }

    .header-icon {
        color: var(--dark-bg);
        font-size: 1.4rem;
        text-decoration: none;
        transition: var(--transition);
        position: relative;
        display: inline-flex;
        align-items: center;
    }

    .header-icon:hover {
        color: var(--primary-color);
        transform: scale(1.1);
    }

    .cart-icon {
        position: relative;
    }

    .cart-count {
        position: absolute;
        top: -8px;
        right: -10px;
        background-color: #e74c3c;
        color: white;
        font-size: 0.75rem;
        font-weight: bold;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .btn-shop {
        background-color: var(--primary-color);
        color: var(--text-light);
        padding: 10px 25px;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
        transition: var(--transition);
    }

    .btn-shop:hover {
        background-color: var(--accent-color);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(169, 132, 103, 0.5);
        color: white;
    }

    /* Banner / Hero Section */
    .hero-wrapper {
        padding: 30px 50px;
        /* Spacing on sides and top/bottom */
        width: 100%;
        background-color: #d4a373;
    }

    .hero-section {
        position: relative;
        width: 100%;
        height: 55vh;
        min-height: 400px;
        max-height: 500px;
        overflow: hidden;
        border-radius: 30px;
        /* Corner curve */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* Swiper Styles Override */
    .swiper {
        width: 100%;
        height: 100%;
        --swiper-pagination-color: #ffffff;
    }

    .hero-section .swiper-slide {
        position: relative;
        width: 100%;
        height: 100%;
        background-color: var(--dark-bg);
    }

    .hero-banner {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        opacity: 0.9;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: scale(1.05);
        }

        to {
            opacity: 0.9;
            transform: scale(1);
        }
    }

    .hero-content {
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
        color: var(--text-light);
        max-width: 500px;
        z-index: 10;
    }

    .hero-content h1 {
        font-family: 'Playfair Display', serif;
        font-size: 3.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    /* Categories Section */
    .category-section {
        padding: 60px 50px;
        background-color: #ffffff;
        text-align: center;
    }

    .category-carousel-wrapper {
        position: relative;
        padding: 0 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .category-slide {
        display: flex;
        flex-direction: column;
        align-items: center;
        cursor: pointer;
        transition: var(--transition);
    }

    .category-slide:hover {
        transform: translateY(-5px);
    }

    .category-img-wrapper {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        padding: 10px;
    }

    .category-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 50%;
    }

    .category-slide h3 {
        font-size: 1.1rem;
        font-weight: 600;
    }

    /* Category Navigation Arrows */
    .cat-next,
    .cat-prev {
        color: #333 !important;
        width: 45px !important;
        height: 45px !important;
        background: #fff;
        border-radius: 50%;
        border: 1px solid #555;
        margin-top: -22px;
    }

    .cat-next:after,
    .cat-prev:after {
        font-size: 1.2rem !important;
    }

    .cat-next {
        right: 0px !important;
    }

    .cat-prev {
        left: 0px !important;
    }

    /* Products Preview Section */
    .products-section {
        padding: 80px 50px;
        background-color: var(--secondary-color);
        text-align: center;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .product-card {
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        text-align: left;
        display: flex;
        flex-direction: column;
    }

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    .product-img {
        position: relative;
        width: 100%;
        height: 250px;
        overflow: hidden;
    }

    .product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .product-card:hover .product-img img {
        transform: scale(1.1);
    }

    .badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background-color: var(--primary-color);
        color: #fff;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
    }

    .product-info {
        padding: 25px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .product-info h3 {
        font-size: 1.2rem;
        color: var(--dark-bg);
        margin-bottom: 10px;
    }

    .stars {
        color: #FFD700;
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .price {
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .price span {
        font-size: 0.9rem;
        color: #777;
        font-weight: 400;
    }

    .btn-cart {
        width: 100%;
        padding: 12px;
        background-color: transparent;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        margin-top: auto;
    }

    .btn-cart:hover {
        background-color: var(--primary-color);
        color: #fff;
    }

    /* Promo Banner */
    .promo-banner-section {
        padding: 0 50px;
        margin: 40px 0;
    }

    .promo-banner {
        background: linear-gradient(135deg, rgba(212, 163, 115, 0.85), rgba(169, 132, 103, 0.85)), url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&w=1200&q=80') center/cover;
        border-radius: 20px;
        padding: 60px 40px;
        text-align: center;
        color: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .promo-content h2 {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .promo-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    /* Features Section */
    .features-section {
        padding: 80px 50px;
        background-color: #ffffff;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .feature-box {
        text-align: center;
        flex: 1;
        min-width: 220px;
        padding: 30px 20px;
        background-color: #d4a373;
        /* Light beige arch */
        border-radius: 120px 120px 15px 15px;
        /* Arch shape */
        transition: var(--transition);
    }

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        background-color: var(--secondary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: var(--primary-color);
        font-size: 2rem;
        transition: var(--transition);
    }

    .feature-box:hover .feature-icon {
        transform: scale(1.1) rotate(5deg);
        background-color: var(--primary-color);
        color: #fff;
    }

    .feature-box h4 {
        font-size: 1.2rem;
        color: var(--dark-bg);
        margin-bottom: 10px;
    }

    .feature-box p {
        color: #ffffff;
        font-size: 0.95rem;
    }

    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        color: var(--dark-bg);
        margin-bottom: 50px;
        position: relative;
        display: inline-block;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: var(--primary-color);
    }

    /* Instagram Section */
    .insta-section {
        padding: 60px 50px;
        background-color: #ffffff;
        text-align: center;
    }

    .insta-grid {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 0 auto;
    }

    .insta-item {
        width: 100%;
        aspect-ratio: 1 / 1;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .insta-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .insta-item:hover img {
        transform: scale(1.1);
    }

    /* Footer */
    .main-footer {
        background-color: #1F1A17;
        /* Deeper dark premium color */
        color: #e0e0e0;
        padding: 80px 50px 20px;
        margin-top: 50px;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 50px;
    }

    .footer-col .footer-logo {
        height: 80px;
        object-fit: contain;
        margin-bottom: 20px;
        transform: scale(2.0);
        transform-origin: left;
    }

    .footer-col p {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .social-icons {
        display: flex;
        gap: 15px;
    }

    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        border-radius: 50%;
        text-decoration: none;
        transition: var(--transition);
    }

    .social-icons a:hover {
        background: var(--primary-color);
        transform: translateY(-3px);
    }

    .footer-col h4 {
        color: #fff;
        font-size: 1.2rem;
        margin-bottom: 25px;
        position: relative;
    }

    .footer-col h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 40px;
        height: 2px;
        background: var(--primary-color);
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
    }

    .footer-col ul li {
        margin-bottom: 12px;
    }

    .footer-col ul li a {
        color: #bbb;
        text-decoration: none;
        transition: var(--transition);
    }

    .footer-col ul li a:hover {
        color: var(--primary-color);
        padding-left: 5px;
    }

    .contact-info li {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        color: #bbb;
    }

    .contact-info li i {
        color: var(--primary-color);
        margin-top: 5px;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #888;
        font-size: 0.9rem;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 80px 50px;
        background-color: var(--secondary-color);
        text-align: center;
    }

    .testimonial-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding-bottom: 50px;
    }

    .testimonial-card {
        background: #fff;
        padding: 30px 20px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        text-align: center;
        position: relative;
        margin: 15px;
        height: auto;
    }

    .quote-icon {
        font-size: 1.8rem;
        color: var(--primary-color);
        opacity: 0.3;
        margin-bottom: 15px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        color: #555;
        font-style: italic;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .client-info {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .client-info img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        object-fit: cover;
    }

    .client-info h4 {
        color: var(--dark-bg);
        font-size: 1rem;
        margin-bottom: 3px;
        text-align: left;
    }

    .client-info .stars {
        margin-bottom: 0;
        text-align: left;
    }

    /* FAQ Section */
    .faq-section {
        padding: 80px 50px;
        background-color: #ffffff;
        text-align: center;
    }

    .faq-container {
        max-width: 800px;
        margin: 0 auto;
        text-align: left;
    }

    .faq-item {
        background-color: var(--secondary-color);
        border-radius: 10px;
        margin-bottom: 15px;
        overflow: hidden;
        transition: var(--transition);
    }

    .faq-item summary {
        padding: 20px 25px;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--dark-bg);
        cursor: pointer;
        position: relative;
        list-style: none;
        /* Hide default arrow */
    }

    /* Hide default marker in webkit */
    .faq-item summary::-webkit-details-marker {
        display: none;
    }

    .faq-item summary::after {
        content: '+';
        position: absolute;
        right: 25px;
        font-size: 1.5rem;
        color: var(--primary-color);
        transition: transform 0.3s ease;
    }

    .faq-item[open] summary::after {
        content: '-';
        transform: rotate(180deg);
    }

    .faq-content {
        padding: 0 25px 25px 25px;
        color: #555;
        line-height: 1.6;
        animation: fadein 0.3s ease-in-out;
    }

    @keyframes fadein {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* --- Mobile Responsiveness --- */
    /* Hide hamburger by default */
    .hamburger-menu {
        display: none;
        font-size: 1.5rem;
        color: var(--dark-bg);
        cursor: pointer;
    }

    @media (max-width: 768px) {

        /* Hide desktop only elements */
        .desktop-only {
            display: none !important;
        }

        /* Header adjustments */
        header {
            padding: 15px 20px;
            flex-wrap: wrap;
        }

        .logo-container {
            order: 1;
        }

        .logo-container img {
            height: 45px;
            transform: scale(1.5);
            transform-origin: left center;
            /* Keep logo aligned to the left while scaling */
        }

        .header-right {
            order: 2;
            gap: 15px;
            margin-left: auto;
            /* Push everything after logo to the right */
            margin-right: 15px;
            /* Space between icons and hamburger */
        }

        .hamburger-menu {
            display: block;
            order: 3;
            /* Push hamburger to the far right */
        }

        /* Navigation Menu Toggle for Mobile */
        nav {
            width: 100%;
            order: 4;
        }

        .nav-menu {
            flex-direction: column;
            width: 100%;
            display: none;
            /* hidden by default on mobile */
            gap: 15px;
            padding: 15px 0;
            text-align: center;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            margin-top: 15px;
        }

        .nav-menu.active {
            display: flex;
        }

        .nav-menu li a {
            font-size: 1.1rem;
            display: block;
            padding: 10px;
        }

        /* Hero Banner */
        .hero-wrapper {
            padding: 15px 15px;
        }

        .hero-section {
            height: 200px;
            /* Reduced height so it doesn't cut off as much */
            min-height: unset;
            /* Remove the 400px min-height that was causing aggressive cropping */
            border-radius: 15px;
        }

        .hero-content {
            padding: 0 20px;
            left: 5%;
        }

        .hero-content h1 {
            font-size: 2.2rem;
        }

        .hero-content p {
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .btn-primary {
            padding: 12px 25px;
            font-size: 1rem;
        }

        /* General Section Padding */
        .products-section,
        .category-section,
        .testimonials-section,
        .faq-section,
        .promo-banner-section {
            padding: 40px 10px;
            /* Reduced padding to give more room for products */
        }

        .section-title {
            font-size: 1.8rem !important;
            margin-bottom: 25px !important;
        }

        /* Product Grid - 2 columns on mobile */
        .product-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            /* Smaller gap for mobile */
        }

        .product-card {
            border-radius: 10px;
        }

        .product-img {
            height: 140px;
            /* Smaller height so it doesn't look stretched */
        }

        .badge {
            font-size: 0.65rem;
            padding: 3px 8px;
            top: 10px;
            left: 10px;
        }

        .product-info {
            padding: 10px;
        }

        .product-info h3 {
            font-size: 0.95rem;
            margin-bottom: 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .price {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .btn-cart {
            padding: 8px;
            font-size: 0.85rem;
        }

        /* Category Slider */
        .category-carousel-wrapper {
            padding: 0 20px;
        }

        .category-img-wrapper {
            width: 100px;
            height: 100px;
        }

        .cat-next,
        .cat-prev {
            width: 30px !important;
            height: 30px !important;
            margin-top: -15px;
        }

        .cat-next:after,
        .cat-prev:after {
            font-size: 1rem !important;
        }

        /* Features Section */
        .features-section {
            padding: 30px 10px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .feature-box {
            min-width: unset;
            padding: 20px 10px;
            border-radius: 60px 60px 15px 15px;
            /* Smaller arch for mobile */
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .feature-box h4 {
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        .feature-box p {
            font-size: 0.75rem;
            line-height: 1.3;
        }

        /* Promo Banner */
        .promo-banner {
            padding: 40px 20px;
        }

        .promo-content h2 {
            font-size: 2rem;
        }

        /* Footer */
        .main-footer {
            padding: 50px 20px 20px;
        }

        .footer-container {
            grid-template-columns: 1fr;
            gap: 30px;
            text-align: center;
        }

        .footer-col .footer-logo {
            margin: 0 auto 20px;
            transform: scale(1.5);
        }

        .social-icons {
            justify-content: center;
        }

        .contact-info li {
            justify-content: center;
        }

        /* Testimonials */
        .testimonial-card {
            padding: 20px 15px;
        }

        .quote-icon {
            font-size: 1.5rem;
        }

        .testimonial-text {
            font-size: 0.9rem;
        }

        /* FAQ */
        .faq-item summary {
            padding: 15px 20px;
            font-size: 1rem;
        }

        .faq-item summary::after {
            right: 15px;
            font-size: 1.2rem;
        }

        .faq-content {
            padding: 0 20px 20px 20px;
            font-size: 0.95rem;
        }
    }