/* ==========================================================================
   ChemCheemi Africa — Storefront Design System
   --------------------------------------------------------------------------
   1. Tokens            8. Product cards        15. About
   2. Base              9. Package cards        16. Gallery & video
   3. Layout            10. Home sections       17. Flash cards & audio
   4. Typography        11. Testimonials & FAQ  18. Shop / product detail
   5. Buttons & chips   12. Page hero           19. Cart / checkout / payment
   6. Header & nav      13. Filters & toolbar   20. Utilities & motion
   7. Footer & toasts   14. CTA bands
   ========================================================================== */

/* 1. Tokens ================================================================ */
:root {
    /* Brand */
    --brand: #0B4DB5;
    --brand-600: #0A43A0;
    --brand-700: #083683;
    --brand-50: #EEF3FD;
    --brand-100: #DCE6FA;
    --sun: #F7C928;
    --sun-600: #E3B00B;
    --sun-50: #FFF7D9;
    --coral: #E4553F;

    /* Neutrals (warm) */
    --ink: #0E1A33;
    --ink-2: #33405A;
    --muted: #677189;
    --line: #E9E4DA;
    --line-2: #F1EDE5;
    --bg: #FBF9F5;
    --surface: #FFFFFF;
    --surface-2: #F6F2EA;
    --navy: #0B1834;
    --navy-2: #13244A;

    /* Soft category tints */
    --tint-sky: #E9F1FE;
    --tint-sun: #FFF5D6;
    --tint-mint: #E5F5EC;
    --tint-peach: #FDEDE5;
    --tint-lilac: #EFEBFB;
    --mint-ink: #1D7A51;
    --peach-ink: #B8502A;
    --lilac-ink: #5B45A8;

    --success: #1F9D5B;
    --success-bg: #E7F6EE;
    --danger: #C9372C;
    --danger-bg: #FDECEA;

    /* Type */
    --font-display: 'Fredoka', 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

    /* Radius, shadow, motion */
    --r-sm: 10px;
    --r: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-pill: 999px;
    --shadow-xs: 0 1px 2px rgba(14, 26, 51, .06);
    --shadow-sm: 0 2px 6px rgba(14, 26, 51, .05), 0 8px 24px -12px rgba(14, 26, 51, .12);
    --shadow: 0 4px 10px rgba(14, 26, 51, .04), 0 18px 40px -18px rgba(14, 26, 51, .22);
    --shadow-lg: 0 10px 24px rgba(14, 26, 51, .06), 0 40px 80px -30px rgba(14, 26, 51, .35);
    --ease: cubic-bezier(.2, .7, .2, 1);
    --t: .25s var(--ease);

    --container: 1240px;
    --gutter: 24px;
    --header-h: 76px;
}

/* 2. Base ================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-2);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--brand); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--brand-700); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
ul, ol { padding-left: 1.2em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
strong, b { color: var(--ink); font-weight: 700; }
hr { border: 0; border-top: 1px solid var(--line); margin: 24px 0; }
::selection { background: var(--sun); color: var(--ink); }
[hidden] { display: none !important; }
img.img-missing { visibility: hidden; }

:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 6px; }

.skip-link {
    position: absolute; left: 16px; top: -60px; z-index: 200;
    background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--r-sm);
    font-weight: 700;
}
.skip-link:focus { top: 12px; color: #fff; }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* 3. Layout ================================================================ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 880px; }
.container--tight { max-width: 640px; }

.section { padding-block: clamp(64px, 8vw, 112px); position: relative; }
.section--sm { padding-block: clamp(40px, 5vw, 64px); }
.section--flush-top { padding-top: 0; }
.section--white { background: var(--surface); }
.section--cream { background: var(--surface-2); }
.section--sky { background: var(--brand-50); }
.section--navy { background: var(--navy); color: rgba(255, 255, 255, .78); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy strong { color: #fff; }

.section-head { max-width: 680px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-head--left { margin-inline: 0; text-align: left; }
.section-head--split {
    max-width: none; display: flex; align-items: flex-end; justify-content: space-between;
    gap: 24px; text-align: left; flex-wrap: wrap;
}
.section-head--split > div { max-width: 640px; }
.section-head .lead { margin-top: 14px; }

.grid { display: grid; gap: clamp(16px, 2vw, 28px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.split--wide-left { grid-template-columns: 1.15fr .85fr; }

/* 4. Typography ============================================================ */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--ink);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -.01em;
    margin: 0 0 .5em;
}
h1, .h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); letter-spacing: -.02em; }
h2, .h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); letter-spacing: -.015em; }
h3, .h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); }
h4 { font-size: 1.1rem; }

.lead { font-size: clamp(1.02rem, 1.3vw, 1.18rem); color: var(--muted); line-height: 1.7; }
.section--navy .lead { color: rgba(255, 255, 255, .7); }

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-body); font-size: .78rem; font-weight: 800;
    letter-spacing: .12em; text-transform: uppercase; color: var(--brand);
    margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 18px; height: 2px; border-radius: 2px; background: var(--sun); }
.section--navy .eyebrow { color: var(--sun); }
.section-head:not(.section-head--left):not(.section-head--split) .eyebrow::after {
    content: ''; width: 18px; height: 2px; border-radius: 2px; background: var(--sun);
}

.hl { color: var(--brand); }
.hl-sun { position: relative; white-space: nowrap; z-index: 0; }
.hl-sun::after {
    content: ''; position: absolute; left: -2%; right: -2%; bottom: .06em; height: .32em;
    background: var(--sun); border-radius: 6px; z-index: -1; opacity: .85;
}
.section--navy .hl, .page-hero--navy .hl { color: var(--sun); }

.text-muted { color: var(--muted); }
.text-success { color: var(--success); }
.prose p { margin-bottom: 1.1em; }
.prose ul { margin: 0 0 1.2em; }

/* 5. Buttons & chips ======================================================= */
.btn {
    --btn-bg: var(--brand); --btn-fg: #fff; --btn-bd: transparent;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    min-height: 50px; padding: 12px 26px;
    font-family: var(--font-body); font-size: .96rem; font-weight: 700; line-height: 1.2;
    color: var(--btn-fg); background: var(--btn-bg);
    border: 1.5px solid var(--btn-bd); border-radius: var(--r-pill);
    cursor: pointer; text-align: center; white-space: nowrap;
    transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .icon { flex-shrink: 0; transition: transform var(--t); }
.btn:hover .icon-trail { transform: translateX(3px); }

.btn--primary { box-shadow: 0 8px 20px -8px rgba(11, 77, 181, .55); }
.btn--primary:hover { --btn-bg: var(--brand-600); box-shadow: 0 14px 28px -10px rgba(11, 77, 181, .6); }
.btn--sun { --btn-bg: var(--sun); --btn-fg: var(--ink); box-shadow: 0 8px 20px -10px rgba(227, 176, 11, .8); }
.btn--sun:hover { --btn-bg: #FFD23F; }
.btn--dark { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn--dark:hover { --btn-bg: #1C2A48; }
.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); box-shadow: var(--shadow-sm); }
.btn--light:hover { --btn-fg: var(--brand); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: rgba(14, 26, 51, .18); }
.btn--outline:hover { --btn-bd: var(--ink); background: var(--surface); }
.btn--outline-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, .35); }
.btn--outline-light:hover { --btn-bd: #fff; background: rgba(255, 255, 255, .08); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--brand); padding-inline: 8px; min-height: 40px; }
.btn--ghost:hover { --btn-fg: var(--brand-700); transform: none; }
.btn--whatsapp { --btn-bg: #1FAF55; --btn-fg: #fff; }
.btn--whatsapp:hover { --btn-bg: #178C44; }

.btn--sm { min-height: 40px; padding: 8px 18px; font-size: .88rem; }
.btn--lg { min-height: 58px; padding: 16px 34px; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn--icon { width: 44px; min-height: 44px; padding: 0; }
.btn:disabled, .btn[aria-disabled="true"] {
    opacity: .45; cursor: not-allowed; transform: none; box-shadow: none;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-row--center { justify-content: center; }

.link-arrow {
    display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--brand);
}
.link-arrow .icon { transition: transform var(--t); }
.link-arrow:hover .icon { transform: translateX(4px); }

/* Chips / filter pills */
.chip {
    display: inline-flex; align-items: center; gap: 8px;
    min-height: 42px; padding: 8px 18px;
    font-size: .9rem; font-weight: 700; color: var(--ink-2);
    background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--r-pill);
    cursor: pointer; white-space: nowrap;
    transition: background var(--t), color var(--t), border-color var(--t), box-shadow var(--t);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-active, .chip[aria-pressed="true"] {
    background: var(--ink); border-color: var(--ink); color: #fff;
    box-shadow: 0 6px 16px -8px rgba(14, 26, 51, .6);
}
.chip .icon { opacity: .8; }
.chip--sm { min-height: 36px; padding: 6px 14px; font-size: .84rem; }

/* Badges / tags */
.badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 11px; border-radius: var(--r-pill);
    font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
    background: var(--ink); color: #fff; line-height: 1.2;
}
.badge--sun { background: var(--sun); color: var(--ink); }
.badge--brand { background: var(--brand); color: #fff; }
.badge--light { background: rgba(255, 255, 255, .92); color: var(--ink); backdrop-filter: blur(6px); }
.badge--success { background: var(--success-bg); color: var(--success); }
.badge--danger { background: var(--danger-bg); color: var(--danger); }
.badge--soft { background: var(--brand-50); color: var(--brand); text-transform: none; letter-spacing: 0; font-weight: 700; font-size: .78rem; }

.tag {
    display: inline-flex; align-items: center; padding: 4px 10px; border-radius: var(--r-pill);
    font-size: .76rem; font-weight: 600; color: var(--ink-2); background: var(--surface-2);
}
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; }

/* 6. Header & navigation =================================================== */
.announce {
    background: var(--navy); color: rgba(255, 255, 255, .85);
    font-size: .84rem; font-weight: 600; text-align: center; padding: 10px 16px;
}
.announce .container { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.announce .icon { color: var(--sun); }
.announce a { color: var(--sun); font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }
.announce a:hover { color: #fff; }

.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(251, 249, 245, .86);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 24px -18px rgba(14, 26, 51, .35); background: rgba(255, 255, 255, .92); }
.site-header .container { height: var(--header-h); display: flex; align-items: center; gap: 28px; }

.brand-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo img { height: 34px; width: auto; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 14px; border-radius: var(--r-pill);
    font-size: .92rem; font-weight: 600; color: var(--ink-2); white-space: nowrap;
}
.main-nav a:hover { color: var(--ink); background: rgba(14, 26, 51, .05); }
.main-nav a.is-current { color: var(--brand); background: var(--brand-50); }
.main-nav .nav-special { color: var(--lilac-ink); }
.main-nav .nav-special > span { display: inline-flex; align-items: center; gap: 6px; }
.main-nav .nav-special .icon { color: var(--sun-600); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.cart-link {
    position: relative; display: inline-flex; align-items: center; gap: 10px;
    height: 46px; padding: 0 18px 0 14px; border-radius: var(--r-pill);
    background: var(--ink); color: #fff; font-weight: 700; font-size: .9rem;
    transition: background var(--t), transform var(--t);
}
.cart-link:hover { background: var(--brand); color: #fff; }
.cart-count {
    min-width: 22px; height: 22px; padding: 0 6px; border-radius: var(--r-pill);
    display: inline-grid; place-items: center;
    background: var(--sun); color: var(--ink); font-size: .74rem; font-weight: 800;
}
.cart-count.is-bump { animation: bump .45s var(--ease); }

.menu-toggle {
    display: none; width: 46px; height: 46px; border-radius: 50%;
    border: 1.5px solid var(--line); background: var(--surface); color: var(--ink);
    align-items: center; justify-content: center;
}
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

/* 7. Footer & toasts ======================================================= */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, .7); padding-top: clamp(56px, 7vw, 88px); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 56px; }
.footer-brand img { width: 72px; height: auto; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-brand p { font-size: .92rem; line-height: 1.75; max-width: 420px; }
.footer-title { font-family: var(--font-body); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-links a { color: rgba(255, 255, 255, .7); font-size: .94rem; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: #fff; }
.footer-links .is-special { color: var(--sun); font-weight: 700; }
.footer-contact { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 14px; font-size: .92rem; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact .icon { color: var(--sun); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255, 255, 255, .8); }
.footer-contact a:hover { color: #fff; }
.social-links { display: flex; gap: 10px; margin-top: 24px; }
.social-links a {
    width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
    background: rgba(255, 255, 255, .08); color: #fff; transition: background var(--t), transform var(--t), color var(--t);
}
.social-links a:hover { background: var(--sun); color: var(--ink); transform: translateY(-2px); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0;
    display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
    font-size: .85rem; color: rgba(255, 255, 255, .5);
}
.footer-bottom .pay-note { display: inline-flex; align-items: center; gap: 8px; }

.toast-stack {
    position: fixed; top: calc(var(--header-h) + 16px); right: 16px; z-index: 150;
    display: grid; gap: 10px; width: min(420px, calc(100vw - 32px));
}
.toast {
    display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px;
    background: var(--surface); border-radius: var(--r); box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--success); color: var(--ink); font-weight: 600; font-size: .94rem;
    animation: toast-in .45s var(--ease) both;
}
.toast .icon { color: var(--success); flex-shrink: 0; margin-top: 1px; }
.toast--error { border-left-color: var(--danger); }
.toast--error .icon { color: var(--danger); }
.toast-body { flex: 1; }
.toast-body a { display: inline-flex; margin-top: 6px; font-weight: 700; }
.toast-close { background: none; border: 0; padding: 2px; color: var(--muted); border-radius: 6px; }
.toast-close:hover { color: var(--ink); }
.toast.is-leaving { animation: toast-out .3s ease forwards; }

/* 8. Product cards ========================================================= */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: clamp(16px, 2vw, 26px); }
.product-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.pcard {
    position: relative; display: flex; flex-direction: column;
    background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg);
    overflow: hidden; box-shadow: var(--shadow-xs);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }

.pcard-media {
    position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden;
    background: var(--tint-sky); margin: 8px 8px 0; border-radius: calc(var(--r-lg) - 6px);
}
.pcard-media img {
    width: 100%; height: 100%; object-fit: contain; padding: 14px;
    transition: transform .6s var(--ease);
}
.pcard-media--cover img { object-fit: cover; padding: 0; }
.pcard:hover .pcard-media img { transform: scale(1.05); }
.pcard[data-tone="sun"] .pcard-media { background: var(--tint-sun); }
.pcard[data-tone="mint"] .pcard-media { background: var(--tint-mint); }
.pcard[data-tone="peach"] .pcard-media { background: var(--tint-peach); }
.pcard[data-tone="lilac"] .pcard-media { background: var(--tint-lilac); }

.pcard-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; z-index: 2; }
.pcard-fav {
    position: absolute; top: 10px; right: 10px; z-index: 2;
    width: 38px; height: 38px; border-radius: 50%; border: 0;
    display: grid; place-items: center; background: rgba(255, 255, 255, .92); color: var(--ink-2);
    box-shadow: var(--shadow-xs); transition: transform var(--t), color var(--t);
}
.pcard-fav:hover { transform: scale(1.08); color: var(--coral); }
.pcard-fav[aria-pressed="true"] { color: var(--coral); }
.pcard-fav[aria-pressed="true"] svg { fill: currentColor; }
.pcard-stockout {
    position: absolute; inset: auto 12px 12px auto; z-index: 2;
}

.pcard-body { display: flex; flex-direction: column; flex: 1; padding: 18px 20px 20px; gap: 8px; }
.pcard-cat { display: inline-flex; align-items: center; gap: 6px; font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); }
.pcard-title { font-size: 1.14rem; margin: 0; line-height: 1.25; }
.pcard-title a { color: var(--ink); }
.pcard-title a:hover { color: var(--brand); }
.pcard-title a::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.pcard-desc { font-size: .9rem; color: var(--muted); line-height: 1.55; margin: 0; }
.pcard-desc--clamp { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pcard-meta { display: flex; flex-direction: column; gap: 4px; font-size: .84rem; color: var(--ink-2); margin: 0; }
.pcard-meta dt { display: inline; font-weight: 700; color: var(--ink); }
.pcard-meta dd { display: inline; margin: 0; }
.pcard-meta div { line-height: 1.5; }
.pcard-skills { font-size: .82rem; color: var(--muted); line-height: 1.55; padding-top: 10px; border-top: 1px dashed var(--line); margin: 4px 0 0; }
.pcard-skills strong { color: var(--ink); font-weight: 700; }

.pcard-footer {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    margin-top: auto; padding-top: 14px;
}
.pcard-footer > * { position: relative; z-index: 2; }
.price { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.3rem; letter-spacing: -.01em; white-space: nowrap; }
.price small { font-family: var(--font-body); font-size: .72rem; font-weight: 700; color: var(--muted); letter-spacing: .04em; margin-right: 3px; }
.pcard-age { display: inline-flex; align-items: center; gap: 5px; font-size: .78rem; font-weight: 700; color: var(--mint-ink); background: var(--tint-mint); padding: 4px 10px; border-radius: var(--r-pill); white-space: nowrap; }

.pcard-actions { display: flex; gap: 8px; margin-top: 14px; position: relative; z-index: 2; }
.pcard-actions form { flex: 1; display: flex; }
.pcard-actions .btn { flex: 1; min-height: 46px; }
.pcard-actions .btn--icon { flex: 0 0 46px; width: 46px; min-height: 46px; }

/* 9. Package cards ========================================================= */
.pkg-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 32px); align-items: stretch; }
.pkg {
    position: relative; display: flex; flex-direction: column;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
    padding: 12px; box-shadow: var(--shadow-sm);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-media {
    position: relative; aspect-ratio: 16 / 11; border-radius: calc(var(--r-xl) - 8px);
    background: radial-gradient(120% 90% at 50% 0%, #fff 0%, var(--tint-sky) 70%);
    display: grid; place-items: center; overflow: hidden;
}
.pkg-media img { width: 78%; height: 88%; object-fit: contain; transition: transform .6s var(--ease); filter: drop-shadow(0 18px 24px rgba(14, 26, 51, .18)); }
.pkg:hover .pkg-media img { transform: scale(1.05) rotate(-1deg); }
.pkg-media .badge { position: absolute; top: 14px; left: 14px; }
.pkg-body { padding: 22px 14px 12px; display: flex; flex-direction: column; flex: 1; }
.pkg-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.pkg-name { font-size: 1.6rem; margin: 0; }
.pkg-name a { color: inherit; }
.pkg-tagline { font-size: .9rem; font-weight: 700; color: var(--brand); margin: 0; }
.pkg-desc { font-size: .92rem; color: var(--muted); margin: 0 0 16px; }
.pkg-features { list-style: none; padding: 0; margin: 12px 0 20px; display: grid; gap: 12px; }
.pkg-features li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; font-size: .9rem; line-height: 1.5; color: var(--ink-2); }
.pkg-features .icon { color: var(--success); margin-top: 3px; }
.pkg-features strong { display: block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 800; }
.pkg-foot { margin-top: auto; display: grid; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line-2); }
.pkg-price-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.pkg .price { font-size: 1.8rem; }
.pkg-actions { display: flex; gap: 8px; }
.pkg-actions form { flex: 1; display: flex; }
.pkg-actions .btn { flex: 1; }
.pkg-actions .btn--icon { flex: 0 0 50px; width: 50px; min-height: 50px; }

.pkg--featured { background: var(--navy); border-color: var(--navy); color: rgba(255, 255, 255, .75); box-shadow: var(--shadow-lg); }
.pkg--featured .pkg-media { background: radial-gradient(120% 90% at 50% 0%, #22407A 0%, var(--navy-2) 75%); }
.pkg--featured .pkg-name, .pkg--featured .price, .pkg--featured strong { color: #fff; }
.pkg--featured .pkg-tagline { color: var(--sun); }
.pkg--featured .pkg-features li { color: rgba(255, 255, 255, .82); }
.pkg--featured .pkg-features strong { color: rgba(255, 255, 255, .5); }
.pkg--featured .pkg-features .icon { color: var(--sun); }
.pkg--featured .pkg-foot { border-color: rgba(255, 255, 255, .12); }
.pkg--featured .pkg-desc { color: rgba(255, 255, 255, .65); }
.pkg--featured .pcard-age { background: rgba(255, 255, 255, .1); color: #fff; }
.pkg--featured .btn--outline { --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, .3); }
.pkg--featured .btn--outline:hover { background: rgba(255, 255, 255, .08); --btn-bd: #fff; }
.pkg-save { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 800; color: var(--ink); background: var(--sun); padding: 5px 12px; border-radius: var(--r-pill); }

/* 10. Home sections ======================================================== */
.hero {
    position: relative; overflow: hidden;
    padding: clamp(40px, 6vw, 80px) 0 clamp(56px, 7vw, 96px);
    background:
        radial-gradient(60% 70% at 100% 0%, rgba(11, 77, 181, .10) 0%, transparent 60%),
        radial-gradient(40% 50% at 0% 100%, rgba(247, 201, 40, .16) 0%, transparent 65%),
        var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-kicker {
    display: inline-flex; align-items: center; gap: 10px; padding: 6px 16px 6px 6px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill);
    font-size: .86rem; font-weight: 700; color: var(--ink); box-shadow: var(--shadow-xs); margin-bottom: 26px;
}
.hero-kicker-stars { display: inline-flex; gap: 1px; color: var(--sun-600); background: var(--sun-50); border-radius: var(--r-pill); padding: 5px 9px; }
.hero h1 { font-size: clamp(2.8rem, 6.4vw, 5.2rem); line-height: 1.02; margin-bottom: 22px; }
.hero-rotator { position: relative; min-height: 3.6em; margin-bottom: 30px; max-width: 520px; }
.hero-rotator p {
    position: absolute; inset: 0 0 auto 0; margin: 0;
    font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.6; color: var(--ink-2);
    opacity: 0; transform: translateY(-6px); transition: opacity .25s ease, transform .25s ease;
}
.hero-rotator p.is-active { opacity: 1; transform: none; transition: opacity .5s var(--ease) .25s, transform .5s var(--ease) .25s; }
.hero-stats { display: flex; gap: clamp(20px, 4vw, 44px); margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-stat strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.2rem); color: var(--ink); line-height: 1; margin-bottom: 6px; }
.hero-stat span { font-size: .86rem; color: var(--muted); font-weight: 600; }

.hero-visual { position: relative; }
.hero-frame {
    position: relative; aspect-ratio: 4 / 4.4; border-radius: 40px 40px 40px 120px; overflow: hidden;
    background: var(--brand-100); box-shadow: var(--shadow-lg);
}
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s var(--ease); }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 6s linear; }
.hero-slide.is-active img { transform: scale(1); }
.hero-label {
    position: absolute; left: -28px; bottom: 44px; z-index: 3;
    display: flex; align-items: center; gap: 14px; padding: 14px 20px 14px 14px;
    background: var(--surface); border-radius: 20px; box-shadow: var(--shadow-lg);
    min-width: 220px;
}
.hero-label-icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--sun); color: var(--ink); flex-shrink: 0; }
.hero-label-text { display: grid; line-height: 1.3; }
.hero-label-text strong { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.hero-label-text span { font-size: .8rem; color: var(--muted); font-weight: 600; }
.hero-label-text > * { transition: opacity .35s ease; }
.hero-badge-seal {
    position: absolute; top: 28px; right: -18px; z-index: 3;
    width: 108px; height: 108px; border-radius: 50%; display: grid; place-items: center; text-align: center;
    background: var(--ink); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; line-height: 1.3;
    box-shadow: var(--shadow-lg); padding: 14px;
}
.hero-badge-seal .icon { color: var(--sun); margin: 0 auto 4px; }
.hero-dots { position: absolute; right: 24px; bottom: 24px; z-index: 3; display: flex; gap: 6px; padding: 8px 10px; background: rgba(14, 26, 51, .35); backdrop-filter: blur(8px); border-radius: var(--r-pill); }
.hero-dot { width: 8px; height: 8px; border-radius: var(--r-pill); border: 0; padding: 0; background: rgba(255, 255, 255, .55); transition: width var(--t), background var(--t); }
.hero-dot.is-active { width: 24px; background: #fff; }

/* Trust strip */
.trust-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.trust-item {
    display: flex; align-items: flex-start; gap: 14px; padding: 20px;
    background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg);
}
.trust-icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; flex-shrink: 0; background: var(--brand-50); color: var(--brand); }
.trust-item:nth-child(2) .trust-icon { background: var(--tint-peach); color: var(--peach-ink); }
.trust-item:nth-child(3) .trust-icon { background: var(--tint-mint); color: var(--mint-ink); }
.trust-item:nth-child(4) .trust-icon { background: var(--tint-sun); color: #9A7400; }
.trust-item h3, .trust-item h4 { font-family: var(--font-body); font-size: .96rem; font-weight: 800; margin: 2px 0 4px; }
.trust-item p { font-size: .86rem; color: var(--muted); line-height: 1.5; margin: 0; }
.trust-strip--flat .trust-item { background: transparent; border: 0; padding: 8px; }

/* Intro / about mosaic */
.mosaic { position: relative; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 190px 150px 190px; gap: 14px; }
.mosaic figure { margin: 0; border-radius: var(--r-lg); overflow: hidden; background: var(--brand-100); box-shadow: var(--shadow-sm); }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.mosaic figure:hover img { transform: scale(1.05); }
.mosaic figure:nth-child(1) { grid-row: 1 / 3; }
.mosaic figure:nth-child(2) { grid-row: 1 / 2; }
.mosaic figure:nth-child(3) { grid-row: 2 / 4; }
.mosaic figure:nth-child(4) { grid-row: 3 / 4; }
.mosaic-seal {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 92px; height: 92px; border-radius: 50%; display: grid; place-items: center;
    background: var(--sun); color: var(--ink); box-shadow: 0 0 0 10px var(--bg), var(--shadow);
}
.section--white .mosaic-seal { box-shadow: 0 0 0 10px var(--surface), var(--shadow); }

.check-list { list-style: none; padding: 0; margin: 0 0 1.4em; display: grid; gap: 12px; }
.check-list li { display: grid; grid-template-columns: 26px 1fr; gap: 10px; align-items: start; color: var(--ink-2); }
.check-list .check { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--tint-mint); color: var(--mint-ink); margin-top: 1px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 32px); list-style: none; padding: 0; margin: 0; }
.step {
    position: relative; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-xl);
    padding: 14px 14px 28px; display: flex; flex-direction: column;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-media { aspect-ratio: 16 / 10; border-radius: calc(var(--r-xl) - 8px); background: var(--brand-50); display: grid; place-items: center; overflow: hidden; }
.step:nth-child(2) .step-media { background: var(--tint-sun); }
.step:nth-child(3) .step-media { background: var(--tint-mint); }
.step-media img { width: 82%; height: 82%; object-fit: contain; }
.step-num {
    position: absolute; top: 26px; left: 26px; width: 44px; height: 44px; border-radius: 14px;
    display: grid; place-items: center; background: var(--ink); color: #fff;
    font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; box-shadow: var(--shadow-sm);
}
.step-body { padding: 24px 12px 0; }
.step-body h3 { margin-bottom: 10px; }
.step-body p { font-size: .95rem; color: var(--muted); }
.step-tip { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: .84rem; font-weight: 700; color: var(--brand); background: var(--brand-50); padding: 7px 14px; border-radius: var(--r-pill); }
.how-intro { max-width: 760px; margin: -12px auto 48px; text-align: center; font-size: 1.05rem; }
.how-cta { margin-top: 48px; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; text-align: center; }
.how-cta p { margin: 0; font-weight: 700; color: var(--ink); }

/* Category tiles */
.cat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 28px); }
.cat-tile {
    position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(28px, 4vw, 44px);
    background: var(--brand); color: rgba(255, 255, 255, .8); display: flex; flex-direction: column;
    min-height: 460px; isolation: isolate;
}
.cat-tile::before {
    content: ''; position: absolute; width: 420px; height: 420px; right: -140px; top: -160px; border-radius: 50%;
    background: rgba(255, 255, 255, .08); z-index: -1;
}
.cat-tile--sun { background: var(--sun); color: rgba(14, 26, 51, .72); }
.cat-tile--sun::before { background: rgba(255, 255, 255, .3); }
.cat-tile-icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: rgba(255, 255, 255, .16); color: #fff; margin-bottom: 22px; }
.cat-tile--sun .cat-tile-icon { background: rgba(14, 26, 51, .08); color: var(--ink); }
.cat-tile h3 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); color: #fff; margin-bottom: 8px; }
.cat-tile--sun h3 { color: var(--ink); }
.cat-tile > p { font-size: 1.05rem; max-width: 380px; }
.cat-minis { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: auto 0 28px; padding-top: 28px; }
.cat-mini { text-align: center; }
.cat-mini-img {
    aspect-ratio: 3 / 4; border-radius: var(--r); overflow: hidden; background: rgba(255, 255, 255, .15);
    box-shadow: 0 16px 28px -16px rgba(0, 0, 0, .5); transition: transform .4s var(--ease);
}
.cat-mini:nth-child(2) .cat-mini-img { transform: translateY(-12px); }
.cat-tile:hover .cat-mini:nth-child(1) .cat-mini-img { transform: rotate(-3deg) translateY(-4px); }
.cat-tile:hover .cat-mini:nth-child(2) .cat-mini-img { transform: translateY(-18px); }
.cat-tile:hover .cat-mini:nth-child(3) .cat-mini-img { transform: rotate(3deg) translateY(-4px); }
.cat-mini img { width: 100%; height: 100%; object-fit: cover; }
.cat-mini span { display: block; margin-top: 10px; font-size: .84rem; font-weight: 700; color: #fff; }
.cat-tile--sun .cat-mini span { color: var(--ink); }
.cat-tile .btn { align-self: flex-start; }

/* Newsletter */
.newsletter {
    position: relative; overflow: hidden; border-radius: var(--r-xl);
    background: var(--brand); color: rgba(255, 255, 255, .8);
    padding: clamp(36px, 5vw, 64px); display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center;
    isolation: isolate;
}
.newsletter::before, .newsletter::after { content: ''; position: absolute; border-radius: 50%; z-index: -1; }
.newsletter::before { width: 360px; height: 360px; right: -80px; top: -180px; background: rgba(255, 255, 255, .08); }
.newsletter::after { width: 220px; height: 220px; left: 38%; bottom: -150px; background: rgba(247, 201, 40, .25); }
.newsletter h2 { color: #fff; margin-bottom: 10px; }
.newsletter p { margin: 0; font-size: 1.05rem; }
.newsletter-form { display: flex; gap: 8px; background: #fff; padding: 6px; border-radius: var(--r-pill); box-shadow: var(--shadow); }
.newsletter-form input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 0 18px; font-size: .98rem; color: var(--ink); outline: none; }
.newsletter-form .btn { min-height: 48px; }
.newsletter-form.is-done .btn { --btn-bg: var(--success); --btn-fg: #fff; }

/* 11. Testimonials & FAQ =================================================== */
.carousel { position: relative; }
.carousel-track {
    display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 2 * 24px) / 3); gap: 24px;
    overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 6px 2px 10px;
    scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > * { scroll-snap-align: start; }
.carousel-nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 32px; }
.carousel-dots { display: flex; gap: 6px; flex-wrap: wrap; }
.carousel-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: var(--r-pill); background: rgba(255, 255, 255, .25); transition: width var(--t), background var(--t); }
.carousel-dot.is-active { width: 26px; background: var(--sun); }
.carousel-arrows { display: flex; gap: 10px; }
.carousel-arrow {
    width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
    border: 1.5px solid rgba(255, 255, 255, .25); background: transparent; color: #fff;
    transition: background var(--t), border-color var(--t), color var(--t);
}
.carousel-arrow:hover { background: var(--sun); border-color: var(--sun); color: var(--ink); }

.quote-card {
    display: flex; flex-direction: column; gap: 18px; height: 100%;
    background: var(--navy-2); border: 1px solid rgba(255, 255, 255, .08); border-radius: var(--r-lg); padding: 30px;
}
.quote-card .stars { display: flex; gap: 2px; color: var(--sun); }
.quote-card blockquote { margin: 0; font-size: 1.04rem; line-height: 1.7; color: rgba(255, 255, 255, .88); flex: 1; }
.quote-card .quote-mark { color: rgba(247, 201, 40, .5); }
.quote-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .08); }
.quote-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255, 255, 255, .15); }
.quote-author strong { display: block; color: #fff; font-size: .95rem; }
.quote-author span { font-size: .82rem; color: rgba(255, 255, 255, .55); }

.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.faq-aside { position: sticky; top: calc(var(--header-h) + 32px); }
.faq-contact { margin-top: 32px; padding: 26px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line-2); }
.faq-contact p { font-weight: 700; color: var(--ink); margin-bottom: 14px; font-family: var(--font-display); font-size: 1.25rem; }
.faq-list { display: grid; gap: 12px; }
.faq {
    background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg);
    transition: box-shadow var(--t), border-color var(--t);
}
.faq[open] { box-shadow: var(--shadow-sm); border-color: var(--line); }
.faq summary {
    list-style: none; cursor: pointer; display: flex; align-items: center; gap: 16px;
    padding: 20px 22px; font-weight: 700; color: var(--ink); font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-q-icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-50); color: var(--brand); flex-shrink: 0; }
.faq summary > span:nth-child(2) { flex: 1; }
.faq-toggle { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-2); color: var(--ink); flex-shrink: 0; transition: transform var(--t), background var(--t); }
.faq[open] .faq-toggle { transform: rotate(180deg); background: var(--sun); }
.faq-answer { padding: 0 22px 22px 78px; color: var(--ink-2); }
.faq-answer ul { margin: 8px 0 0; display: grid; gap: 4px; }

/* 12. Page hero ============================================================ */
.page-hero { position: relative; overflow: hidden; padding: clamp(40px, 6vw, 80px) 0; background: var(--surface-2); }
.page-hero::after {
    content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%;
    right: -160px; top: -220px; background: radial-gradient(circle, rgba(11, 77, 181, .10), transparent 70%); pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); margin-bottom: 16px; }
.page-hero .lead { max-width: 560px; }
.page-hero-media { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 5 / 4; box-shadow: var(--shadow-lg); background: var(--brand-100); }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--center { text-align: center; }
.page-hero--center .lead { margin-inline: auto; }
.page-hero--center .breadcrumb { justify-content: center; }
.page-hero--compact { padding: clamp(32px, 4vw, 52px) 0; }
.page-hero--compact h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 8px; }
.page-hero--navy { background: var(--navy); color: rgba(255, 255, 255, .75); }
.page-hero--navy h1 { color: #fff; }
.page-hero--navy .lead { color: rgba(255, 255, 255, .7); }
.page-hero--navy .breadcrumb, .page-hero--navy .breadcrumb a { color: rgba(255, 255, 255, .6); }
.page-hero--navy .breadcrumb [aria-current] { color: #fff; }
.page-hero--navy::after { background: radial-gradient(circle, rgba(247, 201, 40, .16), transparent 70%); }

.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .86rem; color: var(--muted); margin-bottom: 18px; list-style: none; padding: 0; }
.breadcrumb a { color: var(--muted); font-weight: 600; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .icon { opacity: .5; }
.breadcrumb [aria-current] { color: var(--ink); font-weight: 700; }

.hero-points { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 24px; list-style: none; padding: 0; }
.hero-points li { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 700; color: var(--ink); }
.hero-points .icon { color: var(--success); }

/* 13. Filters & toolbar ==================================================== */
.filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-group { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; min-width: 0; }
.filter-bar > *, .shop-toolbar > *, .shop-toolbar-row > * { min-width: 0; }
.filter-group--center { justify-content: center; margin-inline: auto; }
.filter-label { font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-right: 6px; }
.result-count { font-size: .9rem; color: var(--muted); font-weight: 600; }

.shop-toolbar {
    position: sticky; top: calc(var(--header-h) + 10px); z-index: 20;
    display: flex; flex-direction: column; gap: 12px;
    padding: 14px; margin-bottom: 32px;
    background: rgba(255, 255, 255, .9); backdrop-filter: blur(12px);
    border: 1px solid var(--line-2); border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
}
.shop-toolbar-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.scroll-x { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.scroll-x::-webkit-scrollbar { display: none; }

.empty-state { text-align: center; padding: 56px 20px; border: 1.5px dashed var(--line); border-radius: var(--r-lg); color: var(--muted); }
.empty-state .icon { margin: 0 auto 14px; color: var(--brand); }
.empty-state h3 { margin-bottom: 6px; }

/* 14. CTA bands ============================================================ */
.cta-band {
    position: relative; overflow: hidden; isolation: isolate;
    display: grid; grid-template-columns: 1.3fr .7fr; align-items: center; gap: 32px;
    border-radius: var(--r-xl); background: var(--navy); color: rgba(255, 255, 255, .75);
    padding: clamp(32px, 5vw, 56px);
}
.cta-band::before { content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%; right: -120px; top: -200px; background: rgba(255, 255, 255, .05); z-index: -1; }
.cta-band .eyebrow { color: var(--sun); }
.cta-band h2 { color: #fff; margin-bottom: 10px; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.cta-band p { font-size: 1.05rem; margin-bottom: 24px; }
.cta-band-media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-lg); transform: rotate(2deg); }
.cta-band-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band--simple { grid-template-columns: 1fr auto; }
.cta-band--center { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.cta-band--center p { max-width: 520px; }

/* Promotional banner (CMS) */
.promo {
    position: relative; overflow: hidden; isolation: isolate;
    display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: center;
    padding: clamp(28px, 4vw, 48px); border-radius: var(--r-xl);
    background: var(--brand); color: rgba(255, 255, 255, .82);
}
.promo::before { content: ''; position: absolute; width: 380px; height: 380px; border-radius: 50%; right: -100px; top: -180px; background: rgba(255, 255, 255, .08); z-index: -1; }
.promo h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 10px; }
.promo p { font-size: 1.05rem; margin-bottom: 22px; }
.promo .eyebrow { color: var(--sun); }
.promo--navy { background: var(--navy); }
.promo--sun { background: var(--sun); color: rgba(14, 26, 51, .78); }
.promo--sun h2 { color: var(--ink); }
.promo--sun .eyebrow { color: var(--ink); }
.promo--sun::before { background: rgba(255, 255, 255, .35); }
.promo--no-media { grid-template-columns: 1fr; }
.promo-media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-lg); }
.promo-media img { width: 100%; height: 100%; object-fit: cover; }

/* Admin preview notice */
.preview-bar {
    position: sticky; top: 0; z-index: 160; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 8px 16px; background: var(--sun); color: var(--ink); font-size: .86rem; font-weight: 600; text-align: center;
}
.preview-bar strong { color: var(--ink); }
.story-intro p, .story-outro p { margin-bottom: 1em; }
.story-outro strong { color: var(--sun); }

/* 15. About ================================================================ */
.story-quote {
    position: relative; margin: 28px 0; padding: 28px 28px 28px 32px;
    background: rgba(255, 255, 255, .05); border-radius: var(--r-lg); border-left: 4px solid var(--sun);
    font-size: 1rem; line-height: 1.8; color: rgba(255, 255, 255, .85); font-style: italic;
}
.story-media { position: relative; }
.story-media img { border-radius: var(--r-xl); width: 100%; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .7); }
.story-media::before { content: ''; position: absolute; inset: 24px -18px -18px 24px; border: 2px solid rgba(247, 201, 40, .45); border-radius: var(--r-xl); z-index: 0; }
.story-media img { position: relative; z-index: 1; }
.hashtag { display: inline-block; color: var(--sun); font-weight: 800; }

.timeline { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: clamp(48px, 6vw, 72px) 0 0; padding: 0; list-style: none; position: relative; }
.timeline::before { content: ''; position: absolute; left: 8%; right: 8%; top: 27px; height: 2px; background: linear-gradient(90deg, var(--sun), rgba(247, 201, 40, .15)); }
.timeline-item { position: relative; text-align: center; padding: 0 12px; }
.timeline-dot { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 18px; background: var(--navy); border: 2px solid var(--sun); color: var(--sun); position: relative; }
.timeline-year { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; color: var(--sun); line-height: 1.1; }
.timeline-title { color: #fff; font-weight: 700; margin: 6px 0 4px; }
.timeline-item p { font-size: .9rem; color: rgba(255, 255, 255, .6); margin: 0; }

.image-card { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--brand-100); }
.image-card img { width: 100%; height: 100%; object-fit: cover; }

.mv-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 28px); }
.mv-card { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(28px, 4vw, 48px); background: var(--surface); border: 1px solid var(--line-2); }
.mv-card--brand { background: var(--brand); border-color: var(--brand); color: rgba(255, 255, 255, .85); }
.mv-card--brand h3 { color: #fff; }
.mv-card-icon { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; background: var(--sun); color: var(--ink); margin-bottom: 24px; }
.mv-card h3 { font-size: 1.7rem; margin-bottom: 12px; }
.mv-card p { font-size: 1.05rem; line-height: 1.75; }

.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.stat-card { padding: 28px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line-2); display: flex; flex-direction: column; gap: 6px; }
.stat-card-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-50); color: var(--brand); margin-bottom: 18px; }
.stat-card-value { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--ink); line-height: 1; order: 2; }
.stat-card-label { font-weight: 700; color: var(--muted); font-size: .92rem; order: 3; margin: 0; font-family: var(--font-body); }
.stat-card-icon { order: 1; }

.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); }
.team-card { text-align: left; }
.team-photo { aspect-ratio: 4 / 5; border-radius: var(--r-lg); overflow: hidden; background: var(--brand-50); margin-bottom: 16px; }
.team-card:nth-child(2) .team-photo { background: var(--tint-sun); }
.team-card:nth-child(3) .team-photo { background: var(--tint-mint); }
.team-card:nth-child(4) .team-photo { background: var(--tint-peach); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .6s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-card h3 { font-size: 1.2rem; margin-bottom: 2px; }
.team-card p { font-size: .9rem; color: var(--muted); margin: 0; font-weight: 600; }

.partner-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.partner {
    aspect-ratio: 3 / 2; display: grid; place-items: center; padding: 18px;
    background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r);
    transition: box-shadow var(--t), transform var(--t);
}
.partner:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.partner img { max-width: 100%; max-height: 64px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .75; transition: filter var(--t), opacity var(--t); }
.partner:hover img { filter: none; opacity: 1; }
.thanks-pill { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 10px 20px; border-radius: var(--r-pill); background: var(--sun-50); color: var(--ink); font-weight: 700; font-style: italic; }

/* Blog / TapCorner */
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 28px); }
.post-card {
    display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line-2);
    border-radius: var(--r-lg); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--brand-50); }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .post-media img { transform: scale(1.05); }
.post-media .badge { position: absolute; top: 14px; left: 14px; max-width: calc(100% - 28px); white-space: normal; text-transform: none; letter-spacing: 0; font-size: .76rem; }
.post-media .post-readtime { top: auto; left: auto; right: 14px; bottom: 14px; background: rgba(14, 26, 51, .78); }
.post-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.post-meta { display: flex; gap: 16px; font-size: .82rem; color: var(--muted); font-weight: 600; }
.post-meta span { display: inline-flex; align-items: center; gap: 6px; }
.post-body h3 { margin: 0; font-size: 1.22rem; line-height: 1.3; }
.post-body p { font-size: .92rem; color: var(--muted); margin: 0; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.post-body .btn--ghost { align-self: flex-start; margin-top: auto; padding-left: 0; }

/* Dialog (modal) */
.modal {
    width: min(820px, calc(100vw - 32px)); max-height: calc(100dvh - 48px);
    padding: 0; border: 0; border-radius: var(--r-xl); background: var(--surface); color: var(--ink-2);
    box-shadow: var(--shadow-lg); overflow: hidden;
}
.modal[open] { animation: modal-in .35s var(--ease); display: flex; flex-direction: column; }
.modal::backdrop { background: rgba(11, 24, 52, .6); backdrop-filter: blur(4px); }
.modal-scroll { overflow-y: auto; }
.modal-cover { position: relative; aspect-ratio: 16 / 7; background: var(--brand-50); }
.modal-cover img { width: 100%; height: 100%; object-fit: cover; }
.modal-cover .badge { position: absolute; left: 20px; bottom: 20px; text-transform: none; letter-spacing: 0; white-space: normal; }
.modal-close {
    position: absolute; top: 16px; right: 16px; z-index: 5; width: 44px; height: 44px; border-radius: 50%; border: 0;
    display: grid; place-items: center; background: rgba(255, 255, 255, .94); color: var(--ink); box-shadow: var(--shadow-sm);
    transition: transform var(--t);
}
.modal-close:hover { transform: rotate(90deg); }
.modal-body { padding: clamp(24px, 4vw, 44px); }
.modal-body h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 18px; }
.modal-foot { display: flex; justify-content: flex-end; padding: 18px clamp(24px, 4vw, 44px); border-top: 1px solid var(--line-2); background: var(--surface); }

/* Article content (inside modal) */
.article { font-size: 1.02rem; line-height: 1.8; }
.article p { margin-bottom: 1.1em; }
.article h3 { font-size: 1.45rem; margin: 1.6em 0 .6em; }
.article h4 { font-family: var(--font-body); font-weight: 800; font-size: 1rem; margin: 0 0 .6em; }
.article .byline { font-weight: 700; color: var(--brand); }
.article .kicker { display: inline-block; padding: 4px 14px; border-radius: var(--r-pill); background: var(--tint-peach); color: var(--peach-ink); font-weight: 700; font-size: .85rem; margin-bottom: 16px; }
.article .lede { font-size: 1.15rem; color: var(--ink); }
.callout { padding: 22px 24px; border-radius: var(--r-lg); margin: 1.6em 0; background: var(--surface-2); }
.callout > :last-child { margin-bottom: 0; }
.callout--quote { border-left: 4px solid var(--sun); font-style: italic; font-size: 1.1rem; color: var(--ink); }
.callout--sky { background: var(--tint-sky); }
.callout--mint { background: var(--tint-mint); }
.callout--sun { background: var(--tint-sun); }
.callout--peach { background: var(--tint-peach); }
.callout--lilac { background: var(--tint-lilac); }
.callout--dashed { background: transparent; border: 2px dashed var(--sun); text-align: center; }
.callout--brand { background: var(--brand); color: rgba(255, 255, 255, .9); text-align: center; }
.callout--brand strong, .callout--brand .big { color: #fff; }
.article .big { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ink); line-height: 1.3; margin-bottom: .4em; }
.article .center { text-align: center; }
.article .stat { font-family: var(--font-display); font-size: 1.8rem; color: var(--coral); font-weight: 600; }
.num-list { list-style: none; padding: 0; margin: 1.2em 0; display: grid; gap: 12px; counter-reset: n; }
.num-list > li { counter-increment: n; display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start; }
.num-list > li::before { content: counter(n); width: 36px; height: 36px; border-radius: 12px; display: grid; place-items: center; background: var(--ink); color: #fff; font-weight: 800; font-size: .92rem; }
.num-list h4 { margin-bottom: 4px; }
.num-list p { margin: 0; }
.num-list--compact > li { align-items: center; background: #fff; padding: 10px 14px; border-radius: var(--r); }
.icon-row { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 12px; }
.icon-row span { display: grid; justify-items: center; gap: 8px; font-weight: 700; color: var(--ink); }
.icon-row i { width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; font-style: normal; font-size: 1.6rem; background: #fff; }
.four-c { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 1.6em 0; }
.four-c div { padding: 20px; border-radius: var(--r); text-align: center; font-weight: 800; color: var(--ink); }
.four-c div:nth-child(1) { background: var(--tint-mint); }
.four-c div:nth-child(2) { background: var(--tint-sky); }
.four-c div:nth-child(3) { background: var(--tint-sun); }
.four-c div:nth-child(4) { background: var(--tint-lilac); }
.four-c span { display: block; font-size: 1.8rem; margin-bottom: 6px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.pill-list span { background: #fff; padding: 6px 14px; border-radius: var(--r-pill); font-size: .88rem; box-shadow: var(--shadow-xs); }
.hashtags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 2em; padding-top: 1.4em; border-top: 1px solid var(--line-2); }
.hashtags span { padding: 5px 14px; border-radius: var(--r-pill); background: var(--brand-50); color: var(--brand); font-size: .85rem; font-weight: 700; }

/* 16. Gallery & video ====================================================== */
.masonry { columns: 3 300px; column-gap: 18px; }
.masonry-item {
    position: relative; break-inside: avoid; margin: 0 0 18px; border-radius: var(--r-lg); overflow: hidden;
    background: var(--brand-50); cursor: zoom-in; display: block; width: 100%; padding: 0; border: 0; text-align: left;
}
.masonry-item img { width: 100%; transition: transform .8s var(--ease); }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-caption {
    position: absolute; inset: auto 0 0 0; padding: 48px 20px 18px; color: #fff;
    background: linear-gradient(to top, rgba(11, 24, 52, .85), transparent);
    transform: translateY(12px); opacity: 0; transition: opacity var(--t), transform var(--t);
}
.masonry-item:hover .masonry-caption, .masonry-item:focus-visible .masonry-caption { opacity: 1; transform: none; }
.masonry-caption strong { display: block; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.masonry-caption span { font-size: .88rem; opacity: .85; }

.lightbox { width: min(1100px, calc(100vw - 32px)); background: transparent; box-shadow: none; overflow: visible; }
.lightbox[open] { display: block; }
.lightbox figure { margin: 0; }
.lightbox img { max-height: calc(100dvh - 160px); width: auto; margin: 0 auto; border-radius: var(--r-lg); }
.lightbox figcaption { text-align: center; color: #fff; margin-top: 14px; }
.lightbox figcaption strong { color: #fff; display: block; font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.lightbox .modal-close { top: -8px; right: -8px; }

.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 28px); }
.video-card { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; }
.video-frame { position: relative; aspect-ratio: 16 / 9; background: var(--navy); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-info { padding: 18px 20px 22px; display: grid; gap: 10px; align-content: start; }
.video-info h3 { font-family: var(--font-body); font-size: .98rem; font-weight: 700; line-height: 1.5; margin: 0; color: var(--ink); }
.video-info h3 strong { color: var(--brand); }
.badge--howto { background: var(--tint-peach); color: var(--peach-ink); }
.badge--classroom { background: var(--tint-mint); color: var(--mint-ink); }
.badge--games { background: var(--tint-lilac); color: var(--lilac-ink); }
.badge--media { background: var(--tint-sun); color: #8A6800; }
.video-info .badge { justify-self: start; text-transform: none; letter-spacing: 0; font-size: .78rem; }

.social-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* 17. Flash cards & audio ================================================== */
.cards-hero { position: relative; overflow: hidden; background: var(--brand); color: rgba(255, 255, 255, .82); padding: clamp(48px, 7vw, 96px) 0; isolation: isolate; }
.cards-hero::before { content: ''; position: absolute; width: 640px; height: 640px; border-radius: 50%; right: -200px; top: -260px; background: rgba(255, 255, 255, .07); z-index: -1; }
.cards-hero::after { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; left: -120px; bottom: -180px; background: rgba(247, 201, 40, .2); z-index: -1; }
.cards-hero h1 { color: #fff; }
.cards-hero .hl-sun { color: var(--ink); }
.cards-hero .lead { color: rgba(255, 255, 255, .8); }
.cards-hero .badge { margin-bottom: 20px; }
.hero-stats--light { border-color: rgba(255, 255, 255, .18); }
.hero-stats--light strong { color: #fff; }
.hero-stats--light span { color: rgba(255, 255, 255, .7); }

.card-stack { position: relative; width: min(340px, 80%); aspect-ratio: 3 / 4; margin: 0 auto; }
.card-stack-layer { position: absolute; inset: 0; border-radius: 28px; }
.card-stack-layer:nth-child(1) { background: var(--sun); transform: rotate(-12deg) translate(-30px, 10px); }
.card-stack-layer:nth-child(2) { background: #FF8A65; transform: rotate(-5deg) translate(-12px, 4px); }
.card-stack-front {
    position: absolute; inset: 0; border-radius: 28px; background: #fff; box-shadow: var(--shadow-lg);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 28px; text-align: center;
    transform: rotate(4deg); transition: transform .5s var(--ease);
}
.card-stack:hover .card-stack-front { transform: rotate(0deg) translateY(-6px); }
.card-stack-emoji { font-size: 4rem; line-height: 1; }
.card-stack-title { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; color: var(--ink); }
.card-stack-tap { width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center; background: var(--brand-50); border: 0; padding: 14px; transition: transform var(--t); }
.card-stack-tap:hover { transform: scale(1.08); }
.card-stack-tap img { width: 100%; }
.card-stack-hint { font-size: .8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

.featured-banner {
    display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 64px); align-items: center;
    background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-xl); padding: clamp(28px, 5vw, 56px); box-shadow: var(--shadow-sm);
}
.featured-banner h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.featured-points { list-style: none; padding: 0; margin: 20px 0 28px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.featured-points li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); font-size: .95rem; }
.featured-points .icon { color: var(--success); flex-shrink: 0; }
.featured-buy { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--line-2); }
.featured-buy .price { font-size: 2rem; }
.price-label { display: block; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; color: var(--muted); }
.featured-media { position: relative; aspect-ratio: 1; border-radius: var(--r-xl); overflow: hidden; background: var(--tint-sun); box-shadow: var(--shadow); }
.featured-media img { width: 100%; height: 100%; object-fit: cover; }

.audio-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); }
.audio-card {
    position: relative; display: grid; grid-template-columns: 170px 1fr; gap: 22px;
    padding: 14px; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.audio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.audio-card.is-playing { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-100), var(--shadow); }
.audio-card-media { position: relative; border-radius: calc(var(--r-lg) - 6px); overflow: hidden; background: var(--tint-sky); aspect-ratio: 13 / 20; align-self: start; }
.audio-card-media img { width: 100%; height: 100%; object-fit: cover; }
.audio-card-body { display: flex; flex-direction: column; gap: 8px; padding: 8px 8px 6px 0; min-width: 0; }
.audio-card-body h3 { margin: 0; font-size: 1.25rem; }
.audio-card-body > p { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.55; }
.audio-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.audio-details { margin: 4px 0 0; display: grid; gap: 4px; font-size: .82rem; line-height: 1.5; color: var(--ink-2); }
.audio-details dt { display: inline; font-weight: 800; color: var(--ink); }
.audio-details dd { display: inline; margin: 0; }
.audio-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--line); flex-wrap: wrap; }
.audio-card-actions { display: flex; gap: 8px; align-items: center; }
.play-btn {
    width: 46px; height: 46px; border-radius: 50%; border: 0; display: grid; place-items: center;
    background: var(--brand-50); color: var(--brand); transition: background var(--t), color var(--t), transform var(--t);
}
.play-btn:hover { background: var(--brand); color: #fff; transform: scale(1.06); }
.play-btn .icon-pause { display: none; }
.play-btn[aria-pressed="true"] { background: var(--brand); color: #fff; }
.play-btn[aria-pressed="true"] .icon-play { display: none; }
.play-btn[aria-pressed="true"] .icon-pause { display: block; }
.audio-card-media .play-btn { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 58px; height: 58px; background: rgba(255, 255, 255, .92); box-shadow: var(--shadow); }
.audio-card-media .play-btn:hover { transform: translate(-50%, -50%) scale(1.08); background: var(--brand); color: #fff; }
.audio-card-media .play-btn[aria-pressed="true"] { background: var(--brand); color: #fff; }

.player {
    position: fixed; left: 50%; bottom: 20px; z-index: 120; width: min(560px, calc(100vw - 24px));
    display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 14px;
    padding: 12px 14px 16px 12px; background: var(--navy); color: #fff; border-radius: 22px; box-shadow: var(--shadow-lg);
    transform: translate(-50%, 140%); visibility: hidden; overflow: hidden;
    transition: transform .45s var(--ease), visibility 0s linear .45s;
}
.player.is-open { transform: translate(-50%, 0); visibility: visible; transition: transform .45s var(--ease), visibility 0s; }
.player-art { width: 56px; height: 56px; border-radius: 14px; background: #fff; display: grid; place-items: center; overflow: hidden; }
.player-art img { width: 100%; height: 100%; object-fit: contain; }
.player-info { min-width: 0; }
.player-info strong { display: block; color: #fff; font-size: .98rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-info span { display: block; font-size: .8rem; color: rgba(255, 255, 255, .6); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-controls { display: flex; gap: 6px; }
.player-controls button { width: 40px; height: 40px; border-radius: 50%; border: 0; display: grid; place-items: center; background: rgba(255, 255, 255, .1); color: #fff; }
.player-controls button:hover { background: var(--sun); color: var(--ink); }
.player-toggle .icon-play { display: none; }
.player.is-paused .player-toggle .icon-play { display: block; }
.player.is-paused .player-toggle .icon-pause { display: none; }
.player-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: rgba(255, 255, 255, .12); }
.player-progress span { display: block; height: 100%; width: 0; background: var(--sun); transition: width .2s linear; }

.bundle {
    display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px, 5vw, 56px); align-items: center;
    background: var(--tint-sun); border-radius: var(--r-xl); padding: clamp(28px, 5vw, 56px);
}
.bundle-list { list-style: none; padding: 0; margin: 20px 0 24px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.bundle-list li { display: flex; align-items: center; gap: 10px; background: #fff; padding: 12px 16px; border-radius: var(--r); font-weight: 700; color: var(--ink); font-size: .92rem; }
.bundle-list .icon { color: var(--brand); }
.bundle-pricing { display: flex; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.bundle-pricing s { color: var(--muted); font-weight: 700; }
.bundle-pricing .price { font-size: 2.2rem; }
.bundle-media { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg); transform: rotate(-2deg); }
.bundle-media img { width: 100%; height: 100%; object-fit: cover; }

/* 18. Shop / product detail ================================================ */
.pd { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.pd-gallery { position: sticky; top: calc(var(--header-h) + 24px); }
.pd-main {
    position: relative; aspect-ratio: 1; border-radius: var(--r-xl); overflow: hidden;
    background: radial-gradient(100% 80% at 50% 10%, #fff 0%, var(--tint-sky) 75%); border: 1px solid var(--line-2);
    display: grid; place-items: center;
}
.pd-main img { width: 86%; height: 86%; object-fit: contain; transition: opacity .25s ease; }
.pd-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
    width: 46px; height: 46px; border-radius: 50%; border: 0; display: grid; place-items: center;
    background: rgba(255, 255, 255, .95); color: var(--ink); box-shadow: var(--shadow-sm); transition: background var(--t), color var(--t);
}
.pd-arrow:hover { background: var(--ink); color: #fff; }
.pd-arrow--prev { left: 16px; }
.pd-arrow--next { right: 16px; }
.pd-thumbs { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin-top: 12px; }
.pd-thumb { aspect-ratio: 1; border-radius: var(--r); border: 2px solid transparent; padding: 6px; background: var(--surface); box-shadow: var(--shadow-xs); transition: border-color var(--t); }
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pd-thumb.is-active, .pd-thumb:hover { border-color: var(--brand); }

.pd-info .pcard-cat { margin-bottom: 10px; }
.pd-info h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.pd-price-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.pd-price-row .price { font-size: clamp(1.8rem, 3vw, 2.3rem); }
.pd-desc { font-size: 1.05rem; color: var(--ink-2); margin-bottom: 22px; }
.pd-facts { display: grid; gap: 10px; padding: 18px 20px; border-radius: var(--r-lg); background: var(--surface-2); margin-bottom: 24px; }
.pd-fact { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: .92rem; }
.pd-fact span:first-child { color: var(--muted); font-weight: 600; }
.pd-fact span:last-child { color: var(--ink); font-weight: 700; text-align: right; }
.pd-buy { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.pd-buy .btn { flex: 1; min-width: 200px; min-height: 58px; }

.qty { display: inline-flex; align-items: center; background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--r-pill); height: 58px; padding: 0 6px; }
.qty button { width: 44px; height: 44px; border-radius: 50%; border: 0; background: transparent; display: grid; place-items: center; color: var(--ink); transition: background var(--t); }
.qty button:hover { background: var(--surface-2); }
.qty input { width: 44px; border: 0; background: transparent; text-align: center; font-weight: 800; font-size: 1.05rem; color: var(--ink); -moz-appearance: textfield; appearance: textfield; outline: none; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty--sm { height: 42px; padding: 0 4px; }
.qty--sm button { width: 32px; height: 32px; }
.qty--sm input { width: 34px; font-size: .95rem; }

.assurance { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.assurance li { display: flex; align-items: flex-start; gap: 12px; font-size: .9rem; color: var(--ink-2); }
.assurance .icon { color: var(--brand); flex-shrink: 0; margin-top: 2px; }

.tabs { margin-top: clamp(48px, 6vw, 72px); }
.tab-list { display: flex; gap: 6px; border-bottom: 1px solid var(--line); margin-bottom: 28px; overflow-x: auto; }
.tab-btn { position: relative; padding: 14px 18px; border: 0; background: none; font-weight: 700; color: var(--muted); white-space: nowrap; }
.tab-btn::after { content: ''; position: absolute; left: 12px; right: 12px; bottom: -1px; height: 3px; border-radius: 3px 3px 0 0; background: var(--brand); transform: scaleX(0); transition: transform var(--t); }
.tab-btn[aria-selected="true"] { color: var(--ink); }
.tab-btn[aria-selected="true"]::after { transform: scaleX(1); }
.tab-panel { max-width: 820px; font-size: 1.02rem; }
.info-table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-2); }
.info-table th, .info-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--line-2); font-size: .94rem; vertical-align: top; }
.info-table th { width: 34%; color: var(--ink); font-weight: 700; background: var(--surface-2); }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: 0; }

/* 19. Cart / checkout / payment ============================================ */
.steps-bar { display: flex; align-items: center; gap: 10px; list-style: none; padding: 0; margin: 0 0 8px; font-size: .86rem; font-weight: 700; color: var(--muted); flex-wrap: wrap; }
.steps-bar--center { justify-content: center; }
.steps-bar li { display: inline-flex; align-items: center; gap: 8px; }
.steps-bar li + li::before { content: ''; width: 28px; height: 2px; border-radius: 2px; background: var(--line); margin-right: 2px; }
.steps-bar .n { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--surface); border: 1.5px solid var(--line); font-size: .78rem; }
.steps-bar .is-done .n { background: var(--success); border-color: var(--success); color: #fff; }
.steps-bar .is-current { color: var(--ink); }
.steps-bar .is-current .n { background: var(--ink); border-color: var(--ink); color: #fff; }

.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: clamp(20px, 3vw, 36px); align-items: start; }
.panel { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg); }
.panel-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 20px 24px; border-bottom: 1px solid var(--line-2); }
.panel-head h2 { font-size: 1.25rem; margin: 0; }
.panel-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 24px; background: var(--surface-2); border-radius: 0 0 var(--r-lg) var(--r-lg); flex-wrap: wrap; }

.cart-item { display: grid; grid-template-columns: 96px 1fr auto auto 44px; gap: 20px; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--line-2); }
.cart-item:last-child { border-bottom: 0; }
.cart-thumb { width: 96px; height: 96px; border-radius: var(--r); background: var(--tint-sky); overflow: hidden; display: grid; place-items: center; }
.cart-thumb img { width: 88%; height: 88%; object-fit: contain; }
.cart-item h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 800; margin: 0 0 4px; }
.cart-item-each { font-size: .86rem; color: var(--muted); margin: 0; }
.cart-line-total { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--ink); min-width: 110px; text-align: right; white-space: nowrap; }
.icon-btn { width: 40px; height: 40px; border-radius: 50%; border: 0; display: grid; place-items: center; background: transparent; color: var(--muted); transition: background var(--t), color var(--t); }
.icon-btn:hover { background: var(--danger-bg); color: var(--danger); }
.text-btn { background: none; border: 0; padding: 0; color: var(--muted); font-weight: 700; font-size: .88rem; text-decoration: underline; text-underline-offset: 3px; }
.text-btn:hover { color: var(--danger); }

.summary { position: sticky; top: calc(var(--header-h) + 24px); padding: 26px; }
.summary h2 { font-size: 1.3rem; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; gap: 12px; font-size: .95rem; margin-bottom: 12px; color: var(--ink-2); }
.summary-row span:last-child { font-weight: 700; color: var(--ink); text-align: right; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 18px; margin: 18px 0 22px; border-top: 1px dashed var(--line); }
.summary-total span:first-child { font-weight: 800; color: var(--ink); }
.summary-total .price { font-size: 1.7rem; }
.ship-progress { margin: 6px 0 18px; padding: 14px 16px; border-radius: var(--r); background: var(--sun-50); font-size: .86rem; color: var(--ink-2); }
.ship-progress.is-unlocked { background: var(--success-bg); color: var(--success); font-weight: 700; }
.ship-bar { height: 6px; border-radius: var(--r-pill); background: rgba(14, 26, 51, .08); margin-top: 10px; overflow: hidden; }
.ship-bar span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--sun), var(--sun-600)); }
.summary .assurance { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line-2); }
.pay-logos { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.pay-logos span { font-size: .72rem; font-weight: 800; padding: 4px 10px; border-radius: 8px; background: var(--surface-2); color: var(--ink-2); }

.summary-item { display: grid; grid-template-columns: 58px 1fr auto; gap: 12px; align-items: center; margin-bottom: 14px; }
.summary-item-thumb { position: relative; width: 58px; height: 58px; border-radius: 14px; background: var(--tint-sky); display: grid; place-items: center; }
.summary-item-thumb img { width: 86%; height: 86%; object-fit: contain; }
.summary-item-qty { position: absolute; top: -6px; right: -6px; min-width: 22px; height: 22px; padding: 0 5px; border-radius: var(--r-pill); background: var(--ink); color: #fff; font-size: .72rem; font-weight: 800; display: grid; place-items: center; }
.summary-item-name { font-size: .9rem; font-weight: 700; color: var(--ink); line-height: 1.35; min-width: 0; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.summary-item-sub { font-size: .78rem; color: var(--muted); font-weight: 600; }
.summary-item-price { font-weight: 700; font-size: .9rem; color: var(--ink); white-space: nowrap; }

.form-card { padding: clamp(22px, 3vw, 32px); margin-bottom: 20px; }
.form-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.form-card-head .n { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--brand-50); color: var(--brand); font-weight: 800; font-size: .9rem; flex-shrink: 0; }
.form-card-head h2 { font-size: 1.25rem; margin: 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 700; color: var(--ink); }
.field label span { font-weight: 500; color: var(--muted); }
.input {
    width: 100%; min-height: 52px; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 14px;
    background: var(--surface); color: var(--ink); font-size: .96rem; transition: border-color var(--t), box-shadow var(--t);
}
textarea.input { min-height: 96px; resize: vertical; }
.input::placeholder { color: #A3A9B8; }
.input:hover { border-color: #D6D0C4; }
.input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-100); }
.field-hint { font-size: .8rem; color: var(--muted); }

.pay-option { display: flex; align-items: flex-start; gap: 14px; padding: 18px; border: 2px solid var(--brand); border-radius: var(--r); background: var(--brand-50); }
.pay-radio { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--brand); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.pay-radio::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--brand); }
.pay-option strong { display: block; font-size: 1rem; }
.pay-option span { font-size: .86rem; color: var(--muted); }
.pay-note-box { display: flex; gap: 12px; margin-top: 14px; padding: 14px 16px; border-radius: var(--r); background: var(--surface-2); font-size: .88rem; color: var(--ink-2); }
.pay-note-box .icon { color: var(--brand); flex-shrink: 0; margin-top: 2px; }

.alert { display: flex; gap: 12px; padding: 16px 18px; border-radius: var(--r); margin-bottom: 22px; font-size: .94rem; }
.alert--error { background: var(--danger-bg); color: var(--danger); }
.alert ul { margin: 0; padding-left: 18px; }
.alert .icon { flex-shrink: 0; margin-top: 2px; }

.status-card { max-width: 640px; margin: 0 auto; text-align: center; padding: clamp(32px, 5vw, 56px); }
.status-icon { width: 88px; height: 88px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 24px; }
.status-icon--success { background: var(--success-bg); color: var(--success); }
.status-icon--error { background: var(--danger-bg); color: var(--danger); }
.status-icon--brand { background: var(--brand-50); color: var(--brand); }
.status-card h1, .status-card h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 12px; }
.status-card .lead { margin-bottom: 24px; }
.status-meta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.status-meta div { padding: 12px 18px; border-radius: var(--r); background: var(--surface-2); text-align: left; }
.status-meta small { display: block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 800; color: var(--muted); }
.status-meta strong { font-size: 1rem; }
.status-lines { text-align: left; border-top: 1px solid var(--line-2); margin: 8px 0 20px; }
.status-line { display: flex; justify-content: space-between; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line-2); font-size: .95rem; }
.status-line--total { font-weight: 800; color: var(--ink); font-size: 1.1rem; border-bottom: 0; }
.spinner { width: 72px; height: 72px; margin: 0 auto 28px; position: relative; }
.spinner::before, .spinner::after { content: ''; position: absolute; inset: 0; border-radius: 50%; }
.spinner::before { border: 6px solid var(--brand-50); }
.spinner::after { border: 6px solid transparent; border-top-color: var(--brand); border-right-color: var(--sun); animation: spin 1s linear infinite; }
.pending-steps { list-style: none; padding: 0; margin: 24px auto; max-width: 420px; text-align: left; display: grid; gap: 10px; }
.pending-steps li { display: flex; gap: 12px; align-items: center; padding: 12px 16px; background: var(--surface-2); border-radius: var(--r); font-size: .92rem; }
.pending-steps .icon { color: var(--brand); flex-shrink: 0; }

/* 20. Utilities & motion =================================================== */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: clamp(32px, 4vw, 48px); }
.text-center { text-align: center; }
.center-row { display: flex; justify-content: center; margin-top: clamp(32px, 4vw, 48px); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes bump { 0%, 100% { transform: scale(1); } 40% { transform: scale(1.35); } }
@keyframes toast-in { from { opacity: 0; transform: translateY(-12px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes toast-out { to { opacity: 0; transform: translateX(24px); } }
@keyframes modal-in { from { opacity: 0; transform: translateY(24px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.float { animation: float 5s ease-in-out infinite; }

/* Scroll reveal — only hides content when JS is running */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .js .reveal { opacity: 1; transform: none; }
}

/* Responsive =============================================================== */
@media (max-width: 1180px) {
    .main-nav a { padding: 9px 10px; font-size: .88rem; }
    .site-header .container { gap: 16px; }
    .product-grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .partner-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-grid > :last-child { grid-column: 1 / -1; }
    .audio-card { grid-template-columns: 140px 1fr; }
}

@media (max-width: 1024px) {
    :root { --header-h: 68px; }

    .menu-toggle { display: inline-flex; }
    .main-nav {
        position: fixed; inset: var(--header-h) 0 0 0; z-index: 99; display: block;
        background: var(--bg); padding: 20px var(--gutter) 40px; overflow-y: auto;
        opacity: 0; visibility: hidden; transform: translateY(-8px);
        transition: opacity .25s ease, transform .25s ease, visibility .25s;
    }
    .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
    .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
    .main-nav a { display: flex; justify-content: space-between; padding: 16px 18px; font-size: 1.1rem; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line-2); }
    .main-nav a::after { content: '›'; font-size: 1.4rem; line-height: 1; color: var(--muted); }
    .site-header .container { justify-content: space-between; }
    body.nav-open { overflow: hidden; }

    .hero-grid, .split, .split--wide-left, .page-hero-grid, .faq-layout, .pd, .featured-banner, .bundle, .newsletter, .cta-band, .cart-layout, .promo { grid-template-columns: 1fr; }
    .hero-visual { max-width: 560px; width: 100%; margin: 0 auto; }
    .hero-label { left: 12px; }
    .hero-badge-seal { right: 12px; }
    .faq-aside, .pd-gallery, .summary { position: static; }
    .pkg-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
    .steps { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
    .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cat-grid { grid-template-columns: 1fr; }
    .product-grid--4, .product-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .carousel-track { grid-auto-columns: calc((100% - 24px) / 2); }
    .post-grid, .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .audio-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .partner-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .cta-band-media { max-width: 420px; }
    .page-hero-media { max-height: 420px; }
    .featured-media, .bundle-media { max-width: 420px; width: 100%; margin: 0 auto; }
    .story-media { max-width: 440px; margin: 0 auto; }
    .mosaic { max-width: 560px; margin: 0 auto; width: 100%; }
}

@media (max-width: 720px) {
    :root { --gutter: 16px; }

    body { font-size: 15px; }
    .announce { font-size: .76rem; padding: 8px 0; }
    .announce .container { gap: 4px 10px; }
    .announce .container > .icon { display: none; }
    .brand-logo img { height: 28px; }
    .cart-link { padding: 0 12px; height: 44px; }
    .cart-link-label { display: none; }
    .menu-toggle { width: 44px; height: 44px; }

    .hero { padding-top: 28px; }
    .hero h1 { font-size: clamp(2.5rem, 12vw, 3.2rem); }
    .hero-rotator { min-height: 5em; }
    .hero .btn-row .btn, .page-hero .btn-row .btn { flex: 1 1 auto; }
    .hero-stats { justify-content: space-between; gap: 12px; }
    .hero-frame { border-radius: 28px 28px 28px 72px; aspect-ratio: 1; }
    .hero-label { bottom: 16px; left: 12px; padding: 10px 14px 10px 10px; min-width: 0; }
    .hero-label-icon { width: 38px; height: 38px; border-radius: 12px; }
    .hero-badge-seal { width: 84px; height: 84px; font-size: .6rem; top: 14px; right: 12px; padding: 10px; }
    .hero-dots { right: 14px; bottom: auto; top: auto; bottom: 86px; }

    .trust-strip { grid-template-columns: 1fr; gap: 8px; }
    .trust-item { padding: 14px 16px; align-items: center; }
    .trust-icon { width: 40px; height: 40px; }

    .section-head--split { align-items: flex-start; }
    .mosaic { grid-template-rows: 150px 110px 150px; gap: 10px; }
    .mosaic-seal { width: 72px; height: 72px; }

    .product-grid, .product-grid--4, .product-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .pcard { border-radius: 18px; }
    .pcard-media { margin: 6px 6px 0; border-radius: 14px; }
    .pcard-media img { padding: 8px; }
    .pcard-body { padding: 12px 12px 14px; gap: 6px; }
    .pcard-title { font-size: .98rem; }
    .pcard-desc { font-size: .8rem; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
    .pcard .tag-list, .pcard-skills, .pcard-meta { display: none; }
    .pcard-footer { flex-direction: column; align-items: flex-start; gap: 6px; padding-top: 8px; }
    .pcard-footer .price { font-size: 1.08rem; }
    .pcard-age { font-size: .7rem; padding: 3px 8px; }
    .pcard-cat { font-size: .64rem; }
    .pcard-actions { margin-top: 10px; gap: 6px; }
    .pcard-actions .btn { min-height: 40px; font-size: .82rem; padding: 8px 10px; }
    .pcard-actions .btn--icon { flex-basis: 40px; width: 40px; min-height: 40px; }
    .pcard-actions .btn-label { display: none; }
    .pcard-fav { width: 32px; height: 32px; top: 8px; right: 8px; }
    .pcard-badges { top: 8px; left: 8px; }
    .pcard-badges .badge { font-size: .6rem; padding: 4px 8px; }

    .shop-toolbar { position: static; padding: 12px; }
    .shop-toolbar-row { flex-direction: column; align-items: stretch; }
    .filter-group {
        flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none;
        width: calc(100% + var(--gutter) * 2); max-width: none;
        margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
    }
    .filter-group::-webkit-scrollbar { display: none; }
    .shop-toolbar .filter-group { width: 100%; margin-inline: 0; padding-inline: 0; }
    .filter-bar { flex-direction: column; align-items: stretch; }
    .filter-group--center { justify-content: flex-start; margin-inline: calc(var(--gutter) * -1); }
    .filter-bar { display: block; }
    .filter-bar .result-count { display: block; margin-top: 10px; }

    .carousel-track { grid-auto-columns: 88%; gap: 14px; }
    .quote-card { padding: 24px; }
    .faq summary { padding: 16px; gap: 12px; font-size: .96rem; }
    .faq-q-icon { width: 34px; height: 34px; }
    .faq-answer { padding: 0 16px 18px 16px; }

    .newsletter-form { flex-direction: column; border-radius: var(--r-lg); padding: 8px; }
    .newsletter-form input { min-height: 48px; }

    .cat-tile { min-height: 0; }
    .cat-minis { gap: 8px; }

    .post-grid, .video-grid, .mv-grid { grid-template-columns: 1fr; }
    .story-media::before { inset: 14px -10px -10px 14px; }
    .timeline { grid-template-columns: 1fr; gap: 28px; }
    .timeline::before { left: 27px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; background: linear-gradient(180deg, var(--sun), rgba(247, 201, 40, .15)); }
    .timeline-item { display: grid; grid-template-columns: 56px 1fr; gap: 18px; text-align: left; padding: 0; }
    .timeline-dot { margin: 0; }
    .stat-card { padding: 20px; }
    .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .masonry { columns: 2 140px; column-gap: 10px; }
    .masonry-item { margin-bottom: 10px; border-radius: var(--r); }
    .masonry-caption { opacity: 1; transform: none; padding: 32px 12px 10px; }
    .masonry-caption strong { font-size: .92rem; }
    .masonry-caption span { display: none; }

    .audio-card { grid-template-columns: 104px 1fr; gap: 14px; padding: 10px; }
    .audio-details { display: none; }
    .audio-card-body h3 { font-size: 1.08rem; }
    .audio-card-body > p { font-size: .84rem; }
    .audio-card-media .play-btn { width: 46px; height: 46px; }
    .featured-points, .bundle-list { grid-template-columns: 1fr; }

    .cart-item { grid-template-columns: 76px 1fr auto; grid-template-areas: "thumb info remove" "thumb qty total"; gap: 10px 14px; padding: 16px; }
    .cart-thumb { grid-area: thumb; width: 76px; height: 76px; }
    .cart-item-info { grid-area: info; }
    .cart-item .qty { grid-area: qty; justify-self: start; }
    .cart-line-total { grid-area: total; min-width: 0; font-size: 1.02rem; }
    .cart-item form.cart-remove { grid-area: remove; }
    .panel-head, .panel-foot { padding: 16px; }
    .form-grid { grid-template-columns: 1fr; }
    .pd-buy .btn { min-width: 0; }
    .pd-thumbs { gap: 8px; }
    .cta-band--simple { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
    .footer-brand { grid-column: 1 / -1; }
    .player { bottom: 12px; }
    .toast-stack { top: auto; bottom: 16px; right: 12px; left: 12px; width: auto; }
}

@media (max-width: 420px) {
    .hero-stat span { font-size: .76rem; }
    .team-grid { gap: 12px; }
    .footer-grid { grid-template-columns: 1fr; }
}
