/* ═══════════════════════════════════════════════════════════════════
   PRAKRITI HERBS — Landing Page Stylesheet
   Reference: Fit Fusion Ayurveda - Josh Power
   ═══════════════════════════════════════════════════════════════════ */

:root {
    --lp-primary:    #1e7f4f;
    --lp-primary-dark: #155c39;
    --lp-accent:     #caa85c;
    --lp-orange:     #f47c20;
    --lp-bg:         #f5f5f5;
    --lp-white:      #ffffff;
    --lp-black:      #1a1a1a;
    --lp-text:       #333333;
    --lp-text-light: #666666;
    --lp-radius:     10px;
    --lp-shadow:     0 4px 20px rgba(0,0,0,0.1);
    --lp-font-hindi: 'Hind', 'Outfit', sans-serif;
    --lp-container:  1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    overflow-x: hidden;
    max-width: 100%;
}

body.lp-body {
    font-family: var(--lp-font-hindi);
    background: var(--lp-bg);
    color: var(--lp-text);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100vw;
}

.lp-container {
    max-width: var(--lp-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── HEADER ─────────────────────────────────────────────────────── */
.lp-header {
    background: var(--lp-white);
    border-bottom: 2px solid var(--lp-primary);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.lp-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--lp-primary);
    letter-spacing: -0.5px;
}
.lp-logo-img { max-height: 48px; }
.lp-header-right { display: flex; align-items: center; gap: 12px; }
.lp-wa-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #25d366;
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}
.lp-wa-btn:hover { background: #1ebe5c; transform: translateY(-1px); }

/* ─── STICKY MOBILE CTA BAR ──────────────────────────────────────── */
.lp-sticky-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: transparent;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 800;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.lp-sticky-bar.visible { transform: translateY(0); }

/* ─── HERO SECTION ────────────────────────────────────────────────── */
.lp-hero {
    background: var(--lp-white);
    padding: 30px 0 40px;
    border-bottom: 1px solid #e8e8e8;
}
.lp-hero-grid {
    display: grid;
    grid-template-columns: var(--desktop-grid, 1.2fr 1fr);
    gap: 40px;
    align-items: start;
}

/* Product Image */
.lp-hero-left { position: relative; }

/* Image Fire Border Wrapper */
.lp-img-fire-wrap {
    position: relative;
    border-radius: 23px;
    padding: 4px;
    overflow: hidden;
    display: block;
    contain: layout paint;
    transform: translateZ(0);
    box-shadow: 0 10px 40px rgba(30,127,79,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.lp-img-fire-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 60px rgba(30,127,79,0.35);
}
/* The spinning fire conic-gradient ring */
.lp-img-fire-wrap::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 250%; height: 250%;
    background: var(--anim-gradient, conic-gradient(
        from 0deg,
        transparent 0deg 45deg,
        #ff4500 55deg,
        #ff6a00 68deg,
        #ffd700 78deg,
        #ffffff 85deg,
        #ffd700 92deg,
        #ff6a00 102deg,
        transparent 115deg 200deg,
        #ff4500 215deg,
        #ff6a00 228deg,
        #ffd700 238deg,
        #ffffff 244deg,
        transparent 258deg 360deg
    ));
    animation: var(--anim-speed, rotateBorder 2s linear infinite);
    z-index: 0;
    will-change: transform;
}
/* Inner gradient fill behind the actual image container */
.lp-img-fire-wrap::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f0faf5, #e6f4ee);
    z-index: 1;
}
.lp-product-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: zoom-in;
    background: transparent; /* Background handled by wrapper now */
    z-index: 2; /* Sit on top of the fire border */
    height: 100%;
}
.lp-product-img {
    width: 100%;
    max-height: 560px;
    object-fit: contain;
    border-radius: 20px;
    padding: 16px;
    display: block;
    position: relative;
    z-index: 1; /* For badges to sit on top */
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
    transform-origin: center center;
}
.lp-product-img-wrap:hover .lp-product-img {
    transform: var(--img-zoom, scale(1.08));
}
.lp-img-zoom-hint {
    position: absolute;
    bottom: -40px; /* Hide initially */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 127, 79, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    pointer-events: none;
    transition: bottom 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.lp-product-img-wrap:hover .lp-img-zoom-hint {
    bottom: 20px; /* Slide up on hover */
}
.lp-rating-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: rgba(0,0,0,0.75);
    color: #ffd700;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
    z-index: 2;
}
.lp-herbal-badge {
    position: absolute;
    bottom: 10px; left: 10px;
    background: var(--lp-primary);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}
.lp-trust-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 16px;
    padding: 14px;
    background: #f9fffe;
    border-radius: 10px;
    border: 1px solid #d4edda;
}
.lp-trust-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 1.2rem;
}
.lp-trust-icon small {
    font-size: 0.7rem;
    color: var(--lp-text-light);
    text-align: center;
}

/* Hero Right */
.lp-hero-breadcrumb { font-size: 0.75rem; color: var(--lp-text-light); margin-bottom: 10px; }
.lp-hero-h1 {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--lp-black);
    line-height: 1.3;
    margin-bottom: 12px;
}
.lp-hero-sub {
    font-size: 0.9rem;
    color: var(--lp-text-light);
    margin-bottom: 14px;
    line-height: 1.6;
}
.lp-stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.lp-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; }
.lp-reviews-count { font-size: 0.82rem; color: var(--lp-text-light); }

/* Price */
.lp-price-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.lp-offer-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--lp-primary);
}
.lp-price-right { display: flex; flex-direction: column; gap: 4px; }
.lp-old-price { font-size: 0.9rem; color: var(--lp-text-light); }
.lp-discount-badge {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Timer */
.lp-timer-wrap {
    background: #fff8e7;
    border: 2px solid var(--lp-accent);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
}
.lp-timer-label { font-size: 0.8rem; font-weight: 600; color: #c0392b; margin-bottom: 8px; }
.lp-timer { display: flex; align-items: center; gap: 8px; }
.lp-timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--lp-black);
    color: #ffd700;
    padding: 8px 14px;
    border-radius: 8px;
    min-width: 52px;
}
.lp-timer-block span { font-size: 1.5rem; font-weight: 800; line-height: 1; }
.lp-timer-block small { font-size: 0.6rem; color: #aaa; margin-top: 2px; }
.lp-timer-sep { font-size: 1.5rem; font-weight: 700; color: #c0392b; }

/* ─── FIRE / ENERGY RUNNING BORDER ────────────────────────────────── */
@keyframes rotateBorder {
    0%   { transform: translate(-50%,-50%) rotate(0deg); }
    100% { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes fireGlow {
    0%   { box-shadow: 0 0 10px var(--lp-primary), 0 0 25px var(--lp-accent), 0 0 50px var(--lp-secondary), 0 -4px 20px rgba(255,69,0,0.3); }
    25%  { box-shadow: 0 0 18px var(--lp-accent), 0 0 40px var(--lp-primary), 0 0 70px var(--lp-secondary), 0 -6px 30px rgba(255,200,0,0.4); }
    50%  { box-shadow: 0 0 12px var(--lp-secondary), 0 0 30px var(--lp-accent), 0 0 60px var(--lp-primary), 0 -4px 25px rgba(255,100,0,0.3); }
    75%  { box-shadow: 0 0 20px var(--lp-primary), 0 0 45px var(--lp-secondary), 0 0 80px var(--lp-accent), 0 -8px 35px rgba(255,69,0,0.4); }
    100% { box-shadow: 0 0 10px var(--lp-primary), 0 0 25px var(--lp-accent), 0 0 50px var(--lp-secondary), 0 -4px 20px rgba(255,69,0,0.3); }
}
@keyframes fireFlicker {
    0%,100% { opacity: 1; }
    30%      { opacity: 0.88; }
    60%      { opacity: 0.95; }
}
@keyframes btnPop {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.03); }
}
@keyframes neonBorderSpin {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* CTA */
.lp-cta-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }

/* Outer wrapper — clips the spinning fire ring */
.lp-btn-primary-wrap {
    position: relative;
    border-radius: 13px;
    padding: 3px;
    overflow: hidden;
    display: block;
    /* contain prevents inner 350% pseudo-element from leaking outside */
    contain: layout paint;
    transform: translateZ(0);
    animation: fireGlow 1.5s ease-in-out infinite, btnPop 2.5s ease-in-out infinite, fireFlicker 0.8s ease-in-out infinite;
}
/* The spinning fire conic-gradient ring */
.lp-btn-primary-wrap::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 350%; height: 350%;
    background: var(--anim-gradient, conic-gradient(
        from 0deg,
        transparent 0deg 45deg,
        #ff4500 55deg,
        #ff6a00 68deg,
        #ffd700 78deg,
        #ffffff 85deg,
        #ffd700 92deg,
        #ff6a00 102deg,
        transparent 115deg 200deg,
        #ff4500 215deg,
        #ff6a00 228deg,
        #ffd700 238deg,
        #ffffff 244deg,
        transparent 258deg 360deg
    ));
    animation: var(--anim-speed, rotateBorder 1.4s linear infinite);
    z-index: 0;
    will-change: transform;
}
/* Inner gradient fill */
.lp-btn-primary-wrap::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 10px;
    background: var(--btn-bg, linear-gradient(135deg, #c0392b 0%, #e74c3c 30%, #f47c20 65%, #1e7f4f 100%));
    background-size: 200% 200%;
    animation: neonBorderSpin 2s ease infinite;
    z-index: 1;
}
/* The actual button */
.lp-btn-primary {
    position: relative;
    z-index: 2;
    background: var(--btn-bg, transparent);
    color: var(--btn-text, #fff);
    border: none;
    border-radius: var(--btn-radius, 10px);
    padding: 15px 28px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    font-family: var(--lp-font-hindi);
    text-align: center;
    width: 100%;
    display: block;
    transition: all 0.3s ease;
    text-shadow: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.lp-btn-primary:hover {
    letter-spacing: 0.8px;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}
.lp-btn-whatsapp {
    display: block;
    background: #fff;
    color: #25d366;
    border: 2px solid #25d366;
    border-radius: 10px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    font-family: var(--lp-font-hindi);
}
.lp-btn-whatsapp:hover { background: #25d366; color: #fff; }
.lp-delivery-info {
    font-size: 0.8rem;
    color: var(--lp-text-light);
    background: #f9f9f9;
    padding: 10px 14px;
    border-radius: 8px;
    line-height: 1.8;
}

/* ─── SECTION TITLES ──────────────────────────────────────────────── */
.lp-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--lp-black);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.lp-section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50px; height: 3px;
    background: var(--lp-primary);
    border-radius: 2px;
}
.lp-title-center { text-align: center; }
.lp-title-center::after { left: 50%; transform: translateX(-50%); }

/* ─── BENEFITS SECTION ────────────────────────────────────────────── */
.lp-benefits {
    background: var(--lp-white);
    padding: 50px 0;
    border-top: 1px solid #eee;
}
.lp-benefits-content {
    max-width: 820px;
    font-size: 0.95rem;
    color: var(--lp-text);
    line-height: 1.9;
}
.lp-benefits-content p { margin-bottom: 14px; }

/* ─── BEFORE / AFTER ──────────────────────────────────────────────── */
.lp-ba {
    background: var(--lp-bg);
    padding: 50px 0;
}
.lp-ba-grid {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 20px;
    align-items: center;
}
.lp-ba-arrow {
    font-size: 2rem;
    color: var(--lp-primary);
    text-align: center;
    font-weight: 900;
}
.lp-ba-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    overflow: hidden;
    box-shadow: var(--lp-shadow);
    transition: transform 0.3s;
}
.lp-ba-card:hover { transform: translateY(-4px); }
.lp-ba-img-wrap {
    position: relative;
    overflow: hidden;
    height: 250px;
}
.lp-ba-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.lp-ba-card:hover .lp-ba-img-wrap img { transform: scale(1.06); }
.lp-ba-label {
    position: absolute;
    top: 10px; left: 10px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}
.lp-ba-label-before { background: #e74c3c; color: #fff; }
.lp-ba-label-after  { background: var(--lp-primary); color: #fff; }
.lp-ba-caption {
    text-align: center;
    padding: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--lp-text);
}
.lp-ba-extra { margin-top: 30px; font-size: 0.95rem; }

/* ─── FEATURES DARK CARD ──────────────────────────────────────────── */
.lp-features {
    background: var(--lp-white);
    padding: 50px 0;
}
.lp-features-dark-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.lp-features-dark-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(202,168,92,0.15), transparent);
    border-radius: 50%;
}
.lp-features-question {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.4;
}
.lp-features-question span {
    display: block;
    color: var(--lp-accent);
    font-size: 1rem;
    margin-top: 8px;
}
.lp-features-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.lp-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(202,168,92,0.2);
    border-radius: 10px;
    padding: 12px 14px;
    transition: 0.3s;
}
.lp-feature-item:hover {
    background: rgba(202,168,92,0.1);
    border-color: var(--lp-accent);
    transform: translateY(-2px);
}
.lp-feature-icon { font-size: 1.3rem; flex-shrink: 0; }
.lp-feature-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: #f0e6d0;
    line-height: 1.3;
}

/* ─── GOVERNMENT APPROVED ─────────────────────────────────────────── */
.lp-gov {
    background: var(--lp-bg);
    padding: 50px 0;
}
.lp-gov-desc {
    text-align: center;
    color: var(--lp-text-light);
    margin-bottom: 30px;
    font-size: 0.95rem;
}
.lp-cert-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.lp-cert-item {
    background: var(--lp-white);
    border-radius: 12px;
    padding: 16px;
    width: 140px;
    text-align: center;
    cursor: pointer;
    box-shadow: var(--lp-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}
.lp-cert-item:hover { transform: translateY(-5px) scale(1.04); box-shadow: 0 12px 30px rgba(0,0,0,0.15); }
.lp-cert-item img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    border-radius: 6px;
}
.lp-cert-item p { font-size: 0.72rem; margin-top: 8px; font-weight: 600; color: var(--lp-text); }

/* ─── REVIEWS ──────────────────────────────────────────────────────── */
.lp-reviews {
    background: var(--lp-white);
    padding: 50px 0;
}
.lp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}
.lp-review-card {
    background: var(--lp-bg);
    border-radius: 12px;
    padding: 18px;
    border: 1px solid #e8e8e8;
    transition: 0.3s;
}
.lp-review-card:hover { box-shadow: var(--lp-shadow); transform: translateY(-3px); }
.lp-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
}
.lp-review-avatar {
    width: 42px; height: 42px;
    background: var(--lp-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.lp-review-name { font-weight: 700; font-size: 0.9rem; }
.lp-review-stars { color: #f5a623; font-size: 1rem; letter-spacing: 2px; font-weight: 700; }
.lp-verified-badge {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--lp-primary);
    background: #e8f5ee;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
    font-weight: 600;
}
.lp-review-avatar-img {
    width: 42px; height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--lp-primary);
}
.lp-review-text { font-size: 0.88rem; color: var(--lp-text); line-height: 1.6; }

/* ─── EXTRA CONTENT ───────────────────────────────────────────────── */
.lp-extra { padding: 40px 0; }

/* ─── FINAL CTA ────────────────────────────────────────────────────── */
.lp-final-cta {
    background: linear-gradient(135deg, var(--lp-primary-dark), var(--lp-primary));
    padding: 60px 20px;
}
.lp-final-cta-inner { text-align: center; }
.lp-final-cta h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.lp-final-cta p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 28px; }
.lp-btn-cta-white {
    background: var(--lp-white);
    color: var(--lp-primary);
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    font-family: var(--lp-font-hindi);
    transition: transform 0.3s;
    animation: neonPulse 2s ease-in-out infinite, btnPop 2.5s ease-in-out infinite;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.lp-btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); background: #f0faf5; }

/* ─── FOOTER ──────────────────────────────────────────────────────── */
.lp-footer {
    background: #111;
    padding: 50px 0 20px;
    color: #aaa;
}
.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.lp-footer-logo { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.lp-footer-brand p { font-size: 0.85rem; line-height: 1.8; }
.lp-footer-links h4,
.lp-footer-contact h4 { color: #fff; font-size: 0.95rem; margin-bottom: 12px; }
.lp-footer-links { display: flex; flex-direction: column; gap: 8px; }
.lp-footer-links a { color: #aaa; text-decoration: none; font-size: 0.85rem; transition: 0.2s; }
.lp-footer-links a:hover { color: var(--lp-accent); }
.lp-footer-contact p { font-size: 0.85rem; margin-bottom: 6px; }
.lp-footer-contact a { color: var(--lp-accent); text-decoration: none; }
.lp-footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #555;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ─── ORDER MODAL ─────────────────────────────────────────────────── */
.lp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(5px);
    z-index: 9990;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}
.lp-modal-overlay.active { display: flex; }
.lp-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 560px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    padding: 28px;
    animation: modalIn 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
}
@keyframes modalIn { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lp-modal-close {
    position: absolute;
    top: 14px; right: 16px;
    background: #f0f0f0;
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: 0.2s;
}
.lp-modal-close:hover { background: #e74c3c; color: #fff; }
.lp-modal-header h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 4px; }
.lp-modal-header p { color: var(--lp-text-light); font-size: 0.85rem; }
.lp-modal-price-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0faf5;
    border-radius: 10px;
    padding: 10px 16px;
    margin: 14px 0;
    border: 1px solid #c3e6cb;
}
.lp-modal-price-bar span { color: var(--lp-primary); font-size: 1.4rem; font-weight: 900; }
.lp-modal-price-bar s { color: #999; font-size: 0.85rem; }
.lp-modal-badge { background: #e74c3c; color: #fff; padding: 2px 10px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; }

/* Form */
.lp-order-form { margin-top: 10px; }
.lp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lp-form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.lp-form-group label { font-size: 0.82rem; font-weight: 600; color: #555; }
.lp-form-group input,
.lp-form-group select,
.lp-form-group textarea {
    padding: 11px 13px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 0.88rem;
    font-family: var(--lp-font-hindi);
    transition: 0.2s;
    background: #fdfdfd;
}
.lp-form-group input:focus,
.lp-form-group select:focus,
.lp-form-group textarea:focus { border-color: var(--lp-primary); outline: none; box-shadow: 0 0 0 3px rgba(30,127,79,0.1); }
.lp-form-group textarea { resize: vertical; }
.lp-form-error { background: #fde8e8; color: #c0392b; padding: 10px 14px; border-radius: 8px; font-size: 0.85rem; margin-bottom: 12px; }
.lp-btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-orange));
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--lp-font-hindi);
    transition: 0.3s;
    margin-top: 4px;
}
.lp-btn-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(30,127,79,0.3); }
.lp-btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.lp-form-note { text-align: center; font-size: 0.75rem; color: #999; margin-top: 10px; }

/* Cert Popup (reuse globals from style.css) */
.global-dimmer {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
}
.global-cert-popup {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -45%) scale(0.9);
    width: 90%; max-width: 520px;
    background: #fff;
    padding: 16px;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0; visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
    pointer-events: none;
}
.global-cert-popup img { width: 100%; border-radius: 10px; }
.global-dimmer.active, .global-cert-popup.active { opacity: 1; visibility: visible; }
.global-cert-popup.active { transform: translate(-50%, -50%) scale(1); }

/* ═══════════════════════════════════════════════════════════════════
   PRAKRITI HERBS — MOBILE-FIRST ANDROID APP QUALITY UI/UX
   Breakpoints: 480px (phone) → 768px (tablet) → 900px+ (desktop)
════════════════════════════════════════════════════════════════════ */

/* ─── FORCE SMOOTH SCROLL & TOUCH OPTIMIZATION ─────────────────── */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
* {
    -webkit-tap-highlight-color: transparent;
}
input, select, textarea, button {
    -webkit-appearance: none;
    touch-action: manipulation;
}

/* ─── TABLET (≤ 900px) ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .lp-hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .lp-hero-left { max-width: 380px; margin: 0 auto; }
    .lp-features-dark-card { grid-template-columns: 1fr; }
    .lp-features-right { grid-template-columns: 1fr 1fr; }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; }
    .lp-ba-grid { grid-template-columns: 1fr; }
    .lp-ba-arrow { display: none; }
}

/* ─── PHONE (≤ 600px) — MATERIAL DESIGN ANDROID APP FEEL ─────── */
@media (max-width: 600px) {

    /* Container */
    .lp-container { padding: 0 14px; }

    /* ── HEADER ── */
    .lp-header { position: sticky; top: 0; z-index: 900; }
    .lp-header-inner { height: 56px; }
    .lp-logo { font-size: 1.15rem; }
    .lp-logo-img { max-height: 38px; }
    .lp-wa-btn {
        padding: 7px 12px;
        font-size: 0.78rem;
        border-radius: 24px;
    }
    .lp-wa-btn svg { display: none; }

    /* ── STICKY BOTTOM BAR — App-style bottom CTA ── */
    .lp-sticky-bar {
        padding: 10px 14px;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -6px 30px rgba(0,0,0,0.18);
    }
    .lp-sticky-price { font-size: 1rem; }
    .lp-sticky-btn {
        padding: 13px 16px;
        font-size: 0.9rem;
        border-radius: 12px;
        letter-spacing: 0.3px;
    }

    /* ── HERO SECTION — Card layout ── */
    .lp-hero { padding: 16px 0 24px; }
    .lp-hero-grid { gap: 14px; }
    .lp-hero-breadcrumb { display: none; }

    .lp-hero-left {
        max-width: 100%;
        margin: 0;
    }
    .lp-product-img-wrap {
        border-radius: 20px;
        background: linear-gradient(135deg, #f0faf5, #e5f5ec);
    }
    .lp-product-img {
        max-height: 280px;
        padding: 14px;
        border-radius: 20px;
    }
    .lp-rating-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    .lp-herbal-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    .lp-trust-icons {
        padding: 10px 8px;
        border-radius: 14px;
        margin-top: 10px;
        gap: 0;
    }
    .lp-trust-icon { font-size: 1rem; }
    .lp-trust-icon small { font-size: 0.65rem; }

    /* Hero right — compact card feel */
    .lp-hero-right {
        background: #fff;
        border-radius: 20px;
        padding: 16px;
        box-shadow: 0 2px 16px rgba(0,0,0,0.07);
        border: 1px solid #e8e8e8;
    }
    .lp-hero-h1 {
        font-size: 1.15rem;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    .lp-hero-sub {
        font-size: 0.82rem;
        margin-bottom: 10px;
        line-height: 1.5;
    }
    .lp-stars-row { margin-bottom: 10px; gap: 6px; }
    .lp-stars { font-size: 1rem; }
    .lp-reviews-count { font-size: 0.75rem; }

    /* Price block */
    .lp-price-block {
        gap: 10px;
        margin-bottom: 12px;
        align-items: center;
    }
    .lp-offer-price { font-size: 1.9rem; }
    .lp-old-price { font-size: 0.82rem; }
    .lp-discount-badge {
        font-size: 0.72rem;
        padding: 2px 8px;
    }

    /* Timer — Android chip style */
    .lp-timer-wrap {
        padding: 10px 12px;
        margin-bottom: 14px;
        border-radius: 12px;
    }
    .lp-timer-label { font-size: 0.72rem; margin-bottom: 6px; }
    .lp-timer { gap: 6px; }
    .lp-timer-block {
        padding: 6px 10px;
        min-width: 44px;
        border-radius: 8px;
    }
    .lp-timer-block span { font-size: 1.2rem; }
    .lp-timer-block small { font-size: 0.55rem; }
    .lp-timer-sep { font-size: 1.2rem; }

    /* CTA Buttons — full width, big tap targets */
    .lp-cta-group { gap: 8px; margin-bottom: 10px; }
    .lp-btn-primary {
        padding: 15px 20px;
        font-size: 1rem;
        border-radius: 14px;
        letter-spacing: 0.2px;
    }
    .lp-btn-whatsapp {
        padding: 11px 20px;
        font-size: 0.88rem;
        border-radius: 14px;
    }
    .lp-delivery-info {
        font-size: 0.75rem;
        padding: 8px 12px;
        border-radius: 10px;
        line-height: 1.8;
    }

    /* ── SECTION TITLES — Material style ── */
    .lp-section-title {
        font-size: 1.3rem;
        margin-bottom: 16px;
        padding-bottom: 10px;
    }
    .lp-section-title::after { width: 36px; height: 3px; }

    /* ── SECTION PADDING ── */
    .lp-benefits  { padding: 30px 0; }
    .lp-ba        { padding: 30px 0; }
    .lp-features  { padding: 30px 0; }
    .lp-gov       { padding: 30px 0; }
    .lp-reviews   { padding: 30px 0; }
    .lp-final-cta { padding: 40px 14px; }

    /* ── BENEFITS ── */
    .lp-benefits-content {
        font-size: 0.88rem;
        line-height: 1.8;
    }

    /* ── BEFORE AFTER ── */
    .lp-ba-img-wrap { height: 200px; }
    .lp-ba-caption { font-size: 0.82rem; padding: 10px; }
    .lp-ba-extra { margin-top: 20px; font-size: 0.88rem; }

    /* ── FEATURES DARK CARD ── */
    .lp-features-dark-card {
        padding: 20px 16px;
        border-radius: 20px;
        gap: 20px;
    }
    .lp-features-question { font-size: 1.15rem; }
    .lp-features-question span { font-size: 0.88rem; }
    .lp-features-right { grid-template-columns: 1fr 1fr; gap: 10px; }
    .lp-feature-item {
        padding: 10px 10px;
        border-radius: 10px;
        gap: 8px;
    }
    .lp-feature-icon { font-size: 1.1rem; }
    .lp-feature-text { font-size: 0.78rem; }

    /* ── GOV APPROVED ── */
    .lp-gov-desc { font-size: 0.85rem; margin-bottom: 20px; }
    .lp-cert-grid { gap: 12px; }
    .lp-cert-item { width: 110px; padding: 12px; border-radius: 14px; }
    .lp-cert-item img { height: 80px; }
    .lp-cert-item p { font-size: 0.65rem; margin-top: 6px; }

    /* ── REVIEWS — Horizontal scroll on mobile ── */
    .lp-reviews-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .lp-review-card {
        border-radius: 16px;
        padding: 14px;
        border: 1px solid #e8e8e8;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .lp-review-header {
        gap: 10px;
        margin-bottom: 10px;
    }
    .lp-review-avatar,
    .lp-review-avatar-img {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .lp-review-name { font-size: 0.85rem; }
    .lp-review-stars { font-size: 0.9rem; letter-spacing: 1px; }
    .lp-verified-badge { font-size: 0.65rem; padding: 2px 7px; }
    .lp-review-text { font-size: 0.82rem; line-height: 1.6; }

    /* ── FINAL CTA ── */
    .lp-final-cta h2 { font-size: 1.35rem; margin-bottom: 8px; }
    .lp-final-cta p  { font-size: 0.88rem; margin-bottom: 20px; }
    .lp-btn-cta-white {
        padding: 14px 28px;
        font-size: 0.95rem;
        border-radius: 50px;
    }

    /* ── FOOTER ── */
    .lp-footer { padding: 36px 0 70px; } /* 70px bottom padding for sticky bar */
    .lp-footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .lp-footer-logo { font-size: 1.1rem; margin-bottom: 8px; }
    .lp-footer-brand p { font-size: 0.8rem; }
    .lp-footer-links h4,
    .lp-footer-contact h4 { font-size: 0.88rem; margin-bottom: 8px; }
    .lp-footer-links a,
    .lp-footer-contact p { font-size: 0.8rem; }
    .lp-footer-bottom { font-size: 0.72rem; padding-top: 14px; }

    /* ── ORDER MODAL — Bottom sheet style on mobile ── */
    .lp-modal-overlay {
        align-items: flex-end;
        padding: 0;
        background: rgba(0,0,0,0.55);
    }
    .lp-modal {
        border-radius: 24px 24px 0 0;
        max-width: 100%;
        width: 100%;
        max-height: 92vh;
        padding: 20px 16px 24px;
        animation: sheetUp 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }
    @keyframes sheetUp {
        from { transform: translateY(100%); opacity: 0.5; }
        to   { transform: translateY(0);   opacity: 1; }
    }

    /* Bottom sheet drag handle */
    .lp-modal::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        background: #ddd;
        border-radius: 4px;
        margin: 0 auto 16px;
    }
    .lp-modal-close {
        top: 10px;
        right: 14px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    .lp-modal-header h3 { font-size: 1.1rem; }
    .lp-modal-header p  { font-size: 0.8rem; }
    .lp-modal-price-bar {
        padding: 8px 12px;
        border-radius: 10px;
        margin: 10px 0;
    }
    .lp-modal-price-bar span { font-size: 1.25rem; }
    .lp-form-row { grid-template-columns: 1fr; gap: 0; }
    .lp-form-group { margin-bottom: 10px; }
    .lp-form-group label { font-size: 0.78rem; }
    .lp-form-group input,
    .lp-form-group select,
    .lp-form-group textarea {
        padding: 13px 12px;
        font-size: 0.92rem;
        border-radius: 10px;
    }
    .lp-form-group textarea { rows: 2; }
    .lp-btn-submit {
        padding: 15px;
        font-size: 0.95rem;
        border-radius: 12px;
        margin-top: 6px;
    }
    .lp-form-note { font-size: 0.7rem; }

    /* ── CERT POPUP ── */
    .global-cert-popup { width: 94%; }
}

/* ─── EXTRA SMALL (≤ 380px — compact phones) ─────────────────────── */
@media (max-width: 380px) {
    .lp-hero-h1 { font-size: 1.05rem; }
    .lp-offer-price { font-size: 1.6rem; }
    .lp-timer-block { min-width: 38px; padding: 5px 8px; }
    .lp-timer-block span { font-size: 1.05rem; }
    .lp-features-right { grid-template-columns: 1fr; }
    .lp-cert-item { width: 95px; }
    .lp-modal-price-bar span { font-size: 1.1rem; }
}

/* ─── LANDSCAPE PHONE (≤ 600px height) ──────────────────────────── */
@media (max-height: 600px) and (max-width: 900px) {
    .lp-modal { max-height: 85vh; }
    .lp-product-img { max-height: 200px; }
}

/* ─── ACTIVE STATE RIPPLE — Android material touch feedback ────── */
.lp-btn-primary:active,
.lp-btn-whatsapp:active,
.lp-btn-submit:active,
.lp-sticky-btn:active,
.lp-btn-cta-white:active {
    transform: scale(0.97);
    opacity: 0.92;
    transition: transform 0.1s, opacity 0.1s;
}

/* ─── GLOBAL OVERFLOW-SAFE IMAGES & TEXT ──────────────────────────── */
img, video, iframe {
    max-width: 100%;
    height: auto;
}
p, span, h1, h2, h3, h4 {
    overflow-wrap: break-word;
    word-break: break-word;
}
.lp-reviews { overflow: hidden; }
.lp-features { overflow: hidden; }
.lp-ba { overflow: hidden; }

/* ─── MOBILE STRICT OVERFLOW LOCK ──────────────────────────────── */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    section, header, footer, .lp-hero, .lp-features, .lp-ba, .lp-reviews {
        max-width: 100%;
        overflow-x: hidden;
    }
    /* Reviews grid — minmax must not exceed viewport on 320px phones */
    .lp-reviews-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
}


/* ─── VISITOR COUNTER ──────────────────────────────────────────────── */
.lp-visitor-counter {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #f0faf5;
    border: 1.5px solid #c3e6cb;
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1e7f4f;
    white-space: nowrap;
}
.lp-visitor-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #1e7f4f;
    display: inline-block;
    animation: dotPulse 1.4s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes dotPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(30,127,79,0.5); transform: scale(1); }
    50%      { box-shadow: 0 0 0 6px rgba(30,127,79,0); transform: scale(1.15); }
}

/* ─── FAKE NOTIFICATION POPUP ─────────────────────────────────────── */
/* Notification slides in using transform — does NOT affect layout flow */
@keyframes fnpSlideIn {
    from { transform: translateX(-340px); }
    to   { transform: translateX(0); }
}
@keyframes fnpSlideOut {
    from { transform: translateX(0); }
    to   { transform: translateX(-340px); }
}
.fnp-popup {
    position: fixed;
    bottom: 80px;
    left: 16px;
    width: min(290px, calc(100vw - 32px));
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9980;
    border-left: 4px solid #1e7f4f;
    /* Hidden off-screen with transform instead of left: -320px */
    transform: translateX(-340px);
    transition: transform 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
    /* Ensure it never causes page overflow */
    pointer-events: none;
}
.fnp-popup.fnp-show {
    transform: translateX(0);
    pointer-events: auto;
}
.fnp-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    background: #f0faf5;
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fnp-body { flex: 1; }
.fnp-title { font-size: 0.85rem; color: #1a1a1a; line-height: 1.3; }
.fnp-prod { font-size: 0.78rem; color: #1e7f4f; font-weight: 700; margin-top: 2px; }
.fnp-time { font-size: 0.72rem; color: #999; margin-top: 3px; }

/* ─── IMAGE ZOOM POPUP ────────────────────────────────────────────── */
.lp-img-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}
.lp-img-popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.lp-img-popup-box {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.lp-img-popup-overlay.active .lp-img-popup-box {
    transform: scale(1);
}
.lp-img-popup-box img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    background: #fff; /* In case the image is transparent */
}
.lp-img-popup-close {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #fff;
    color: #111;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
}
.lp-img-popup-close:hover {
    transform: scale(1.1);
    background: #f0f0f0;
}
.lp-img-popup-caption {
    text-align: center;
    color: #fff;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

