/* GLOBAL RESET & FIXES */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    /* optional: prevents callout on long press */
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: #fcfaf5;
    color: #1a0f0a;
    padding-bottom: 110px;
    /* enough space for both fixed bars */
}

/* GLOBAL ANIMATIONS */
@keyframes colorChange {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes softBlink {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

@keyframes pulseTap {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    70% {
        transform: scale(1.4);
        opacity: 0.4;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes spinRGB {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes goldMarqueeShine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes dotTextureMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 30px 30px;
    }
}

@keyframes pulseSoft {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

/* DELIVERY & FIERY ANIMATIONS */
@keyframes deliveryMove {
    0% {
        left: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        left: 80%;
        opacity: 0;
    }
}

@keyframes fireDustRise {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes fireBallPulse {
    0% {
        transform: translate(-50%, 0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -15px) scale(1.2);
        opacity: 0.9;
    }

    100% {
        transform: translate(-50%, 0) scale(1);
        opacity: 0.5;
    }
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* HEADER WAVY ANIMATION (Green Highlighter) */
@keyframes natureColors {
    0% {
        stroke: #2E7D32;
    }

    25% {
        stroke: #827717;
    }

    50% {
        stroke: #d4af37;
    }

    75% {
        stroke: #558B2F;
    }

    100% {
        stroke: #2E7D32;
    }
}

@keyframes flowWave {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -200;
    }
}

.header-wave-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.scrolling-wrapper {
    display: flex;
    align-items: center;
    animation: scrollLeft 20s linear infinite;
    will-change: transform;
}

.scrolling-item {
    flex-shrink: 0;
    margin-right: 20px;
    /* spacing between images */
}

.scrolling-item img {
    height: 100px;
    /* ✅ fixed max height – full image shown */
    width: auto;
    /* maintain aspect ratio, no cropping */
    object-fit: contain;
    display: block;
}

/* Pause on hover */
.header-wave-container:hover .scrolling-wrapper {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.wavy-dot-path {
    animation: natureColors 8s infinite, flowWave 4s linear infinite;
}

.line2 {
    animation-duration: 6s, 5s;
    animation-direction: normal, reverse;
    opacity: 0.6;
}

/* CUSTOM 3D WHATSAPP BUTTON (Blue & Orange Highlighters) */
.expert-3d-btn {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 450px;
    margin: 20px auto;
    text-decoration: none;
    background: linear-gradient(145deg, #25D366, #1EAC52);
    /* Solid deep whatsapp green */
    border-radius: 16px;
    box-shadow:
        0 8px 0 #14833b,
        /* High 3D edge */
        0 15px 20px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    overflow: hidden;
    transition: all 0.15s ease;
    cursor: pointer;
    border: 2px solid #1EAC52;
}

.expert-3d-btn:active {
    transform: translateY(8px);
    box-shadow:
        0 0 0 #14833b,
        0 5px 10px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.expert-3d-btn img {
    width: 100%;
    aspect-ratio: 2/1;
    /* 1000x500 dimension styling */
    object-fit: cover;
    border-bottom: 3px solid #14833b;
    background: #fff;
}

.expert-3d-btn-text {
    padding: 18px 10px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

/* SPECIFIC SECTIONS */
.lux-capsule {
    background: #fcfcf5;
    color: #2d190a;
    padding: 10px 12px;
    border-radius: 50px;
    border: 1.5px solid #b8860b;
    font-weight: 800;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.luxury-bg {
    background: linear-gradient(-45deg, #fdfbfb, #f5e8d6, #e8d5b5, #dcb98a);
    background-size: 400% 400%;
    animation: luxuryGradient 15s ease infinite;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(92, 64, 51, 0.1);
    max-width: 500px;
    width: 100%;
    margin-bottom: 20px;
}

.buy-btn {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 16px 0;
    background: #4A2C00;
    color: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(74, 44, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulseGold 2s infinite;
}

.delivery-container {
    margin-top: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 1px dashed #d4af37;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.delivery-track {
    position: relative;
    height: 30px;
    border-bottom: 2px dashed #b8860b;
    margin: 10px 15px 5px 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.delivery-vehicle {
    position: absolute;
    bottom: -6px;
    font-size: 22px;
    animation: deliveryMove 3s linear infinite;
    z-index: 5;
}

/* ============================================================
   HERO SLIDER SYSTEM - UPDATED & CLEANED UP
   ============================================================ */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
    background: #f8f8f8;
}

.hero-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.hero-slide {
    flex: 0 0 100%;
    width: 100%;
}

.hero-slide img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
    /* Forces the image to take up 100% edge-to-edge space with no gaps */
    opacity: 1 !important;
    /* Completely locks image opacity at 100% with no fade transitions */
}

.hero-rgb-line,
.hero-dots {
    display: none;
}

/* Paste this only if the layout stays broken */
#heroThumbnails {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 3% 0 !important;
}

.hero-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s, border-color 0.2s;
    border: 2px solid transparent;
}

/* Kept golden theme accent unchanged */
.hero-thumb.active {
    opacity: 1;
    border-color: #d4af37;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    transition: background-color 0.2s;
    user-select: none;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-nav.left {
    left: 10px;
}

.slider-nav.right {
    right: 10px;
}

@media (max-width: 768px) {
    .hero-thumb {
        width: 40px;
        height: 40px;
        border-radius: 4px;
    }

    .slider-nav {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}

/* 3D Book Container */
.premium-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: #1a0f0a;
    perspective: 1500px;
}

.luxury-frame {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1/1;
    border-radius: 20px;
    padding: 6px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

.rgb-border {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, #ff0055, #ffaa00, #00ff66, #00eeff, #ff0055);
    animation: spinRGB 4s linear infinite;
    filter: blur(10px);
    z-index: 1;
}

.inner-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #1a0f0a;
    border-radius: 15px;
    z-index: 2;
    overflow: hidden;
}

.book-container {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.page {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s ease-out, opacity 0.3s ease;
    transform: translateX(100%);
}

.page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page.active {
    opacity: 1;
    z-index: 10;
    transform: translateX(0);
}

.page.exit {
    opacity: 0;
    z-index: 11;
    transform: translateX(-100%);
}

/* Videos */
.shoppable-section {
    background-color: #FCFBF9;
    padding: 40px 20px;
    width: 100%;
}

.shoppable-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.shoppable-carousel::-webkit-scrollbar {
    display: none;
}

.ugc-card {
    scroll-snap-align: center;
    flex-shrink: 0;
    width: 260px;
    height: 460px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #000;
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.15);
    transition: transform 0.3s ease;
}

.video-frame {
    width: 130%;
    height: 100%;
    margin-left: -15%;
    pointer-events: none;
}

.interaction-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    cursor: pointer;
}

.status-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    z-index: 6;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.playing .status-icon {
    opacity: 0;
}

.shop-now-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #3e2723;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 30px;
    z-index: 10;
    width: 80%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Ingredients Section */
.ingredients-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 20px;
    background-color: #1a0b05;
    color: #fdfaf5;
}

.section-title {
    font-family: 'Marcellus', serif;
    text-align: center;
    color: #c5a059;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ingredient-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 15px 10px 30px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.ingredient-carousel::-webkit-scrollbar {
    display: none;
}

.ingredient-card {
    background-color: #fcfaf5;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    scroll-snap-align: start;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid #d4af37;
    box-shadow: 0 0 12px 2px rgba(212, 175, 55, 0.6);
    transition: transform 0.3s, box-shadow 0.3s;
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px 4px rgba(255, 215, 0, 0.9);
}

.ingredient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(184, 134, 11, 0.3) 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    z-index: 0;
    pointer-events: none;
    animation: dotTextureMove 4s linear infinite;
}

.ingredient-card>div {
    position: relative;
    z-index: 1;
}

.ing-image {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid #b8860b;
    object-fit: cover;
    background: white;
    flex-shrink: 0;
}

.ing-name {
    font-family: 'Marcellus', serif;
    font-size: 1.1rem;
    color: #4a2c00;
    margin-bottom: 3px;
    font-weight: bold;
}

.ing-en {
    font-size: 0.8rem;
    line-height: 1.3;
    color: #555;
    margin-bottom: 4px;
    font-weight: 600;
}

.ing-hi {
    font-size: 0.75rem;
    color: #b8860b;
    font-style: italic;
    border-top: 1px solid rgba(184, 134, 11, 0.2);
    padding-top: 4px;
    display: block;
    font-weight: bold;
}

/* FAQs & Testimonials */
.faq-container {
    background-color: #1a0f0a;
    padding: 40px 16px;
    color: #fcfaf5;
}

.rgb-wrapper-faq {
    position: relative;
    border-radius: 12px;
    padding: 2px;
    overflow: hidden;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rgb-wrapper-faq::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0%, transparent 40%, #d4af37, #ffcc33, #b8860b, #d4af37, transparent 60%, transparent 100%);
    animation: spinRGB 4s linear infinite;
    z-index: 1;
}

.rgb-inner-faq {
    position: relative;
    background-color: #2b170b;
    border-radius: 10px;
    z-index: 2;
    overflow: hidden;
}

.faq-header {
    padding: 18px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-content-inner {
    padding: 0 18px 18px 18px;
    border-top: 1px solid #4a2e1b;
    margin-top: 5px;
    padding-top: 15px;
    font-size: 14px;
    line-height: 1.5;
    color: #d4c4b7;
}

.faq-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 15px;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(184, 134, 11, 0.3);
}

.carousel-track-text {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 16px;
    padding-bottom: 20px;
    max-width: 800px;
    margin: 0 auto;
    scroll-behavior: smooth;
}

.carousel-track-text::-webkit-scrollbar {
    display: none;
}

.testi-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    min-width: 100%;
}

/* Footer Styles */
.moocul-footer {
    background-color: #FCFAF5;
    color: #3e2723;
    position: relative;
    border-top: 4px solid #d4af37;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.moocul-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#d4af37 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    animation: marquee 30s linear infinite;
}

.footer-marquee {
    background: linear-gradient(90deg, #d4af37, #fff200, #b8860b, #fff200, #d4af37);
    background-size: 300% 100%;
    color: #1a0f0a;
    padding: 15px 0;
    font-weight: 900;
    font-size: 16px;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    animation: goldMarqueeShine 3s linear infinite;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 3;
    border-bottom: 2px solid #b8860b;
}

.footer-wrapper {
    position: relative;
    padding-bottom: 0px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-col h4 {
    color: #1b5e20;
    font-size: 20px;
    margin-bottom: 25px;
    font-family: 'Marcellus', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 8px;
    display: inline-block;
    font-weight: 900;
}

.footer-col p {
    color: #444;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.footer-col a:hover {
    color: #1b5e20;
    transform: translateX(5px);
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #1b5e20;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b5e20;
    transition: all 0.3s ease;
    text-decoration: none;
    background: transparent;
}

.footer-socials a:hover {
    background: #1b5e20;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(27, 94, 32, 0.3);
}

.footer-socials svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-bottom {
    background-color: #eaddcf;
    text-align: center;
    padding: 20px 15px 80px 15px;
    font-size: 14px;
    color: #555;
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Fiery Section */
.fiery-section {
    position: relative;
    background: radial-gradient(ellipse at bottom, #4a0d00 0%, #1f0300 50%, #0a0100 100%);
    padding: 25px 15px;
    border-radius: 0 0 20px 20px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(255, 69, 0, 0.5), inset 0 0 20px rgba(255, 69, 0, 0.4);
    overflow: hidden;
    border-bottom: 2px solid #ff4500;
    border-left: 1px solid rgba(255, 69, 0, 0.3);
    border-right: 1px solid rgba(255, 69, 0, 0.3);
}

.fiery-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 140, 0, 0.9) 1.5px, transparent 3px), radial-gradient(circle at 80% 30%, rgba(255, 69, 0, 1) 2.5px, transparent 4px), radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.8) 2px, transparent 3px), radial-gradient(circle at 70% 60%, rgba(255, 50, 0, 0.7) 3px, transparent 5px), radial-gradient(circle at 10% 20%, rgba(255, 100, 0, 1) 1.5px, transparent 3px);
    background-size: 150px 150px;
    animation: fireDustRise 5s infinite linear;
    z-index: 1;
}

.fiery-texture.layer2 {
    background-size: 200px 200px;
    animation: fireDustRise 3s infinite linear;
    opacity: 0.6;
    top: -50%;
}

.fire-ball {
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 250px;
    height: 120px;
    background: radial-gradient(ellipse, rgba(255, 69, 0, 0.9) 0%, rgba(255, 140, 0, 0.5) 40%, transparent 70%);
    filter: blur(15px);
    z-index: 1;
    animation: fireBallPulse 2.5s infinite ease-in-out;
}

.fiery-content-wrapper {
    position: relative;
    z-index: 2;
}

.fiery-title {
    font-size: 20px;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 0 10px #ff4500, 0 0 20px #ff0000, 0 0 30px #ff8c00;
    font-weight: 900;
}

.fiery-subtitle {
    color: #ffd700;
    font-size: 15px;
    display: block;
    margin-top: 4px;
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow: 0 0 10px #ff4500, 0 0 15px #ff8c00;
}

/* PRICING WIDGET STYLES (OVERRIDDEN BELOW FOR VIDEO) */
.pricing-widget-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 24px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.pw-timer-badge {
    background: #FEF2F2;
    color: #DC2626;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    border: 1px solid #FECACA;
}

.pw-social-proof {
    font-size: 13px;
    color: #E65100;
    font-weight: 700;
    margin-top: 10px;
}

.pw-offer-title {
    font-size: 15px;
    font-weight: 900;
    color: #2E7D32;
    margin-top: 6px;
}

/* ADDED CSS FOR SHOPPABLE VIDEO CAROUSEL */
.shop-vid-wrapper {
    display: flex;
    gap: 12px;
    margin: 20px 0;
    width: 100%;
    box-sizing: border-box;
}

.shop-vid-box {
    flex: 1;
    min-width: 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 480px;
    background: #000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: 0.3s;
    box-sizing: border-box;
}

.shop-vid-box.active {
    border-color: #2E7D32;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(46, 125, 50, 0.3);
}

.bg-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.vid-badge {
    position: absolute;
    top: 12px;
    left: 10px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    color: #111;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.vid-badge.popular {
    background: #2E7D32;
    color: #fff;
}

.vid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: 50px 12px 12px 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
}

.vid-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 15px 10px;
    color: #fff;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.vid-title {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 5px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.vid-desc {
    font-size: 12px;
    color: #f0f0f0;
    margin-bottom: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.vid-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.vid-mrp {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    font-weight: 600;
}

.vid-price {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.vid-buy-btn {
    display: block;
    width: 100%;
    background: #3E2723;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 0;
    border-radius: 8px;
    text-transform: uppercase;
    transition: 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.vid-buy-btn:active {
    transform: scale(0.96);
}

.pw-delivery {
    margin-top: 20px;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #EEEEEE;
}

.pw-delivery-title {
    font-size: 13px;
    font-weight: 800;
    color: #2E7D32;
    margin-bottom: 8px;
}

.pw-delivery-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 20px;
}

.pw-delivery-desc {
    font-size: 12px;
    color: #795548;
    font-weight: 600;
    margin-top: 6px;
}

.animate-blink {
    animation: pulseSoft 2s infinite;
}

/* ============================================================
   PACK SIZE SECTION - CENTRALISED VERSION
   ============================================================ */

/* 1. New Outer Wrapper to center the entire block on the page */
.pzs-outer-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 40px 0;
    background-color: #fcfaf5;
    /* Matches your body bg */
}

/* 2. Main Container – default for mobile (full width) */
.pzs-section-container {
    width: 100%;
    max-width: 1100px;
    padding: 0%;
    font-family: 'Montserrat', sans-serif;
}

/* On desktop: limit container width to show 2 full cards + partial third */
@media (min-width: 1024px) {
    .pzs-section-container {
        max-width: 300px;
        /* 2 × 125px + gap 20px + ~30px partial = 300px */
        overflow: hidden;
        /* Clip the excess (partial third card) */
    }
}

.pzs-label {
    font-size: 18px;
    color: #5d4037;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: left;
    /* Keeps label aligned with the start of the cards */
}

/* 3. Scroller with Centering logic */
.pzs-scroller {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 30px 10px 40px 10px;
    scrollbar-width: thin;
    scrollbar-color: #d4af37 #fcfaf5;
    justify-content: flex-start;
    /* Always start from left, no centering */
}

/* Remove desktop centering that would break the limited width */
@media (min-width: 1024px) {
    .pzs-scroller {
        justify-content: flex-start;
    }
}

/* ===== IMPROVED CARD CONTENT – STABLE & READABLE ===== */
.pzs-card {
    position: relative;
    width: 125px;
    height: 293.8px;
    border-radius: 110px;
    border: 1.5px solid #888888;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
    justify-content: space-between;
    /* Spread content evenly */
    padding: 0.75rem 0.5rem;
}

/* Badges – repositioned slightly inside to avoid overflow */
.pzs-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 6px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 9px;
    white-space: nowrap;
    z-index: 5;
}

.pzs-badge-top {
    top: -6px;
    background: #ff8c42;
    color: white;
}

.pzs-badge-bottom {
    bottom: -6px;
    background: #d4af37;
    color: #2c1a10;
}

/* Title & subtitle – wrap but don't overflow */
.pzs-title {
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 2px;
    line-height: 1.2;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.pzs-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: #6b4c3a;
    margin-bottom: 4px;
    text-align: center;
    line-height: 1.2;
}

/* Image area – fixed small container */
.pzs-img-area {
    flex-grow: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4px 0;
    min-height: 55px;
}

.pzs-img-area img {
    max-width: 70%;
    max-height: 300%;
    width: auto;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    /* prevents dragging/clicking on image */
    user-select: none;
}

/* Price box – stacked clearly */
.pzs-price-box {
    margin: 4px 0;
    text-align: center;
}

.pzs-old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    display: block;
}

.pzs-new-price {
    font-size: 14px;
    font-weight: 800;
    color: #2e7d32;
    display: block;
    line-height: 1.2;
}

/* Extra save text (if any) – optional */
.pzs-card .pzs-badge-bottom {
    font-size: 8px;
    white-space: nowrap;
}

/* Active card highlight */
.pzs-card.pzs-active {
    background-color: #fae8df;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pzs-active .pzs-badge {
    background: #dca22a;
    color: #fff;
}

.pzs-card:hover {
    border-color: #dca22a;
}

/* Compact Buy Now Bar – sits directly above WhatsApp bar */
.pzs-checkout-bar {
    position: fixed;
    bottom: 55px;
    /* exactly the height of WhatsApp bar */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-top: 1px solid #d4af37;
    padding: 6px 12px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.pzs-checkout-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    max-width: 600px;
    margin: 0 auto;
}

/* Package image */
.pzs-checkout-image {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
    background: #f5f5f5;
    padding: 2px;
}

/* Package details */
.pzs-checkout-details {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    flex-wrap: wrap;
}

.pzs-checkout-name {
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}

.pzs-checkout-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 12px;
}

.pzs-checkout-old-price {
    text-decoration: line-through;
    color: #999;
}

.pzs-checkout-new-price {
    font-weight: 800;
    color: #2e7d32;
    font-size: 14px;
}

.pzs-checkout-save {
    background: #ffd966;
    padding: 2px 6px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 700;
    color: #2c1a10;
    white-space: nowrap;
}

/* Buy Now button - slightly larger */
.pzs-add-to-cart {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white;
    border: none;
    padding: 15px 24px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.pzs-add-to-cart:hover {
    background: linear-gradient(135deg, #1b5e20, #0a3a10);
    transform: translateY(-1px);
}

/* WhatsApp bar – fixed at very bottom with specific height */
div[style*="position:fixed; bottom:0; left:0; width:100%;"] {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 55px !important;
    /* fixed height for consistent offset */
    z-index: 9999 !important;
    background: #A0522D !important;
    padding: 0 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    box-sizing: border-box !important;
}

/* Mobile adjustments – keep same heights to avoid gaps */
@media (max-width: 768px) {
    div[style*="position:fixed; bottom:0; left:0; width:100%;"] {
        height: 55px !important;
    }

    .pzs-checkout-bar {
        bottom: 55px !important;
        padding: 15px 10px;
    }

    body {
        padding-bottom: 110px !important;
    }

    .pzs-add-to-cart {
        padding: 13px 20px;
        font-size: 14px;
    }

    .pzs-checkout-image {
        width: 30px;
        height: 30px;
    }

    .pzs-checkout-name {
        font-size: 11px;
    }

    .pzs-checkout-new-price {
        font-size: 12px;
    }
}

/* Very small screens – ensure no gap */
@media (max-width: 480px) {
    div[style*="position:fixed; bottom:0; left:0; width:100%;"] {
        height: 55px !important;
    }

    .pzs-checkout-bar {
        bottom: 55px !important;
    }

    body {
        padding-bottom: 110px !important;
    }
}

.pzs-qty-selector {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 20px;
    overflow: hidden;
}

.pzs-qty-selector button {
    background: #fff;
    border: none;
    width: 28px;
    height: 28px;
    font-size: 16px;
    cursor: pointer;
}

.pzs-qty-selector input {
    width: 40px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

.pzs-checkout-qty-sec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

/* Buttons container – below the card, same width */
.pzs-card-buttons {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

/* Button styles – thicker and more prominent */
.pzs-buy-now-btn,
.pzs-flipkart-btn {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pzs-buy-now-btn {
    background: #2e7d32;
    color: white;
    margin-bottom: 6px;
}

.pzs-buy-now-btn:hover {
    background: #1b5e20;
    transform: translateY(-1px);
}

.pzs-flipkart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2874f0;
    color: white;
}

.pzs-flipkart-btn:hover {
    background: #0e5bbf;
    transform: translateY(-1px);
}

.pzs-flipkart-btn.disabled,
.pzs-flipkart-btn:disabled {
    background: #a0a0a0;
    color: #e0e0e0;
    cursor: not-allowed;
    transform: none;
    opacity: 0.6;
}

.pzs-flipkart-btn img {
    height: 18px;
    width: auto;
    display: block;
    border-radius: 50%;
}

.pzs-flipkart-btn.disabled img,
.pzs-flipkart-btn:disabled img {
    filter: grayscale(100%);
}

.capsule {
    background: #fcfcf5;
    color: #2d190a;
    padding: 10px 12px;
    border-radius: 50px;
    border: 1.5px solid #b8860b;
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}