@font-face {
    font-family: 'Ringoven';
    src: url('../font/Ringoven.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Volkga DEMO';
    src: url('../font/Volkga DEMO.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6,
[class*="-heading"],
[class*="heading-"],
.hero-heading {
    font-family: 'Volkga DEMO', 'Ringoven', sans-serif !important;
}

.w-webflow-badge {
    display: none !important;
}

/* Fail-safe for loader */
html.has-seq-ready.fonts-loaded.is-ready .loader,
.loader.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    display: none !important;
}

html,
body {
    overflow: auto !important;
    height: auto !important;
}

.loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(182, 203, 165, 0.99);
    display: grid;
    place-content: flex-end;
    padding-right: 2.5em;
    padding-bottom: 2.5em;
    transition: opacity 0.5s ease, visibility 0.5s;
}

/* Valid CSS rule to hide loader */
html.has-seq-ready.fonts-loaded.is-ready .loader {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    display: none !important;
}

@keyframes float-bottle {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(5px, -10px) rotate(1deg);
    }

    66% {
        transform: translate(-5px, -5px) rotate(-1deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.stage-visual img.stage-canvas {
    animation: float-bottle 8s ease-in-out infinite !important;
    transform-origin: center bottom !important;
    z-index: 5;
    position: relative;
}

/* Hero Stage Decorations */
.stage {
    position: relative;
    overflow: hidden;
}

.stage-deco {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
}

.stage-deco-1 {
    top: 10%;
    left: -12%;
    width: 29vw;
    height: 25vw;
    background-image: url('../images/leaf-deco-palm-green.png');
    transform: rotate(-15deg);
    animation: stageFloat1 12s ease-in-out infinite;
    filter: blur(0px);
    opacity: 0.3;
}

.stage-deco-2 {
    bottom: 5%;
    right: -2%;
    width: 20vw;
    height: 20vw;
    background-image: url('../img/stage_leaf_2.png');
    transform: rotate(160deg);
    animation: stageFloat2 15s ease-in-out infinite;
    filter: blur(1px);
    opacity: 0.8;
}

.stage-deco-3 {
    top: 40%;
    right: 2%;
    width: 12vw;
    height: 12vw;
    background-image: url('../images/leaf-deco-3-v3.png');
    transform: rotate(45deg);
    animation: stageFloat1 10s ease-in-out infinite reverse;
    filter: blur(2px);
    opacity: 1;
}

.stage-deco-4 {
    bottom: 30%;
    left: 10%;
    width: 15vw;
    height: 15vw;
    background-image: url('../images/leaf-deco-4.png');
    transform: rotate(-60deg);
    animation: stageFloat2 18s ease-in-out infinite reverse;
    filter: blur(3px);
    opacity: 0.6;
}

@keyframes stageFloat1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(-15deg);
    }

    50% {
        transform: translate(20px, -30px) rotate(-10deg);
    }
}

@keyframes stageFloat2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(160deg);
    }

    50% {
        transform: translate(-30px, 20px) rotate(170deg);
    }
}

.loader::before {
    content: "";
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: color-burn;
    background-image:
        url(https://cdn.prod.website-files.com/686c09a33211842a0ac0183d/68b0b1e2ae528702c898a058_pattern.png);
    background-position: 0 0;
    background-size: 7rem 7rem;
    position: absolute;
    inset: 0%;
}

.loader::after {
    content: "";
    height: 1.25em;
    width: 1.25em;
    border: 0.125em solid #335c30;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    transition: opacity 0.25s ease;
}

html.has-seq-ready .loader::after {
    opacity: 0;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ------------------------- Scaling System by Osmo [https://osmo.supply/] -------------------------  */

/* Desktop */
:root {
    --size-unit: 16;
    /* body font-size in design - no px */
    --size-container-ideal: 1440;
    /* screen-size in design - no px */
    --size-container-min: 992px;
    --size-container-max: 2560px;
    --size-container: clamp(var(--size-container-min), 100vw, var(--size-container-max));
    --size-font: calc(var(--size-container) / (var(--size-container-ideal) / var(--size-unit)));
}

/* Tablet */
@media screen and (max-width: 991px) {
    :root {
        --size-container-ideal: 640;
        /* screen-size in design - no px */
        --size-container-min: 768px;
        --size-container-max: 991px;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
    :root {
        --size-container-ideal: 550;
        --size-container-min: 480px;
        --size-container-max: 767px;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
    :root {
        --size-container-ideal: 390;
        --size-container-min: 320px;
        --size-container-max: 479px;
    }
}

body {
    font-size: var(--size-font);
}

.container {
    max-width: var(--size-container);
}

.container.medium {
    max-width: calc(var(--size-container) * 0.85);
}

.container.small {
    max-width: calc(var(--size-container) * 0.7);
}

/* Modern 3D Creative Showcase */
.modern-3d-section {
    padding: 8em 0;
    position: relative;
    background-color: #0d1a0d;
    color: #fff;
    overflow: hidden;
}

.modern-3d-section .flavour-title {
    color: #fff;
}

.modern-3d-section .flavour-subline {
    color: rgba(255, 255, 255, 0.7);
}

.three-js-container {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    background: radial-gradient(circle at center, #1b2e1b 0%, #0d1a0d 100%);
    cursor: grab;
}

.three-js-container:active {
    cursor: grabbing;
}

.three-js-loader {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background: #0d1a0d;
    gap: 1em;
    transition: opacity 0.5s ease;
}

.loader-circle {
    width: 3em;
    height: 3em;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #b6cba5;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

.product-info-overlay {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
    width: 90%;
    max-width: 400px;
}

.product-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2em;
    border-radius: 1.5em;
    text-align: center;
    pointer-events: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.product-info-card h4 {
    font-size: 2em;
    margin-bottom: 0.2em;
    color: #fff;
}

.product-info-card p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5em;
}

.overlay-price {
    font-size: 1.8em;
    font-weight: 700;
    color: #b6cba5;
    margin-bottom: 1em;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Heritage Collection 3D Cards */
.heritage-section {
    padding: 10em 0;
    background-color: #fdfdfd;
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}

/* 3D Floating Decorations */
.heritage-deco {
    position: absolute;
    width: 15vw;
    height: 15vw;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.deco-1 {
    top: 5%;
    left: 2%;
    background-image: url('../img/leaf_deco_1.png');
    transform: rotate(15deg);
    filter: blur(0.5px);
    width: 18vw;
    opacity: 0.95;
}

.deco-2 {
    bottom: 10%;
    right: 2%;
    background-image: url('../img/leaf_deco_2.png');
    transform: rotate(-30deg);
    filter: blur(2px);
    width: 18vw;
}

.deco-3 {
    top: 60%;
    left: -5%;
    background-image: url('../img/leaf_deco_1.png');
    transform: rotate(160deg) scaleX(-1);
    filter: blur(4px);
    width: 20vw;
    opacity: 0.4;
}

.deco-4 {
    top: 15%;
    right: -3%;
    background-image: url('../img/leaf_deco_2.png');
    transform: rotate(-120deg);
    filter: blur(3px);
    width: 14vw;
    opacity: 0.5;
}

.heritage-carousel-wrapper {
    margin-top: 5em;
    padding: 4em 0 8em;
    /* More breathing room for pop-out images */
    position: relative;
    z-index: 2;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
}

.heritage-swiper {
    overflow: visible !important;
    padding: 0 !important;
    /* Full width impact */
    width: 100%;
}

.heritage-swiper .swiper-slide {
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2em;
}

.heritage-swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.3;
    transform: scale(0.8);
    filter: blur(2px);
}

/* Custom Navigation */
.heritage-nav-prev,
.heritage-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4em;
    height: 4em;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

.heritage-nav-prev {
    left: 5vw;
}

.heritage-nav-next {
    right: 5vw;
}

.heritage-nav-prev:hover,
.heritage-nav-next:hover {
    background: #335c30;
    color: #fff;
}

.heritage-nav-prev::after,
.heritage-nav-next::after {
    content: '';
    width: 1em;
    height: 1em;
    border-left: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
}

.heritage-nav-prev::after {
    transform: rotate(45deg);
}

.heritage-nav-next::after {
    transform: rotate(-135deg);
}


.tilt-card {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1/1.25;
    cursor: pointer;
    margin: 0 auto;
    /* transform-style removed */
}

.tilt-card-inner {
    position: absolute;
    inset: 0;
    padding: 3.5em 2.5em;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 250, 240, 0.95) 100%);
    backdrop-filter: blur(25px);
    border-radius: 4.5em;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1), inset 0 0 30px rgba(255, 255, 255, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* Center interior content */
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.7);
    pointer-events: none;
    overflow: hidden;
}

/* Luxury Gloss Sweep */
.tilt-card-inner::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg,
            transparent 45%,
            rgba(255, 255, 255, 0.7) 50%,
            transparent 55%);
    transform: rotate(-25deg);
    pointer-events: none;
    z-index: 5;
}

.tilt-card-visual {
    width: 100%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 2em;
}

/* Layered Breathing Glow */
.tilt-card-visual::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(51, 92, 48, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
    animation: masterAura 5s ease-in-out infinite;
}

@keyframes masterAura {

    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.tilt-product-img {
    max-width: 130%;
    max-height: 130%;
    object-fit: contain;
    filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.25));
    border-radius: 70px;
}

.tilt-card-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tilt-title {
    font-family: 'Gayathri', sans-serif;
    font-size: 2.2em;
    font-weight: 700;
    color: #335c30;
    margin-top: 1.1em;
    letter-spacing: -0.01em;
}

.tilt-desc {
    font-size: 0.95em;
    color: #555;
    line-height: 1.4;
    margin-bottom: 1.5em;
    max-width: 100%;
}

.tilt-footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    pointer-events: auto;
}

.tilt-tag {
    font-size: 0.75em;
    font-weight: 700;
    color: #335c30;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5em 1.2em;
    background: rgba(182, 203, 165, 0.25);
    border-radius: 2em;
}

.tilt-link {
    font-size: 0.85em;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 3px solid #b6cba5;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.tilt-link:hover {
    color: #335c30;
    border-color: #335c30;
}

/* Heritage Section Titles */
.heritage-section .flavour-heading-wrap {
    text-align: center;
    position: relative;
    z-index: 5;
    margin-bottom: 2em;
}

.heritage-section .flavour-title {
    font-family: 'Volkga DEMO', 'Ringoven', sans-serif;
    font-size: 12em;
    color: #335c30;
    line-height: 1;
    margin-bottom: 0.2em;
}

.heritage-section .flavour-subline {
    font-family: 'Gayathri', sans-serif;
    font-size: 2.5em;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}



/* =========================================
   Ayurveda History Section
   ========================================= */
#ayurveda-info {
    position: relative;
    padding: 10em 0;
    background: #e8efe4;
    /* Matching Light Sage */
    color: #335c30;
    /* Brand Dark Green */
    overflow: hidden;
}

.ayurveda-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url('https://cdn.prod.website-files.com/686c09a33211842a0ac0183d/68b0b1e2ae528702c898a058_pattern.png');
    opacity: 0.08;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.ayurveda-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6em;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ayurveda-title-col {
    position: relative;
    text-align: right;
}

.ayurveda-heading {
    font-family: 'Volkga DEMO', serif;
    font-size: clamp(3.5em, 6vw, 6em);
    color: #335c30;
    line-height: 0.9;
    margin-bottom: 0.2em;
}

.ayurveda-sub {
    font-family: 'Gayathri', sans-serif;
    font-size: 1.5em;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

/* Decorative Vertical Line */
.ayurveda-sep {
    position: absolute;
    top: 50%;
    right: -3em;
    width: 1px;
    height: 120%;
    background: linear-gradient(to bottom, transparent, #335c30, transparent);
    opacity: 0.3;
    transform: translateY(-50%);
}

.ayurveda-text-content p {
    font-family: 'Gayathri', sans-serif;
    font-size: 1.25em;
    line-height: 1.8;
    color: #4a6b4a;
    margin-bottom: 1.5em;
    text-align: justify;
}

.ayurveda-highlight {
    color: #bfa35f;
    /* Gold-ish */
    font-weight: 700;
}

@media (max-width: 991px) {
    .ayurveda-grid {
        grid-template-columns: 1fr;
        gap: 3em;
        text-align: center;
    }

    .ayurveda-title-col {
        text-align: center;
    }

    .ayurveda-sep {
        display: none;
    }

    .ayurveda-text-content p {
        text-align: left;
    }
}

/* =========================================
   What We Offer Section - Premium Ayurveda
   ========================================= */

#what-we-offer {
    background-color: #e8efe4;
    padding: 10em 0;
    position: relative;
    overflow: hidden;
    color: #335c30;
}

/* Organic Leaf Decorations (Matching Hero/Heritage) */
.offer-deco-leaf {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

.offer-leaf-1 {
    top: -5%;
    left: -2%;
    width: 25vw;
    transform: rotate(15deg);
    animation: offerFloat 15s ease-in-out infinite;
}

.offer-leaf-2 {
    bottom: -5%;
    right: -2%;
    width: 20vw;
    transform: rotate(-25deg);
    animation: offerFloat 18s ease-in-out infinite reverse;
}

@keyframes offerFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.container.offer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5vw;
    position: relative;
    z-index: 2;
}

/* Heading */
.offer-header {
    text-align: center;
    margin-bottom: 6em;
    position: relative;
}

.offer-title {
    font-family: 'Volkga DEMO', 'Ringoven', serif;
    font-size: clamp(3.5em, 7vw, 6.5em);
    color: #335c30;
    line-height: 1;
    margin-bottom: 0.3em;
}

.offer-subline {
    font-family: 'Gayathri', sans-serif;
    font-size: 1.35em;
    color: #666;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
}

.offer-header-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #335c30, transparent);
    margin: 2em auto 0;
    opacity: 0.3;
}

/* Grid */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3em;
    perspective: 1000px;
}

/* Premium Light Glass Cards */
.offer-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 2em;
    padding: 3.5em 2.5em;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(51, 92, 48, 0.05);
}

/* Hover - Lift & Shadow */
.offer-card:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-15px);
    border-color: #fff;
    box-shadow: 0 30px 60px rgba(51, 92, 48, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

/* =========================================
   What's New Section - Product Showcase
   ========================================= */
.whats-new-section {
    padding: 10em 0;
    background: #F6F4EF;
    /* Soft Beige */
    color: #1a2e1a;
    position: relative;
    overflow: hidden;
}

.whats-new-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6em;
    align-items: center;
}

/* Image Side */
.whats-new-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.wn-image-frame {
    position: relative;
    border-radius: 300px 300px 20px 20px;
    /* Arch shape */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 46, 26, 0.15);
    border: 1px solid rgba(201, 162, 77, 0.3);
    /* Decorative double border illusion */
    padding: 2em;
    /* More padding */
    background: radial-gradient(circle at center, #fff 0%, #f0efe9 100%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    max-width: 450px;
    height: 550px;
    /* Fixed height frame */
}

.wn-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill frame */
    display: block;
    transition: transform 1.5s ease;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
    border-radius: 300px 300px 20px 20px;
}

.wn-image-frame:hover .wn-img-main {
    transform: scale(1.05);
}

.wn-badge {
    position: absolute;
    top: 2em;
    right: 10em;
    background: #335c30;
    color: #fff;
    padding: 0.5em 1.2em;
    border-radius: 50px;
    font-family: 'Gayathri', sans-serif;
    font-size: 0.9em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Content Side */
.whats-new-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wn-label {
    font-family: 'Gayathri', sans-serif;
    font-size: 1em;
    color: #C9A24D;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 1em;
    font-weight: 700;
}

.wn-title {
    font-family: 'Volkga DEMO', serif;
    font-size: 4em;
    line-height: 1.1;
    color: #1a2e1a;
    margin-bottom: 0.5em;
}

.wn-highlight {
    color: #335c30;
    font-style: italic;
    background: linear-gradient(120deg, rgba(182, 203, 165, 0.3) 0%, transparent 100%);
    padding-right: 0.2em;
}

.wn-desc {
    font-family: 'Gayathri', sans-serif;
    font-size: 1.2em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2em;
    max-width: 90%;
}

.wn-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8em;
    margin-bottom: 3em;
}

.wn-feature-item {
    font-family: 'Gayathri', sans-serif;
    font-size: 1.1em;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.8em;
}

.wn-check {
    color: #C9A24D;
    font-weight: bold;
}

/* Button */
.wn-btn {
    display: none !important;
    align-items: center;
    gap: 1em;
    padding: 1em 2.5em;
    background: #335c30 !important;
    color: #ffffff !important;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Gayathri', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(51, 92, 48, 0.25);
}

.wn-btn:hover {
    background: #254423;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(51, 92, 48, 0.35);
}

.wn-arrow {
    transition: transform 0.3s ease;
}

.wn-btn:hover .wn-arrow {
    transform: translateX(5px);
}



/* Inner Glow Effect - Subtle Gold */
.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(201, 162, 77, 0.15), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-icon-wrap {
    width: 80px;
    height: 80px;
    margin-bottom: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(51, 92, 48, 0.08);
    color: #335c30;
    border: 1px solid rgba(51, 92, 48, 0.1);
    transition: all 0.5s ease;
    position: relative;
}

.offer-card:hover .offer-icon-wrap {
    background: rgba(201, 162, 77, 0.15);
    color: #bfa35f;
    /* Gold-ish */
    border-color: rgba(201, 162, 77, 0.3);
    transform: scale(1.1) rotate(5deg);
}

/* Footer Bottom Alignment */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 1em;
    border-top: 1px solid rgba(182, 203, 165, 0.2);
    /* Soft Sage Border */
    margin-top: 2em;
    flex-wrap: wrap;
    gap: 1em;
}

.footer-credits-simple {
    color: var(--dark-green);
    letter-spacing: -.02em;
    font-size: 1.125em;
    line-height: 92%;
}

/* .footer-credits-simple:hover {
    color: #C9A24D;
    text-decoration: none;
    opacity: 1;
} */

.offer-icon-svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.2;
}

.offer-card-title {
    font-family: 'Volkga DEMO', serif;
    font-size: 2.2em;
    color: #335c30;
    margin-bottom: 0.4em;
    line-height: 1.1;
    transition: color 0.3s ease;
}

.offer-card:hover .offer-card-title {
    color: #1a2e1a;
    /* Darker green on hover */
}

.offer-divider {
    width: 40px;
    height: 2px;
    background: rgba(51, 92, 48, 0.2);
    margin: 0.5em 0 1.5em;
    transition: width 0.5s ease, background 0.5s ease;
}

.offer-card:hover .offer-divider {
    width: 80px;
    background: #bfa35f;
}

.offer-card p {
    font-family: 'Gayathri', sans-serif;
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1em;
}

/* Learn More Link */
.offer-link {
    font-family: 'Gayathri', sans-serif;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #335c30;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.5em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    font-weight: 700;
}

.offer-card:hover .offer-link {
    opacity: 1;
    transform: translateY(0);
}

/* Background Leaf inside card */
.card-leaf-deco {
    position: absolute;
    bottom: -1em;
    right: -1em;
    width: 6em;
    height: 6em;
    opacity: 0.05;
    filter: none;
    /* Removed invert since bg is light */
    transform: rotate(-15deg);
    transition: all 0.6s ease;
}

.offer-card:hover .card-leaf-deco {
    opacity: 0.1;
    transform: rotate(0deg) scale(1.1);
}

/* =========================================
   Payment Method Styling - Matching Content
   ========================================= */
.payment-method-img {
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
    mix-blend-mode: multiply;
}

/* Ensure the full-color Ayurvedic image is visible without filters */
.payment-method-img.is-amex,
.payment-method-img.is-mastercard {
    filter: none;
    mix-blend-mode: normal;
    opacity: 1;
    border-radius: 50%;
    /* Optional: make it circular like a badge if desired */
    object-fit: cover;
}

/* =========================================
   Payment Section Details
   ========================================= */

.payment-methods-inner {
    position: relative;
}

.payment-note-deco {
    position: absolute;
    top: -4em;
    right: -3em;
    width: 10em;
    z-index: 5;
    transform: rotate(15deg);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    pointer-events: none;
    opacity: 0;
    animation: fadeInNote 1s ease-out 1s forwards;
}

@keyframes fadeInNote {
    from {
        opacity: 0;
        transform: rotate(5deg) translateY(20px);
    }

    to {
        opacity: 1;
        transform: rotate(15deg) translateY(0);
    }
}

@media screen and (max-width: 767px) {
    .payment-note-deco {
        top: -3em;
        right: 0;
        width: 7em;
    }
}

/* Hamburger Menu Base Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--dark-green, #335c30);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: #335c30;
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: #335c30;
}

/* XXL - 1400px and up (Base Styles covered above) */

/* XL Down (under 1400px) */
@media screen and (max-width: 1399px) {
    .tilt-card {
        max-width: 400px;
    }

    .tilt-title {
        font-size: 2em;
    }

    .wn-title {
        font-size: 3.5em;
    }
}

/* LG Down (under 1200px) */
@media screen and (max-width: 1199px) {
    .tilt-card {
        max-width: 350px;
    }

    .tilt-card-inner {
        padding: 3em 2em;
    }

    .tilt-title {
        font-size: 1.9em;
    }

    .wn-title {
        font-size: 3em;
    }
}

/* MD Down (under 992px) */
@media screen and (max-width: 991px) {
    .heritage-carousel-wrapper {
        margin-top: 0em !important;
        padding: 0em 0 0em !important;
    }

    .tilt-card {
        max-width: 320px;
    }

    .tilt-card-inner {
        padding: 2.5em 2em;
        border-radius: 3em;
    }

    .tilt-title {
        font-size: 1.8em;
    }

    #what-we-offer {
        padding: 6em 0;
    }

    .offer-title {
        font-size: 4em;
    }

    .offer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2em;
    }

    .testimonial-big-heading {
        font-size: 4em;
    }

    .testimonial-heading {
        font-size: 3em;
    }

    .whats-new-grid {
        grid-template-columns: 1fr;
        gap: 4em;
        text-align: center;
    }

    .whats-new-content {
        align-items: center;
    }

    .wn-title {
        font-size: 3em;
    }

    .wn-image-frame {
        max-width: 380px;
        height: 480px;
    }
}

/* SM Down (under 768px) */
@media screen and (max-width: 767px) {
    .tilt-card {
        max-width: 300px;
    }

    .tilt-card-inner {
        padding: 2.2em 1.8em;
    }

    .tilt-title {
        font-size: 1.7em;
    }

    .tilt-desc {
        font-size: 0.9em;
    }

    .payment-note-deco {
        top: -3em;
        right: 0;
        width: 7em;
    }

    .wn-title {
        font-size: 2.5em;
    }

    .wn-desc {
        font-size: 1.1em;
        max-width: 100%;
    }

    .wn-image-frame {
        max-width: 320px;
        height: 400px;
        border-radius: 200px 200px 20px 20px;
    }

    .wn-img-main {
        border-radius: 200px 200px 20px 20px;
    }
}

/* XS Down (under 576px) */
@media screen and (max-width: 575px) {
    .tilt-card {
        max-width: 280px;
    }

    .tilt-card-inner {
        padding: 2em 1.5em;
        border-radius: 2.5em;
    }

    .tilt-title {
        font-size: 1.5em;
        margin-top: 0.8em;
    }

    .tilt-desc {
        font-size: 0.85em;
        line-height: 1.3;
        margin-bottom: 1em;
    }

    .tilt-product-img {
        max-width: 110%;
        max-height: 110%;
    }

    .tilt-tag {
        font-size: 0.65em;
        padding: 0.4em 1em;
    }

    .tilt-link {
        font-size: 0.75em;
    }

    #what-we-offer {
        padding: 4em 0;
    }

    .offer-title {
        font-size: 2.5em;
    }

    .offer-subline {
        font-size: 1em;
        letter-spacing: 0.1em;
    }

    .offer-grid {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .offer-card {
        padding: 2em 1.5em;
    }

    .offer-icon-wrap {
        width: 60px;
        height: 60px;
    }

    .offer-card-title {
        font-size: 1.75em;
    }

    .testimonial-big-heading {
        font-size: 2.5em;
    }

    .testimonial-signature {
        transform: scale(0.65);
        margin-bottom: -1em;
    }

    .testimonial-heading {
        font-size: 2.2em;
    }

    .testimonial-slider-item {
        padding: 1.5em !important;
    }

    .wn-title {
        font-size: 2.2em;
    }

    .wn-desc {
        font-size: 1em;
    }

    .wn-image-frame {
        max-width: 280px;
        height: 350px;
        border-radius: 150px 150px 20px 20px;
    }

    .wn-img-main {
        border-radius: 150px 150px 20px 20px;
    }

    .wn-badge {
        top: 1em;
        right: 2em;
        font-size: 0.8em;
    }
}

/* ==========================================================================
   GLOBAL SECTION RESPONSIVE PADDINGS & LAYOUT (Standard Dimensions)
   ========================================================================== */

/* XXL (>= 1400px) & XL (>= 1200px) Defaults */
section,
.insider-section,
.vision-mission-section,
.heritage-section,
.whats-new-section,
.founder-section,
.mission-section,
.pharmacy-section,
.contact-section,
.offer-section,
#ayurveda-info,
#ayurveda-intro,
#what-we-offer {
    padding-top: 8em;
    padding-bottom: 8em;
}

/* XL: < 1400px */
@media screen and (max-width: 1399px) {

    section,
    .insider-section,
    .vision-mission-section,
    .heritage-section,
    .whats-new-section,
    .founder-section,
    .mission-section,
    .pharmacy-section,
    .contact-section,
    .offer-section,
    #ayurveda-info,
    #ayurveda-intro,
    #what-we-offer {
        padding-top: 7em;
        padding-bottom: 7em;
    }
}

/* LG: < 1200px */
@media screen and (max-width: 1199px) {

    section,
    .insider-section,
    .vision-mission-section,
    .heritage-section,
    .whats-new-section,
    .founder-section,
    .mission-section,
    .pharmacy-section,
    .contact-section,
    .offer-section,
    #ayurveda-info,
    #ayurveda-intro,
    #what-we-offer {
        padding-top: 6em;
        padding-bottom: 6em;
    }
}

/* MD: < 992px */
@media screen and (max-width: 991px) {

    section,
    .insider-section,
    .vision-mission-section,
    .heritage-section,
    .whats-new-section,
    .founder-section,
    .mission-section,
    .pharmacy-section,
    .contact-section,
    .offer-section,
    #ayurveda-info,
    #ayurveda-intro,
    #what-we-offer {
        padding-top: 5em !important;
        padding-bottom: 5em !important;
    }

    .container,
    .container-medium,
    .container-small {
        padding-left: 2em;
        padding-right: 2em;
        width: 100%;
        max-width: 100%;
    }
}

/* SM: < 768px */
@media screen and (max-width: 767px) {

    section,
    .insider-section,
    .vision-mission-section,
    .heritage-section,
    .whats-new-section,
    .founder-section,
    .mission-section,
    .pharmacy-section,
    .contact-section,
    .offer-section,
    #ayurveda-info,
    #ayurveda-intro,
    #what-we-offer {
        padding-top: 0em !important;
        padding-bottom: 0em !important;
    }

    .grid-layout,
    .founder-grid,
    .whats-new-layout,
    .mission-cards,
    .ayurveda-grid {
        gap: 2em !important;
    }
}

/* XS: < 576px */
@media screen and (max-width: 575px) {

    section,
    .insider-section,
    .vision-mission-section,
    .heritage-section,
    .whats-new-section,
    .founder-section,
    .mission-section,
    .pharmacy-section,
    .contact-section,
    .offer-section,
    #ayurveda-info,
    #ayurveda-intro,
    #what-we-offer {
        padding-top: 3em !important;
        padding-bottom: 3em !important;
    }

    .container,
    .container-medium,
    .container-small {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }
}

/* Fix for Grid Title Elements Not Taking Full Width and Centering */
.reveal-on-scroll.text-center {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    text-align: center;
}

.reveal-on-scroll.text-center>* {
    text-align: center;
}