        :root {
            --bg-cream: #F9F8F4;
            --text-black: #322a2b;
            --btn-dark: #2C2C2C;
            --card-bg: #F2EBE3;
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Manrope', sans-serif;
        }
        .discount-section {
            background: #322a2b;
            padding: 40px 0;
            overflow: hidden;
        }

        .discount-track {
            display: flex;
            gap: 60px;
            width: max-content;
            animation: scrollDiscount 20s linear infinite;
        }

        .discount-item {
            display: flex;
            align-items: center;
            gap: 20px;
            white-space: nowrap;
        }

        .discount-item h2 {
            font-size: clamp(22px, 3vw, 36px);
            font-weight: 600;
            color: #fff;
        }

        .discount-icon {
            font-size: 28px;
            color: #9A7B4F;
        }

        @keyframes scrollDiscount {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-50%);
            }
        }
        .lang-dropdown {
            position: absolute;
            top: 120%;
            right: 0;
            background: #fff;
            border-radius: 12px;
            min-width: 130px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            display: none;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
            z-index: 2;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: var(--font-body); background-color: var(--bg-cream); color: var(--text-black); line-height: 1.6; overflow-x: hidden; }
        h1, h2, h3 { font-family: var(--font-heading); color: var(--text-black); line-height: 1.2; }
        a { text-decoration: none; transition: 0.3s; }
        .container { max-width: 1250px; margin: 0 auto; padding: 0 24px; }
        
        .hero-section { padding-top: 140px; padding-bottom: 80px; min-height: 100vh; display: flex; align-items: center; background: #f8f5f0; position: relative; }
        .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .hero-text { padding-right: 20px; position: relative; }
        .hero-text h1 { font-size: 4.5rem; margin-bottom: 24px; font-weight: 400; }
        .hero-text p { font-size: 1.1rem; color: #555; margin-bottom: 40px; max-width: 480px; }
        
        .hero-btns { display: flex; gap: 15px; margin-bottom: 60px; }
        .btn-primary { background-color: var(--btn-dark); color: #fff; padding: 14px 32px; border-radius: 50px; font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
        .btn-outline { background-color: transparent; color: var(--text-black); border: 1px solid var(--text-black); padding: 14px 32px; border-radius: 50px; font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
        
        .floating-product-card { background: var(--card-bg); padding: 20px; border-radius: 16px; display: flex; align-items: center; gap: 20px; max-width: 320px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); position: relative; animation: float 4s ease-in-out infinite; }
        .float-prod-img { width: 70px; height: 70px; object-fit: cover; border-radius: 50%; background: #fff; padding: 5px; }
        .float-prod-info h4 { font-family: var(--font-body); font-size: 1rem; margin-bottom: 5px; font-weight: 600; }
        .star-rating { color: #1A1A1A; font-size: 12px; margin-bottom: 5px; }
        .float-link { font-size: 12px; color: var(--text-black); text-decoration: underline; font-weight: 600; }

        .hero-image-wrapper { position: relative; height: 650px; width: 100%; border-radius: 24px; overflow: hidden; }
        .hero-main-img { width: 100%; height: 100%; object-fit: cover; }
        .parallax-section {
            background-color: var(--bg-cream);
            padding: 180px 0; /* Creates scroll space */
            overflow: hidden;
            position: relative;
        }

        .parallax-container {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            min-height: 465px;
        }

        .parallax-content {
            text-align: center;
            max-width: 700px;
            /* z-index: 5; */
        }

        .parallax-content h2 {
            font-size: 2.8rem;
            font-weight: 400;
            line-height: 1.3;
            color: var(--text-black);
        }
        
        .parallax-content h2 span { color: #B2B2B2; }

        /* Image Column Settings */
        .image-col {
            position: absolute;
            width: 240px; /* Width of the single image */
        }

        /* Initial offset: Left starts higher to move down */
        .left-col { 
            left: 0; 
            top: -80px; 
        }

        /* Initial offset: Right starts lower to move up */
        .right-col { 
            right: 0; 
            top: 80px; 
        }

        .parallax-img {
            width: 100%;
            height: 300px;
            border-radius: 20px;
            object-fit: cover;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
        }
        a.btn-glow {
            color: #322a2b;
            font-size: 20px;
        }
        .btn-glow {
            margin-top: 5%;
        }

    .service-stack-section {
        background-color: var(--bg-cream);
        padding: 100px 0;
    }

    /* The outer wrapper that handles the scroll pinning logic */
    .service-images-wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .service-single-item {
        position: relative;
        width: 100%;
        max-width: 1000px;
        height: 600px; /* Fixed height for the stack effect */
        margin-bottom: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 30px;
        overflow: hidden;
        /* Transitions for brightness and blur filters */
        transition: filter 0.6s ease, transform 0.6s ease;
    }

    .service-image-link {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        z-index: 1;
    }

    .service-images {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Text Content Overlay (v3 style) */
    .service-content-wrap-v3 {
        position: relative;
        z-index: 2;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        padding: 40px;
        border-radius: 20px;
        max-width: 450px;
        margin-left: auto;
        margin-right: 50px; /* Aligned to the right like snippet */
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .service-title {
        font-size: 2rem;
        margin-bottom: 15px;
        color: var(--text-black);
    }

    .service-summary {
        font-size: 1rem;
        color: #555;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    /* Primary Button with SVG Arrow */
    .primary-button-block {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        color: var(--text-black);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 14px;
    }

    .arrow-icon svg {
        transition: transform 0.3s ease;
    }

    .primary-button-block:hover svg {
        transform: translateX(5px);
    }

    /* Filter states for non-active cards */
    .service-single-item.inactive {
        /*filter: brightness(60%) blur(3px);*/
        transform: scale(0.95);
    }
    /* Primary Button with SVG Arrow */
    .primary-button-block {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        color: var(--text-black);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 14px;
    }

    .arrow-icon svg {
        transition: transform 0.3s ease;
    }

    .primary-button-block:hover svg {
        transform: translateX(5px);
    }

    /* Filter states for non-active cards */
    /*.service-single-item.inactive {*/
    /*    filter: brightness(60%) blur(3px);*/
    /*    transform: scale(0.95);*/
    /*}*/

    /* Senses Section */
    .senses-section { background: var(--glow-bg); padding: 100px 0; text-align: center; }
    .senses-flex { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 50px; }
    .sense-item { max-width: 200px; }
    .sense-item i { font-size: 2rem; color: var(--glow-sage); margin-bottom: 20px; display: block; }
    .sense-item h4 { font-family: var(--font-body); font-weight: 700; margin-bottom: 10px; }
    .sense-item p { font-size: 0.9rem; color: #777; }

    /* Ritual Concept Path */
    .ritual-path { background: var(--btn-dark); color: #fff; padding: 60px 0; }
    .path-grid { display: flex; justify-content: space-around; text-align: center; }
    .path-item h5 { color: var(--glow-accent); font-size: 1.2rem; margin-bottom: 5px; }
    .path-item span { font-size: 0.85rem; opacity: 0.7; letter-spacing: 1px; }
    .philosophy-scroll-wrapper {
        background-color: var(--bg-cream);
        padding: 120px 0;
        overflow: hidden;
    }

    /* The container that hides the scrollbar but allows scrolling */
    .philosophy-container {
        display: flex;
        gap: 40px;
        padding: 40px 10%; /* Center the cards horizontally */
        overflow-x: auto;
        scroll-snap-type: x mandatory; /* This creates the "swap" snap effect */
        scrollbar-width: none; /* Hide for Firefox */
        -ms-overflow-style: none; /* Hide for IE/Edge */
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    .philosophy-container::-webkit-scrollbar {
        display: none;
    }

    .philosophy-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: fi;
        background: #e3dacf; 
        padding: 60px 40px;
        border-radius: 12px; /* Slightly softer corner */
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left; /* Left aligned like reference */
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        opacity: 0;
        transform: translateY(30px);
        will-change: transform, opacity;
    }

    /* Visual effect when card is focused (via hover or JS if wanted) */
    /* .philosophy-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 30px 60px rgba(0,0,0,0.08);
        border-color: var(--glow-sage);
    } */

    .val-icon {
        font-size: 3rem;
        color: var(--glow-sage);
        margin-bottom: 30px;
        opacity: 0.8;
    }

    .philosophy-card h4 {
        font-family: var(--font-heading);
        font-size: 2.2rem;
        color: #1A1A1A;
        margin-bottom: 25px;
        font-weight: 500;
    }

    .philosophy-card p {
        font-family: var(--font-body);
        font-size: 1.1rem;
        line-height: 1.7;
        color: #333;
        max-width: 90%;
    }

    .philosophy-stack-section {
        padding: 100px 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-color: var(--bg-cream);
    }

    .philosophy-stack-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        perspective: 1000px; /* Adds depth for the subtle shifts */
    }
    .philosophy-card.is-active {
        background: #e3dacf;
    }
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        margin-top: 10px;
    }

    .combine {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 60px;
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }

    .image_philosophy {
        flex: 1;
        max-width: 500px;
        z-index: 2;
    }

    .image_philosophy img {
        width: 88%;
        border-radius: 40px;
        box-shadow: 25px 25px 0px var(--card-bg);
        object-fit: cover;
        height: 415px;
    }

    .philosophy {
        flex: 1;
        position: relative;
        height: 450px; /* Fixed height for the card area */
    }

    .philosophy-stack-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .philosophy-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #ffffff;
        padding: 40px;
        border-radius: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 15px 45px rgba(0,0,0,0.06);
        opacity: 0;
        transform: translateY(50px);
        border: 1px solid rgba(0,0,0,0.03);
    }

    /* Ensure first card is visible before scroll */
    .philosophy-card:first-child {
        background: #e3dacf; 
        opacity: 1;
        transform: translateY(0);
    }

    .card-inner { text-align: center; }

    @media (max-width: 992px) {
        .combine { flex-direction: column; text-align: center; }
        .image_philosophy { display: none; }
        .philosophy { height: 400px; width: 100%; }
    }

    .philosophy-card {
        position: absolute; /* Stacked on top of each other */
        width: 100%;
        height: 100%;
        background: #fff;
        padding: 60px;
        border-radius: 40px;
        border: 1px solid rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-shadow: 0 20px 50px rgba(0,0,0,0.05);
        
        /* Initial state for all cards except the first one */
        transform: translateY(100%); 
        opacity: 0;
        will-change: transform, opacity, filter;
    }

    /* The first card should be visible immediately */
    .philosophy-card:first-child {
        transform: translateY(0%);
    }

    .val-icon {
        font-size: 3.5rem;
        color: var(--glow-sage);
        margin-bottom: 30px;
    }

    .val-icon-badge {
        width: 60px;
        height: 60px;
        background-color: #322a2b; /* Dark circular background */
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 30px;
    }

    /* Unique offsets to create the "arranged" look without a common center */
    .philosophy-card[data-index="0"] { 
        transform: rotate(-2deg) translateX(-10px) translateY(5px); 
        opacity: 1; /* First card visible by default */
        pointer-events: all;
    }
    .philosophy-card[data-index="1"] { 
        transform: rotate(3deg) translateX(15px) translateY(-10px); 
    }
    .philosophy-card[data-index="2"] { 
        transform: rotate(-4deg) translateX(-5px) translateY(-15px); 
    }
    .philosophy-card[data-index="3"] { 
        transform: rotate(2deg) translateX(10px) translateY(10px); 
    }

    /* Ensure the active card during GSAP animation pops to the front */
    .philosophy-card.is-active {
        opacity: 1;
        pointer-events: all;
        z-index: 10;
    }

    @media (max-width: 768px) {
        .philosophy-card {
            flex: 0 0 85vw;
            height: fit-content;
        }
        .hero-section {
            padding-top: 62px;
        }
        
        h3.service-name {
            font-size: 28px;
        }
        .product-info {
            flex-direction: column;
        }
        .philosophy-container {
            padding: 40px 7.5%;
        }
        .senses-flex {
            grid-template-columns: 1fr 1fr;
            display: grid;
        }
        .container {
            width: -webkit-fill-available;
        }
        a.product-img-wrapper {
            height: 300px;
        }
    }
    
    
    .products-section {
        background-color: var(--bg-cream);
        padding: 100px 0;
    }

    .products-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 3.5rem;
        margin-top: 10px;
        font-family: var(--font-heading);
    }

    .view-all-btn {
        padding: 12px 30px;
        border: 1px solid #1A1A1A;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        color: #1A1A1A;
        transition: all 0.3s ease;
    }

    .view-all-btn:hover {
        background: #1A1A1A;
        color: #fff;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .product-card {
        transition: transform 0.3s ease;
    }

    .product-img-wrapper {
        display: block;
        background: #F2EBE3; /* Matches the image card background */
        border-radius: 24px;
        height: 450px;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .product-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Keeps product centered without cropping */
        /*padding: 40px;*/
        transition: transform 0.5s ease;
    }

    .product-card:hover .product-img-wrapper img {
        transform: scale(1.08);
    }

    .product-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 5px;
    }

    .product-name {
        font-size: 1.5rem;
        font-family: var(--font-heading);
        font-weight: 400;
    }

    .product-price {
        font-size: 1.1rem;
        color: #1A1A1A;
        font-weight: 500;
    }

    @media (max-width: 992px) {
        .product-grid { grid-template-columns: 1fr 1fr; }
        .products-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    }
    @media (max-width: 1024px) {
        .image-col { display: none; } /* Better layout for mobile */
        .parallax-section { padding: 100px 0; }
    }
    @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

    @media (max-width: 992px) { .hero-text h1 { font-size: 3rem; } .hero-image-wrapper { height: 500px; } }
    @media (max-width: 768px) { .hero-grid { grid-template-columns: 1fr; } .hero-text { text-align: center; } .hero-btns { justify-content: center; } .floating-product-card { margin: 0 auto; } }
    
    /* --- MOBILE RESPONSIVE FIX --- */
@media (max-width: 992px) {
    /* General Layout Adjustments */
    .nav-menu { display: none; }
    .mobile-toggle { display: block; }
    .header-container { padding: 25px 20px; }
    .product-grid { grid-template-columns: 1fr 1fr; }
    .products-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .combine { flex-direction: column; text-align: center; }
    .image_philosophy { display: none; } /* Hide the big image on mobile */

    /* --- FIX: CORE VALUES (Philosophy) SECTION --- */
    .philosophy-stack-section {
        height: auto !important;
        min-height: auto;
        padding-bottom: 80px;
    }

    /* 1. Let the container grow with content */
    .philosophy { 
        height: auto !important; 
        width: 100%; 
        margin-top: 30px;
    }

    .philosophy-stack-wrapper {
        height: auto !important;
        display: flex;
        flex-direction: column;
        gap: 25px; /* Add space between cards */
    }

    /* 2. Reset the cards to be visible blocks */
    .philosophy-card {
        position: relative !important; /* Stop stacking on top of each other */
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        opacity: 1 !important; /* Force visible */
        transform: none !important; /* Remove slide-up effect */
        margin-bottom: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    /* 3. Remove the tilted rotation effect on mobile */
    .philosophy-card[data-index="0"],
    .philosophy-card[data-index="1"],
    .philosophy-card[data-index="2"],
    .philosophy-card[data-index="3"] {
        transform: none !important;
    }
    .philosophy-card {
        background: #fff !important;
    }
    
    .service-content-wrap-v3 {
        margin: 20px 0;
        width: 291px;
    }
}
