/* Artham Healthcare — Premium B12 Brand Design System */
@import url('brand-tokens.css');
@import url('https://fonts.googleapis.com/css2?family=Hind+Vadodara:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&family=Noto+Sans+Gujarati:wght@400;500;600;700&family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

/* Legacy token block moved to brand-tokens.css */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: var(--bg-soft);
    color: var(--text-secondary);
    font-family: 'Hind Vadodara', 'Noto Sans Gujarati', 'Noto Sans Devanagari', 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand-font {
    font-family: 'Inter', 'Noto Sans Gujarati', 'Noto Sans Devanagari', sans-serif;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── Header — White sticky ── */
.site-header {
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border);
}

.site-header__top {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.site-header__row {
    max-width: var(--container);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    text-decoration: none;
    min-width: 0;
}
.site-logo:hover { color: var(--text-primary); }

.site-logo__mark {
    flex-shrink: 0;
    background: var(--bg-white);
    border-radius: 50%;
    padding: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    line-height: 0;
    overflow: hidden;
    border: 1px solid var(--border);
}

.site-logo__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}

.site-logo__img--full {
    width: 48px;
    height: 48px;
    object-fit: cover;
    display: block;
    border: 0;
    border-radius: 50%;
    background: var(--bg-white);
}

.site-logo__textblock { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.site-logo__textblock--compact .site-logo__tagline { font-size: 11px; line-height: 1.35; max-width: 200px; }
.site-logo__text {
    display: block;
    color: var(--primary);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.site-logo__tagline { display: block; color: var(--text-muted); font-size: 11px; font-weight: 500; line-height: 1.35; }

.site-header__end {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: auto;
}

.lang-switch {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    background: var(--bg-soft);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    padding: 3px;
    gap: 2px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
    line-height: 1.2;
}

.lang-btn:hover {
    color: var(--primary);
    background: rgba(31, 59, 130, 0.06);
}

.lang-btn.active {
    background: var(--emerald);
    color: var(--white);
}
.site-nav { display: flex; gap: 4px; flex: 1; justify-content: center; }
.site-nav a {
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.site-nav a:hover,
.site-nav a.active {
    background: var(--accent-light);
    color: var(--primary);
}

.header-order-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    box-shadow: var(--shadow-sm);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.header-order-btn:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-btn);
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    cursor: pointer;
    border: none;
    border-radius: var(--radius);
    padding: 14px 28px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-primary,
.btn-green {
    background: linear-gradient(135deg, var(--emerald-light) 0%, var(--emerald) 50%, var(--emerald-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-btn);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.btn-primary:hover,
.btn-green:hover {
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(13, 92, 58, 0.38);
    filter: brightness(1.03);
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-btn);
}

.btn-green:disabled,
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.section { padding: 56px 0; }

/* ── Hero (inner pages) ── */
.hero-ayur {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-soft) 50%, rgba(31, 59, 130, 0.06) 100%);
    color: var(--text-primary);
    padding: 56px 0 64px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.hero-ayur::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 30%, rgba(31, 59, 130, 0.08) 0%, transparent 55%);
}
.hero-ayur .container { position: relative; z-index: 1; }
.hero-ayur__eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}
.hero-ayur h1 {
    color: var(--text-primary);
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero-ayur h1 span { color: var(--primary); }
.hero-ayur p { color: var(--text-secondary); max-width: 560px; font-size: 17px; margin-bottom: 28px; }
.hero-ayur--compact { padding: 44px 0 48px; }
.section--compact { padding-top: 24px; }
.about-card__heading { margin-top: 20px; font-size: 16px; font-weight: 700; color: var(--primary); }
.about-card__list { margin-top: 10px; padding-left: 20px; color: var(--text-secondary); }
.about-card__list li { margin-bottom: 8px; }
.about-card__contact { margin-top: 20px; color: var(--text-secondary); }

/* Product hero blocks */
.product-hero {
    position: relative;
    border-radius: var(--radius-card);
    min-height: 220px;
    margin: 28px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.product-hero--dna { background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important; }
.product-hero--nature { background: linear-gradient(135deg, var(--primary-dark), var(--accent)) !important; min-height: 180px; }

.dna-bg {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
}
.product-hero .badge {
    position: absolute;
    background: var(--accent);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}
.badge--1 { top: 20px; left: 20px; }
.badge--2 { top: 20px; right: 20px; }
.badge--3 { bottom: 20px; left: 50%; transform: translateX(-50%); }

.product-bottle {
    width: 90px;
    height: 130px;
    background: rgba(255,255,255,0.12);
    border-radius: 10px 10px 24px 24px;
    border: 2px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.product-bottle__label { text-align: center; color: var(--white); font-size: 13px; font-weight: 700; line-height: 1.3; }
.product-bottle__label span { display: block; }

.content-card {
    background: var(--bg-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    padding: 32px;
    margin-bottom: 24px;
}

body.page-home .content-card {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.capsules-scatter { position: absolute; inset: 0; pointer-events: none; }
.capsule {
    position: absolute;
    width: 28px;
    height: 14px;
    background: rgba(46, 139, 87, 0.5);
    border-radius: 50px;
    transform: rotate(var(--r, 0deg));
    opacity: 0.6;
}
.capsule:nth-child(1) { top: 20%; left: 15%; }
.capsule:nth-child(2) { top: 30%; right: 20%; }
.capsule:nth-child(3) { bottom: 25%; left: 25%; }
.capsule:nth-child(4) { bottom: 20%; right: 15%; }

.feature-block { margin: 18px 0; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.feature-title { font-weight: 700; color: var(--primary); display: block; margin-bottom: 6px; font-size: 15px; }

.data-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.data-table th, .data-table td { border: 1px solid var(--border-strong); padding: 12px 14px; text-align: left; }
.data-table th { background: var(--bg-soft); color: var(--primary); font-weight: 600; }

/* FAQ accordion */
.faq-item { margin: 0 0 10px; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-white); }
.faq-item summary,
.faq-q {
    font-weight: 600;
    color: var(--primary);
    font-size: 15px;
    padding: 16px 20px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--bg-white);
    transition: background 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: var(--primary);
    flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { background: var(--bg-soft); }
.faq-a { color: var(--text-secondary); font-size: 14px; padding: 0 20px 16px; line-height: 1.65; }

/* Offer price */
body:not(.page-home) .offer-section { text-align: center; margin: 28px 0; }
body:not(.page-home) .offer-price { color: var(--primary) !important; font-size: 18px; font-weight: 600; }
body:not(.page-home) .offer-price strong { font-size: 28px; color: var(--primary); }
body:not(.page-home) .offer-price--premium { position: relative; display: inline-block; padding: 20px 32px; }
body:not(.page-home) .offer-price__amount { font-size: 48px; font-weight: 800; color: var(--primary); line-height: 1; }
body:not(.page-home) .offer-price__text { font-size: 18px; color: var(--primary); }
body:not(.page-home) .offer-price__aurora {
    position: absolute;
    inset: -4px;
    background: radial-gradient(circle, rgba(31, 59, 130, 0.08) 0%, transparent 70%);
    border-radius: var(--radius);
    z-index: -1;
}

/* CTA Banner */
body:not(.page-home) .cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%) !important;
    border-radius: var(--radius-card);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: var(--shadow-lg);
}
body:not(.page-home) .cta-banner__text h2 { color: var(--white) !important; font-size: clamp(18px, 3vw, 24px); margin-bottom: 8px; }
body:not(.page-home) .cta-banner__text p { color: rgba(255,255,255,0.85); font-size: 15px; }

/* Order form */
.order-section { padding: 10px 0; }
.order-section .section-title,
.order-card-title {
    color: var(--primary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}
.timer-text { text-align: center; color: var(--accent); font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.countdown-timer { text-align: center; font-size: 28px; font-weight: 800; color: var(--primary); margin-bottom: 20px; }
.order-urgency { text-align: center; color: var(--primary); font-weight: 600; font-size: 15px; margin-bottom: 12px; }

.form-group { margin-bottom: 16px; }
.form-group label {
    color: var(--primary);
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    display: block;
}
.form-group--center { text-align: center; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    background: var(--bg-white);
    color: var(--text-primary);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(31, 59, 130, 0.12);
}
.form-group textarea { min-height: 90px; resize: vertical; }

.btn-order, .btn-order--orange {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    color: var(--white) !important;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-btn);
    font-family: inherit;
    position: relative;
    overflow: hidden;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-order::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.btn-order:hover {
    background: var(--accent) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 139, 87, 0.32);
}
.btn-order:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.order-help { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 14px; }
.order-card--narrow { max-width: 520px; margin-left: auto; margin-right: auto; }

.form-message { border-radius: var(--radius-sm); padding: 16px; font-size: 14px; }
.form-message.success { background: var(--accent-light); color: var(--accent); }
.form-message.show { display: block; }

/* Reviews */
.reviews-section { margin-top: 28px; }
.reviews-card h3 { color: var(--primary); font-size: 22px; margin-bottom: 24px; text-align: center; font-weight: 700; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 20px; }
.review-item {
    background: var(--bg-white);
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
}
.review-item:hover { box-shadow: var(--shadow-md); }
.review-item.empty { color: var(--text-muted); text-align: center; grid-column: 1 / -1; padding: 26px; margin: 0; }
.review-item__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.review-item__who { display: flex; align-items: center; gap: 12px; min-width: 0; }
.review-item__avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.review-item__avatar--photo { object-fit: cover; display: block; background: var(--bg-soft); }
.review-item__name { color: var(--text-primary); font-weight: 700; font-size: 14px; line-height: 1.3; }
.review-item__verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-light);
    padding: 2px 8px;
    border-radius: 50px;
}
.review-stars { color: var(--primary); font-size: 16px; font-weight: 700; letter-spacing: 1px; white-space: nowrap; flex-shrink: 0; }
.review-item__text { color: var(--text-secondary); font-size: 15px; line-height: 1.6; margin: 0; }
.reviews-actions { text-align: center; margin-top: 24px; }
.reviews-actions .btn-order { width: auto; min-width: 200px; padding-left: 32px; padding-right: 32px; }
.review-form-msg { margin-top: 12px; font-size: 14px; font-weight: 600; text-align: center; }

.rating-stars {
    cursor: pointer;
    gap: 8px;
    font-size: 28px;
    display: inline-flex;
    justify-content: center;
    user-select: none;
    vertical-align: middle;
}
.rating-stars span { color: #D1D9E6; transition: color 0.15s; line-height: 1; outline: none; }
.rating-stars span.active,
.rating-stars span.hover { color: var(--primary); }
.star-hint { color: var(--text-muted); margin-top: 4px; font-size: 13px; }

/* Modal */
.modal-bg {
    z-index: 10000;
    backdrop-filter: blur(4px);
    background: rgba(15, 36, 84, 0.45);
    justify-content: center;
    align-items: center;
    padding: 16px;
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    animation: modalBgIn 0.2s ease;
}
.modal-bg[hidden] { display: none !important; }

body.modal-open { overflow: hidden; touch-action: none; }
html.modal-open { overflow: hidden; }
body.modal-open .contact-float,
body.modal-open .home-fixed-order-btn,
body.modal-open .fixed-order-btn,
body.modal-open .mobile-sticky-bar { opacity: 0; visibility: hidden; pointer-events: none; }

.review-modal {
    background: var(--bg-white);
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    width: 100%;
    max-width: 560px;
    height: var(--review-modal-h, min(760px, calc(100dvh - 24px)));
    max-height: var(--review-modal-h, min(760px, calc(100dvh - 24px)));
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.24s ease;
}

.review-modal .modal__header {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    display: flex;
}
.review-modal .modal__title { color: var(--primary); margin: 0; font-size: 18px; font-weight: 700; line-height: 1.3; }
.review-modal .modal__close {
    width: 36px;
    height: 36px;
    color: var(--text-muted);
    cursor: pointer;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    justify-content: center;
    align-items: center;
    transition: background 0.15s, color 0.15s;
    display: flex;
    flex-shrink: 0;
    padding: 0;
}
.review-modal .modal__close:hover { color: var(--primary); background: var(--border); }

.review-modal .modal__body {
    overscroll-behavior: contain;
    min-height: 0;
    padding: 22px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.review-modal .form-group label { color: var(--primary); }
.review-modal .form-group input[type="text"],
.review-modal .form-group input[type="tel"],
.review-modal .form-group textarea,
.review-modal .form-group input[type="file"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    background: var(--bg-white);
    color: var(--text-primary);
    box-sizing: border-box;
}
.review-modal .form-group textarea { min-height: 120px; height: 120px; resize: vertical; }
.review-modal .form-group input:focus,
.review-modal .form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(31, 59, 130, 0.12);
}
.review-modal .modal__footer {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    flex-shrink: 0;
    justify-content: flex-end;
    padding: 14px 22px calc(14px + env(safe-area-inset-bottom));
    display: flex;
}
.review-modal .modal__footer .btn-green { width: auto; min-width: 140px; }

@keyframes modalBgIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(10px) scale(0.985); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* Products grid */
.trust-bar {
    background: var(--bg-white);
    color: var(--text-primary);
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}
.trust-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-item__icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }

.items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.item-card {
    background: var(--bg-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}
.item-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.item-card__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--bg-soft); }
.item-card__body { padding: 22px; }
.item-card__body h3 { color: var(--primary); font-size: 18px; margin-bottom: 8px; }
.item-card__price { color: var(--primary); font-size: 22px; font-weight: 700; margin: 12px 0 16px; }
.item-card__mrp { font-size: 14px; color: var(--text-muted); margin-left: 6px; font-weight: 400; }
.item-card__btn { width: 100%; text-align: center; display: block; }

/* Footer — Dark Navy */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.78);
    padding: 48px 24px 32px;
    margin-top: 0;
    font-size: 14px;
    line-height: 1.8;
}
.site-footer a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s;
}
.site-footer a:hover { color: var(--gold); }

.site-footer--premium .site-footer__grid {
    max-width: var(--container);
    margin: 0 auto 32px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 32px;
    text-align: left;
}
.site-footer--premium .site-footer__brand { font-weight: 700; color: var(--white); font-size: 18px; margin-bottom: 8px; }
.site-footer--premium .site-footer__col h4 { color: var(--gold); font-size: 14px; margin-bottom: 12px; font-weight: 700; }
.site-footer--premium .site-footer__col ul { list-style: none; }
.site-footer--premium .site-footer__col li { margin-bottom: 8px; }
.site-footer--premium .site-footer__bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    font-size: 13px;
}
@media (max-width: 768px) {
    .site-footer--premium .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
    .site-footer--premium .site-footer__grid { grid-template-columns: 1fr; }
}

/* Fixed order buttons */
.fixed-order-btn, .home-fixed-order-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-btn);
    font-family: inherit;
    transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}
.fixed-order-btn:hover, .home-fixed-order-btn:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(46, 139, 87, 0.32);
}

/* Floating contact */
.contact-float {
    position: fixed;
    bottom: calc(24px + env(safe-area-inset-bottom));
    left: calc(20px + env(safe-area-inset-left));
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.contact-float__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px 12px 14px;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: transform 0.15s, box-shadow 0.15s;
    white-space: nowrap;
    border: none;
}
.contact-float__btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.contact-float__btn--wa { background: var(--accent); }
.contact-float__btn--call { background: var(--primary); }
.contact-float__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    flex-shrink: 0;
}
.contact-float__pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    border: 2px solid rgba(46, 139, 87, 0.45);
    animation: contactPulse 2s ease-out infinite;
    pointer-events: none;
}
@keyframes contactPulse {
    0% { transform: scale(1); opacity: 0.85; }
    70% { transform: scale(1.12); opacity: 0; }
    100% { transform: scale(1.12); opacity: 0; }
}

/* Responsive */
@media (max-width: 768px) {
    .site-header__row { flex-wrap: wrap; padding: 12px 16px; align-items: center; }
    .site-nav { order: 3; width: 100%; justify-content: center; padding-top: 6px; flex: none; }
    .site-header__end { gap: 8px; margin-left: auto; }
    .header-order-btn { padding: 8px 14px; font-size: 13px; }
    .lang-btn { padding: 6px 10px; font-size: 12px; }
    .page-home .site-header__row { flex-wrap: nowrap; }
    .page-home .site-logo__textblock--compact .site-logo__tagline { display: none; }
    .intro-grid { grid-template-columns: 1fr; }
    .intro-image { max-width: min(340px, 88vw); margin: 0 auto; }
    .symptoms-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-banner { flex-direction: column; text-align: center; }
    .items-grid { grid-template-columns: 1fr; }
    .content-card { padding: 22px 18px; }
    body:not(.page-home) .offer-price__amount { font-size: 36px; }
    .container { padding: 0 16px; }
    .reviews-actions .btn-order { width: 100%; }
}

@media (max-width: 640px) {
    .modal-bg { padding: 10px; }
    .review-modal { border-radius: var(--radius); }
    .review-modal .modal__footer { flex-direction: column; }
    .review-modal .modal__footer .btn-green { width: 100%; }
    .reviews-grid { grid-template-columns: 1fr; }
    .review-item__top { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
    .site-logo__text { font-size: 15px; }
    .site-logo__img--full { width: 42px; height: 42px; }
    .lang-switch { padding: 2px; border-radius: 8px; }
    .lang-btn { padding: 5px 7px; font-size: 10px; }
    .header-order-btn { padding: 7px 12px; font-size: 12px; }
    .page-home .site-logo__text { font-size: 13px; }
    .contact-float { left: calc(12px + env(safe-area-inset-left)); bottom: calc(16px + env(safe-area-inset-bottom)); }
    .contact-float__label { display: none; }
    .contact-float__btn { padding: 10px; border-radius: 50%; }
}

html[lang="gu"] body,
html[lang="hi"] body {
    font-family: 'Noto Sans Gujarati', 'Noto Sans Devanagari', 'Inter', sans-serif;
}
