/* Artham Home — Mobile-first CRO landing (reference matched) */

body.page-home {
    background: #fff;
    font-family: 'Hind Vadodara', 'Noto Sans Gujarati', 'Noto Sans Devanagari', sans-serif;
    color: #374151;
    overflow-x: hidden;
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
}

body.page-home .container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ── Header mobile ── */
.site-header__top--premium {
    background: var(--brand-secondary);
    padding: 0;
}

.top-bar--mob {
    max-width: 480px;
    margin: 0 auto;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.top-bar--mob .top-bar__item {
    color: rgba(255,255,255,0.92);
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.site-header--home {
    background: #fff;
    box-shadow: 0 1px 6px rgba(0,33,71,0.08);
}

.site-header__row--mob {
    max-width: 480px;
    margin: 0 auto;
    padding: 10px 16px;
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    gap: 8px;
}

.site-logo--mob-center {
    justify-self: center;
    flex-direction: column;
    gap: 2px;
    text-align: center;
}

.site-logo__mob-text {
    font-size: 11px;
    font-weight: 800;
    color: var(--brand-secondary);
    letter-spacing: 0.06em;
    line-height: 1.1;
}

.site-logo--mob-center .site-logo__mark {
    border: none;
    box-shadow: none;
    padding: 0;
}

.site-logo--mob-center .site-logo__img--full {
    width: 42px;
    height: 42px;
}

.mob-menu-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.mob-menu-btn span {
    display: block;
    height: 2px;
    background: var(--brand-secondary);
    border-radius: 2px;
}

.mob-cart-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-accent);
    justify-self: end;
}

.mob-cart-btn__badge {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 16px;
    height: 16px;
    background: var(--brand-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mob-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 200;
}

.mob-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(280px, 85vw);
    height: 100%;
    background: #fff;
    z-index: 201;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    box-shadow: 4px 0 24px rgba(0,0,0,0.12);
}

.mob-drawer.is-open {
    transform: translateX(0);
}

.mob-drawer__inner {
    padding: 72px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mob-drawer__inner a {
    color: #374151;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 8px;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
}

.mob-drawer__inner a.active {
    color: var(--brand-accent);
}

.mob-drawer__cta {
    margin-top: 12px;
    background: var(--brand-accent) !important;
    color: #fff !important;
    text-align: center;
    border-radius: 8px !important;
    border: none !important;
}

.mob-drawer__lang {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.mob-drawer__lang a {
    flex: 1;
    text-align: center;
    font-size: 13px;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    border-bottom: 1px solid #e5e7eb !important;
}

.mob-drawer__lang a.active {
    background: #f0fdf4;
    border-color: var(--brand-accent);
}

/* ── Sections ── */
.mob-section {
    padding: 32px 0;
    background: #fff;
}

.mob-section--soft {
    background: #f8fafc;
}

.mob-heading {
    text-align: center;
    font-size: clamp(18px, 4.5vw, 22px);
    font-weight: 800;
    color: var(--brand-secondary);
    margin-bottom: 20px;
    line-height: 1.35;
}

/* ── Hero ── */
.mob-hero {
    padding: 20px 0 28px;
    background: #fff;
    text-align: center;
}

.mob-hero__title {
    font-size: clamp(20px, 5vw, 24px);
    font-weight: 800;
    color: var(--brand-secondary);
    line-height: 1.35;
    margin-bottom: 10px;
}

.mob-hero__sub {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 6px;
}

.mob-hero__product {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-accent);
    margin-bottom: 20px;
}

.mob-hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    min-height: 220px;
}

.mob-hero__icons-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
}

.mob-hero__icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    max-width: 64px;
}

.mob-hero__icon-item small {
    font-size: 9px;
    font-weight: 600;
    color: #374151;
    line-height: 1.2;
    text-align: center;
}

.mob-hero__icon-circle {
    width: 44px;
    height: 44px;
    border: 1.5px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.mob-hero__icon-circle svg {
    width: 20px;
    height: 20px;
    color: var(--brand-secondary);
}

.mob-hero__bottle-wrap {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mob-hero__bottle-wrap--center {
    justify-content: center;
    margin: 0 auto 20px;
    min-height: 260px;
}

.mob-hero__bottle {
    max-height: 320px;
    width: auto;
    max-width: min(240px, 72vw);
    min-width: 180px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    image-rendering: -webkit-optimize-contrast;
}

.mob-hero__seal {
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: var(--brand-accent);
    color: #fff;
    border-radius: 50%;
    font-size: 8px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.15;
    padding: 6px;
    box-shadow: 0 4px 12px rgba(27,94,32,0.35);
}

.mob-hero__cta {
    display: block;
    width: 100%;
    background: var(--brand-accent) !important;
    border-color: var(--brand-accent) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 14px 20px !important;
    border-radius: 8px !important;
    text-transform: none;
    letter-spacing: 0;
}

.mob-hero__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    margin-top: 16px;
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
}

/* ── Symptoms ── */
.mob-symptoms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mob-symptom {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.mob-symptom img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    min-height: 120px;
}

.mob-symptom p {
    padding: 10px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    line-height: 1.35;
    margin: 0;
}

.mob-b12-inline {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.mob-b12--intro {
    position: relative;
    background: #f9fafb;
    border-radius: 12px;
    padding: 16px;
}

.mob-b12__photo {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 12px;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.mob-b12--intro .mob-b12__badge {
    position: static;
    display: inline-block;
    margin-bottom: 12px;
    background: var(--brand-secondary);
}

/* ── Ingredients list ── */
.mob-ing-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.mob-ing-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.mob-ing-list__item img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.mob-ing-list__item h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-secondary);
    margin: 0 0 4px;
}

.mob-ing-list__item p {
    font-size: 12px;
    line-height: 1.45;
    color: #6b7280;
    margin: 0;
}

.mob-ing-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-accent);
    text-align: center;
}

.mob-checklist--benefits {
    margin-bottom: 24px;
}

.mob-doctor--card {
    background: transparent;
    color: inherit;
    padding: 0;
    text-align: left;
}

.mob-doctor--card .mob-doctor__title {
    text-align: center;
    margin-bottom: 16px;
}

.mob-doctor--card .mob-doctor__card {
    background: var(--brand-secondary);
    color: #fff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-end;
    text-align: left;
}

.mob-doctor--card .mob-doctor__body {
    flex: 1;
    min-width: 0;
}

.mob-doctor--card .mob-doctor__title {
    text-align: left;
    color: #fff;
    font-size: 16px;
    margin: 0 0 8px;
}

.mob-doctor--card .mob-doctor__name {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin: 0 0 2px;
}

.mob-doctor--card .mob-doctor__role {
    color: rgba(255,255,255,0.85);
    font-size: 11px;
    margin: 0 0 8px;
}

.mob-doctor--card .mob-doctor__img {
    width: 100px;
    height: 120px;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
    flex-shrink: 0;
    border: none;
}

.mob-doctor--card .mob-doctor__text {
    color: rgba(255,255,255,0.9);
    font-size: 11px;
    line-height: 1.45;
    margin: 0;
}

/* ── B12 Education ── */
.mob-b12 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
}

.mob-b12__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mob-b12__list li {
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    line-height: 1.45;
    color: #374151;
}

.mob-b12__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--brand-accent);
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mob-b12__visual {
    position: relative;
    text-align: center;
}

.mob-b12__visual img {
    width: 100%;
    max-width: 220px;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.mob-b12__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #dc2626;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 8px;
}

/* ── Doctor ── */
.mob-doctor {
    background: var(--brand-secondary);
    color: #fff;
    padding: 36px 0;
    text-align: center;
}

.mob-doctor__title {
    font-size: 20px;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 12px;
}

.mob-doctor__text {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.mob-doctor__card {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
    text-align: left;
}

.mob-doctor__img {
    width: 90px;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.2);
}

.mob-doctor__placeholder {
    width: 90px;
    height: 110px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
}

.mob-doctor__placeholder svg {
    width: 40px;
    height: 40px;
    color: rgba(255,255,255,0.5);
}

.mob-doctor__name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.mob-doctor__role {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

.mob-doctor__certs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
}

.mob-doctor__flags {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

/* ── Food sources ── */
.mob-food {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mob-food__item:nth-child(4),
.mob-food__item:nth-child(5) {
    grid-column: span 1;
}

.mob-food {
    grid-template-columns: repeat(2, 1fr);
}

.mob-food__item {
    text-align: center;
}

.mob-food__item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 8px;
}

.mob-food__item p {
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    line-height: 1.3;
    margin: 0;
}

/* ── Reviews ── */
.mob-reviews {
    padding: 32px 0;
    background: #fff;
}

.mob-reviews .mob-heading { margin-bottom: 12px; }

.mob-reviews__summary {
    text-align: center;
    margin-bottom: 20px;
}

.mob-reviews__score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.mob-reviews__num {
    font-size: 28px;
    font-weight: 800;
    color: var(--brand-secondary);
}

.mob-reviews__stars {
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 2px;
}

.mob-reviews__count {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
}

.mob-reviews__carousel {
    position: relative;
}

.mob-reviews__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.mob-reviews__track::-webkit-scrollbar { display: none; }

.mob-reviews__track .review-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    margin: 0;
}

.mob-reviews__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.mob-reviews__arrow {
    width: 36px;
    height: 36px;
    border: 1px solid #d1d5db;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mob-reviews__dots {
    display: flex;
    gap: 6px;
}

.mob-reviews__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    padding: 0;
    cursor: pointer;
}

.mob-reviews__dot.is-active {
    background: var(--brand-accent);
    width: 20px;
    border-radius: 4px;
}

.mob-reviews .reviews-actions {
    text-align: center;
    margin-top: 16px;
}

/* ── Ingredients ── */
.mob-ingredients {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
}

.mob-ingredient {
    text-align: center;
}

.mob-ingredient img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 8px;
    display: block;
    border: 2px solid #e5e7eb;
}

.mob-ingredient h3 {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-secondary);
    margin: 0 0 4px;
}

.mob-ingredient p {
    font-size: 10px;
    color: #6b7280;
    line-height: 1.35;
    margin: 0;
}

.mob-ing-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.mob-ing-trust span {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-accent);
    text-align: center;
}

/* ── Order / Offer ── */
.mob-order-block {
    padding: 32px 0 24px;
}

.mob-offer-title {
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.mob-offer-pack {
    position: relative;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 16px 16px;
    text-align: center;
    margin-bottom: 24px;
}

.mob-offer-ribbon {
    position: absolute;
    top: 12px;
    left: -4px;
    background: #dc2626;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    text-transform: uppercase;
}

.mob-offer-bottles {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    margin: 16px 0;
}

.mob-offer-bottles img {
    object-fit: contain;
    max-height: 90px;
}

.mob-offer-bottles--single img {
    max-height: 180px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.mob-reviews__track--stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: visible;
    scroll-snap-type: none;
}

.mob-reviews__track--stack .review-item {
    flex: none;
    width: 100%;
    scroll-snap-align: none;
}

.mob-reviews__carousel--stack .mob-reviews__nav {
    display: none;
}

.mob-reviews .reviews-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mob-offer-deal {
    display: inline-block;
    background: linear-gradient(90deg, #1e40af, #dc2626);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.mob-offer-pack-text {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
}

.mob-offer-prices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.mob-offer-mrp {
    font-size: 18px;
    color: #9ca3af;
    text-decoration: line-through;
}

.mob-offer-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-secondary);
}

.mob-offer-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 12px;
}

.mob-offer-ship {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-accent);
    margin: 0;
}

.mob-order__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-secondary);
    text-align: center;
    margin-bottom: 4px;
}

.mob-order__sub {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 16px;
}

.mob-order .order-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px 16px;
    margin: 0;
}

.mob-order .order-form input,
.mob-order .order-form textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px;
    font-size: 15px;
    font-family: inherit;
    margin-bottom: 10px;
}

.mob-order .btn-order {
    width: 100%;
    background: var(--brand-accent) !important;
    border-color: var(--brand-accent) !important;
    font-size: 16px !important;
    padding: 14px !important;
    border-radius: 8px !important;
}

.mob-order .countdown-timer {
    font-size: 24px;
    font-weight: 800;
    color: #dc2626;
    text-align: center;
}

.mob-order .timer-text,
.mob-order .order-urgency {
    text-align: center;
    font-size: 13px;
}

/* ── Guarantee ── */
.mob-guarantee {
    background: var(--brand-secondary);
    color: #fff;
    padding: 28px 0;
}

.mob-guarantee__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
}

.mob-guarantee__seal {
    text-align: center;
    color: #f59e0b;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
}

.mob-guarantee__seal strong {
    display: block;
    font-size: 22px;
    color: #f59e0b;
}

.mob-guarantee__text h2 {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.mob-guarantee__text p {
    font-size: 11px;
    line-height: 1.45;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* ── FAQ ── */
.mob-faq {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mob-faq__item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.mob-faq__item summary {
    padding: 14px 40px 14px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-secondary);
    cursor: pointer;
    list-style: none;
    position: relative;
}

.mob-faq__item summary::-webkit-details-marker { display: none; }

.mob-faq__item summary::after {
    content: '+';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #6b7280;
    font-weight: 400;
}

.mob-faq__item[open] summary::after {
    content: '−';
}

.mob-faq__item p {
    padding: 0 14px 14px;
    font-size: 13px;
    line-height: 1.5;
    color: #4b5563;
    margin: 0;
}

.mob-faq__more {
    display: block;
    width: 100%;
    margin-top: 16px;
    text-align: center;
    background: var(--brand-secondary) !important;
    color: #fff !important;
    border-color: var(--brand-secondary) !important;
}

.mob-reviews__more {
    display: block;
    width: 100%;
    margin-top: 10px;
    text-align: center;
    background: var(--brand-secondary) !important;
    color: #fff !important;
    border-color: var(--brand-secondary) !important;
    text-decoration: none;
}

/* ── Final CTA ── */
.mob-final-cta {
    padding: 28px 0 36px;
    background: #f9fafb;
}

.mob-final-cta__features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #374151;
}

.mob-final-cta__box {
    background: linear-gradient(135deg, var(--brand-accent), var(--emerald-dark));
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    color: #fff;
}

.mob-final-cta__text {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0 0 14px;
}

.mob-final-cta__order {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.mob-final-cta__wa {
    display: block;
    width: 100%;
    background: #fff !important;
    color: var(--brand-accent) !important;
    border-color: #fff !important;
    margin-bottom: 10px;
}

.mob-final-cta__secure {
    font-size: 11px;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* ── Home footer (panel 10) ── */
.site-footer--home-ref {
    background: var(--brand-secondary);
    color: rgba(255,255,255,0.88);
    padding-top: 28px;
}

.site-footer--home-ref .site-footer__brandblock {
    text-align: center;
    padding: 0 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 20px;
}

.site-footer--home-ref .site-footer__tagline {
    font-size: 13px;
    margin: 8px 0 14px;
    color: rgba(255,255,255,0.75);
}

.site-footer--home-ref .site-footer__social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.site-footer--home-ref .site-footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

/* ── Sticky footer ── */
.mob-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    background: var(--brand-secondary);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 8px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.mob-sticky-bar__text {
    color: #fff;
    line-height: 1.2;
}

.mob-sticky-bar__text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
}

.mob-sticky-bar__text span {
    font-size: 10px;
    color: rgba(255,255,255,0.75);
}

.mob-sticky-bar__order {
    background: var(--brand-accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
}

.mob-sticky-bar__wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.mob-sticky-bar__wa svg {
    flex-shrink: 0;
}

/* Hide extras on home mobile */
body.page-home .contact-float {
    display: none;
}

body.page-home .home-fixed-order-btn--desktop {
    display: none;
}

/* Desktop helpers */
.mob-hero__icons-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.mob-hero__icons-row .mob-hero__icon-item {
    max-width: none;
}

.mob-b12--intro {
    text-align: left;
}

.mob-b12__para {
    font-size: 14px;
    line-height: 1.55;
    color: #374151;
    margin: 12px 0 16px;
}

.mob-b12__mini {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-accent);
}

.mob-diet__img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 16px;
    display: block;
}

.mob-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mob-checklist li {
    position: relative;
    padding-left: 28px;
    font-size: 13px;
    line-height: 1.45;
    color: #374151;
}

.mob-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--brand-accent);
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mob-split {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mob-split__title {
    font-size: 15px;
    font-weight: 800;
    color: var(--brand-secondary);
    margin-bottom: 12px;
    text-align: center;
}

.mob-split__img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 12px;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.mob-offer-cta {
    display: block;
    width: 100%;
    margin: 12px 0 16px;
    background: var(--brand-accent) !important;
    border-color: var(--brand-accent) !important;
    font-weight: 700 !important;
    padding: 14px !important;
    border-radius: 8px !important;
    text-align: center;
    text-decoration: none;
}

.top-bar--mob {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
}

.top-bar__item--short {
    font-size: 9px;
}

.mob-sticky-bar {
    grid-template-columns: 1fr auto auto;
}

.mob-sticky-bar__offer {
    color: #fff;
    line-height: 1.2;
}

.mob-sticky-bar__offer strong {
    display: block;
    font-size: 11px;
    font-weight: 800;
}

.mob-sticky-bar__offer span {
    font-size: 14px;
    font-weight: 800;
    color: #f59e0b;
}

.mob-sticky-bar__call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-accent);
    color: #fff;
    border-radius: 999px;
    padding: 10px 12px;
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.mob-sticky-bar__wa {
    font-size: 10px;
    padding: 10px 12px;
}

@media (min-width: 769px) {
    body.page-home .container {
        max-width: 720px;
    }

    body.page-home {
        padding-bottom: 0;
    }

    .mob-sticky-bar {
        display: none;
    }

    .site-footer--home-ref .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .mob-split {
        flex-direction: row;
        gap: 20px;
    }

    .mob-split__col {
        flex: 1;
    }

    .mob-ingredients {
        grid-template-columns: repeat(4, 1fr);
    }

    .mob-symptoms {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Premium Brand Asset Layer ── */
.brand-hero {
    background-color: var(--brand-bg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.mob-hero__glow {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
}

.mob-hero__bottle-wrap--center .mob-hero__bottle {
    position: relative;
    z-index: 1;
}

.mob-hero__seal-img {
    position: absolute;
    right: max(0px, calc(50% - 130px));
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(46, 139, 87, 0.35));
}

.mob-hero__icon-circle img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.mob-hero__trust--icons span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.mob-hero__trust--icons img {
    flex-shrink: 0;
    opacity: 0.85;
}

.mob-ing-trust--badges,
.mob-offer-trust--badges,
.mob-doctor__certs--badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

.mob-ing-trust--badges img,
.mob-offer-trust--badges img,
.mob-doctor__certs--badges img {
    height: auto;
    max-width: min(140px, 44vw);
    object-fit: contain;
}

.mob-guarantee__seal img {
    max-width: 110px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.mob-symptom img {
    object-fit: contain;
    background: var(--brand-bg);
    padding: 8px;
}

.mob-ing-list__item img {
    object-fit: contain;
    background: var(--brand-bg);
    border-radius: 50%;
    padding: 4px;
}

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.2s;
}

.site-footer__social a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.site-footer__social img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.review-item__avatar--photo {
    object-fit: cover;
    background: var(--brand-bg);
}

