/** Shopify CDN: Minification failed

Line 3073:0 Unexpected "}"

**/
/* ============================================
   SENSICA — V2 Design System
   Pantone-Based Color Palette
   Trust (White) · Emotional (Soft Peach) · Premium (Deep Charcoal)
   ============================================ */

/* ── Google Fonts — Gilroy substitute: Outfit ─ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ────────────────────────── */
:root {
    /* Base — Trust Anchor: Pantone 000 C */
    --black: #101820;
    --off-black: #1A1A2E;
    --white: #FFFFFF;
    --off-white: #FDFCFB;
    --cream: #FBF6F2;
    --cream-deep: #F5EDE4;

    /* Brand — Emotional Hook: Pantone 7415 C (Soft Peach) */
    --soft-peach: #FAE9E5;
    --peach: #FAE9E5;
    --peach-dark: #C8836A;
    --peach-light: #FDF5F3;
    --peach-bg: #FFFDFC;
    --peach-muted: rgba(250, 233, 229, 0.06);
    --peach-border: rgba(250, 233, 229, 0.18);

    /* Premium Power: Pantone Black C (Deep Charcoal) */
    --deep-charcoal: #101820;
    --charcoal-light: #1C2833;
    --charcoal-surface: #1E2A36;

    /* Actionable Accents — Urgency & Trust */
    --vibrant-pink: #E3006D;
    /* Pantone 2339 C */
    --vibrant-pink-light: #FCE4F0;
    --badge-yellow: #F2C75C;
    /* Pantone 1345 C */
    --badge-yellow-light: #FFF8E7;

    /* Digital Bronze — Skin Treatment elements */
    --digital-bronze: #B07D56;
    --digital-bronze-light: rgba(176, 125, 86, 0.15);

    /* Greys — lighter palette */
    --grey-50: #FAFAFA;
    --grey-100: #F5F5F5;
    --grey-200: #EBEBEB;
    --grey-300: #D4D4D4;
    --grey-400: #A3A3A3;
    --grey-500: #737373;
    --grey-600: #525252;
    --grey-700: #404040;
    --grey-800: #262626;
    --grey-900: #171717;

    /* Treatment category accents — updated for V2 */
    --hair: #E3006D;
    --hair-light: #FCE4F0;
    --aging: #D4785C;
    --aging-light: #F5DDD6;
    --body: #B07D56;
    --body-light: #F0E4D6;

    /* Typography — Gilroy → Outfit fallback */
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Layout */
    --max-width: 1280px;
    --max-width-narrow: 900px;
    --header-height: 72px;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Shadows — softer */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-peach: 0 8px 30px rgba(240, 206, 198, 0.25);
    --shadow-dark: 0 8px 30px rgba(16, 24, 32, 0.3);

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration: 0.3s;
    --duration-slow: 0.6s;
}

/* ── Reset & Base ─────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--off-black);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration) var(--ease);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

/* ── Typography ───────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--off-black);
}

h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.text-muted {
    color: var(--grey-500);
}

.text-center {
    text-align: center;
}

.text-peach {
    color: var(--peach-dark);
}

/* ── Layout ───────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.container--narrow {
    max-width: var(--max-width-narrow);
}

.section {
    padding: 5rem 0;
}

.section--dark {
    background: var(--deep-charcoal);
    color: var(--white);
}

.section--cream {
    background: var(--cream);
}

.section--warm {
    background: #f0e8e0;
}

.section--peach-muted {
    background: var(--peach-bg);
}

.section--peach {
    background: var(--soft-peach);
    color: var(--off-black);
}

.section--grey {
    background: var(--grey-50);
}

/* ── Section Headers ─────────────────── */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--peach-dark);
    margin-bottom: var(--space-md);
}

.section-header__title {
    color: var(--off-black);
    margin-bottom: var(--space-md);
}

.section-header__subtitle {
    color: var(--grey-500);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* Dark section header overrides */
.section--dark .section-header__label {
    color: var(--soft-peach);
}

.section--dark .section-header__title {
    color: var(--white);
}

.section--dark .section-header__subtitle {
    color: var(--grey-400);
}

/* ── Header ─────────────────────────────────────── */
.header {
    display: block;
    grid-template-areas: none;
    grid-template-columns: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease,
        backdrop-filter 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

/* Reset base.css header__icon overrides */
.header .header__icon {
    height: auto;
    width: auto;
    padding: 0;
}

/* Scrolled state — subtle frosted glass */
.header.scrolled {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.header.scrolled .header__logo {
    color: var(--off-black);
}

.header.scrolled .header__nav a {
    color: var(--grey-600);
}

.header.scrolled .header__hamburger span {
    background: var(--off-black);
}

.header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--off-black);
    transition: color 0.4s ease;
}

.header__logo span {
    color: inherit;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.header__nav a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--grey-600);
    position: relative;
    padding: 4px 0;
    transition: color 0.4s ease;
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--peach-dark);
    transition: width var(--duration) var(--ease);
}

.header__nav a:hover {
    color: var(--off-black);
}

.header__nav a:hover::after {
    width: 100%;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--duration) var(--ease);
}

.nav-dropdown__menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}

.nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--grey-700);
}

.nav-dropdown__menu a:hover {
    background: var(--peach-bg);
    color: var(--off-black);
}

.nav-dropdown__menu a::after {
    display: none;
}

.nav-dropdown__menu .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Mobile hamburger */
.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.header__hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.4s ease;
}

/* Mobile nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    transition: right var(--duration-slow) var(--ease-out);
    overflow-y: auto;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav a {
    display: block;
    padding: var(--space-md) 0;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--grey-100);
}

.mobile-nav__divider {
    height: 1px;
    background: var(--grey-200);
    margin: var(--space-sm) 0;
}

.mobile-nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(16, 24, 32, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration) var(--ease);
}

.mobile-nav__overlay.open {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 900px) {
    .header__nav {
        display: none;
    }

    .header__hamburger {
        display: flex;
    }
}

/* ── Buttons ──────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.btn--primary,
.btn--dark {
    background: var(--deep-charcoal);
    color: var(--white);
}

.btn--primary:hover,
.btn--dark:hover {
    background: var(--charcoal-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-dark);
}

.btn--secondary {
    background: transparent;
    color: var(--off-black);
    border: 1.5px solid var(--grey-300);
}

.btn--secondary:hover {
    background: var(--deep-charcoal);
    color: var(--white);
    border-color: var(--deep-charcoal);
}

.btn--peach {
    background: var(--peach-dark);
    color: var(--white);
    font-weight: 600;
}

.btn--peach:hover {
    background: #C06A4E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-peach);
}

.btn--intense-peach {
    background: var(--peach-dark);
    color: var(--white);
    font-weight: 700;
}

.btn--intense-peach:hover {
    background: #C06A4E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-peach);
}

.btn--outline-peach {
    background: transparent;
    color: var(--peach-dark);
    border: 1.5px solid var(--soft-peach);
}

.btn--outline-peach:hover {
    background: var(--peach-dark);
    color: var(--white);
}

.btn--white {
    background: var(--white);
    color: var(--off-black);
}

.btn--white:hover {
    background: var(--grey-100);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 10px 24px;
    font-size: 0.7rem;
}

.btn--lg {
    padding: 18px 42px;
    font-size: 0.82rem;
}

/* ── Hero Section ─────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero--peach {
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-4xl);
    background: linear-gradient(180deg, var(--white) 0%, var(--white) 40%, var(--peach-bg) 100%);
    color: var(--off-black);
}

.hero--product {
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--space-2xl));
    padding-bottom: var(--space-3xl);
    background: var(--deep-charcoal);
    color: var(--white);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero__label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(232, 176, 164, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--peach-dark);
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(8px);
}

.hero__title {
    margin-bottom: var(--space-lg);
    color: var(--off-black);
}

.hero__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--grey-600);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    font-weight: 400;
}

/* ── Treatment Cards (Hero) ────────────────── */
.treatment-card {
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.treatment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.treatment-card__overlay {
    position: absolute;
    inset: 0;
    border-radius: inherit;
}

.treatment-card__title {
    font-family: var(--font-body);
    font-weight: 600;
}

.treatment-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Cards ─────────────────────────────────── */
.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--grey-200);
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--off-black);
}

.card__desc {
    font-size: 0.9rem;
    color: var(--grey-500);
    line-height: 1.7;
}

/* Dark card variant */
.card--dark {
    background: var(--charcoal-surface);
    border-color: rgba(255, 255, 255, 0.08);
}

.card--dark .card__title {
    color: var(--white);
}

.card--dark .card__desc {
    color: var(--grey-400);
}

/* ── Trust / Urgency Badge Styles ──────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.badge--pink {
    background: var(--vibrant-pink-light);
    color: var(--vibrant-pink);
}

.badge--yellow {
    background: var(--badge-yellow-light);
    color: #9B7A1C;
}

/* ── Digital Bronze "Skin Treatment" Lines ── */
.bronze-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: var(--space-sm) 0;
}

.bronze-lines span {
    display: block;
    height: 1.5px;
    background: linear-gradient(90deg, transparent 0%, var(--digital-bronze) 20%, var(--digital-bronze) 80%, transparent 100%);
    opacity: 0.5;
}

.bronze-lines span:nth-child(2) {
    width: 85%;
    margin: 0 auto;
}

.bronze-lines span:nth-child(3) {
    width: 70%;
    margin: 0 auto;
}

/* ── Body Map Interactive Dots ────────────── */
.body-map-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.face-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--peach-dark);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px rgba(200, 131, 106, 0.25);
    cursor: pointer;
    transform: translate(-50%, -50%);
    z-index: 5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.face-dot:hover {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 0 4px rgba(200, 131, 106, 0.2);
    z-index: 20;
}

.face-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid rgba(200, 131, 106, 0.3);
    animation: dot-pulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes dot-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.4); opacity: 0; }
}


/* Tooltip */
.face-tip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    padding: 6px 12px;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 10;
}

.face-tip--below {
    bottom: auto;
    top: calc(100% + 10px);
    transform: translateX(-50%) translateY(-6px);
}

.face-dot:hover .face-tip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.face-tip__name {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--off-black);
}

.face-tip__badge {
    font-size: 0.65rem;
    color: var(--peach-dark);
    font-weight: 600;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .face-dot {
        width: 10px;
        height: 10px;
    }
}

.bronze-lines span:nth-child(4) {
    width: 55%;
    margin: 0 auto;
}

.bronze-lines span:nth-child(5) {
    width: 40%;
    margin: 0 auto;
}

/* ── Footer ──────────────────────────────── */
.footer {
    background: var(--white);
    padding: 18px 0 8px;
    color: var(--grey-600);
    border-top: none;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

.footer__logo {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--off-black);
    margin-bottom: var(--space-md);
}

.footer__logo span {
    color: inherit;
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--grey-500);
    line-height: 1.7;
}

.footer__col-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--off-black);
    margin-bottom: 8px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__links a {
    font-size: 0.88rem;
    color: var(--grey-500);
    transition: color var(--duration) var(--ease);
}

.footer__links a:hover {
    color: var(--peach-dark);
}

.footer__bottom {
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 0.8rem;
    color: var(--grey-400);
}

/* ── Responsive Grid ──────────────────────── */
@media (max-width: 768px) {
    .responsive-grid {
        grid-template-columns: 1fr !important;
    }

    .responsive-grid:has(> div > div[style*="font-family:var(--font-display)"]) {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .responsive-trust-bar {
        gap: var(--space-md) !important;
        flex-wrap: nowrap !important;
    }

    .responsive-trust-bar svg {
        width: 28px !important;
        height: 28px !important;
    }

    .responsive-trust-bar span {
        font-size: 0.65rem !important;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .hero-cards-grid {
        gap: var(--space-sm) !important;
        max-width: 100% !important;
        margin-top: var(--space-xl) !important;
    }

    .hero-cards-grid .treatment-card {
        aspect-ratio: 2/3 !important;
        border-radius: var(--radius-lg) !important;
    }

    .hero-cards-grid .treatment-card__title {
        font-size: 0.85rem !important;
    }

    .hero-cards-grid .treatment-card .tc-inner {
        padding: var(--space-md) !important;
    }

    .hero-cards-grid .treatment-card .treatment-card__icon {
        width: 40px !important;
        height: 40px !important;
    }

    .hero-cta-wrap {
        margin-top: var(--space-xl) !important;
    }

    .hero-cta-wrap .btn {
        padding: 14px 28px !important;
        font-size: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
}

/* ── Reveal Animation ─────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PAGE CONTENT — Policy / Legal Pages
   ============================================ */
.page-content {
    padding-top: var(--header-height);
}

.page-content__header {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    padding: var(--space-4xl) 0 var(--space-2xl);
    text-align: center;
}

.page-content__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--peach-dark);
    margin-bottom: var(--space-md);
}

.page-content__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--off-black);
    letter-spacing: -0.02em;
    margin: 0;
}

.page-content__subtitle {
    color: var(--grey-500);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 560px;
    margin: var(--space-md) auto 0;
}

.page-content__body {
    padding: var(--space-3xl) 0 var(--space-4xl);
}

.page-content__text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--grey-600);
    max-width: 760px;
    margin: 0 auto;
}

.page-content__text h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--off-black);
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--cream-deep);
}

.page-content__text h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--off-black);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.page-content__text h4 {
    font-size: 1.1rem;
    color: var(--off-black);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.page-content__text p {
    margin-bottom: var(--space-lg);
}

.page-content__text ul,
.page-content__text ol {
    margin: var(--space-lg) 0;
    padding-left: var(--space-xl);
    list-style: disc;
}

.page-content__text ol {
    list-style: decimal;
}

.page-content__text li {
    margin-bottom: var(--space-sm);
    padding-left: var(--space-xs);
}

.page-content__text a {
    color: var(--peach-dark);
    text-decoration: underline;
    text-decoration-color: rgba(200, 131, 106, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color var(--duration) var(--ease);
}

.page-content__text a:hover {
    text-decoration-color: var(--peach-dark);
}

.page-content__text blockquote {
    margin: var(--space-2xl) 0;
    padding: var(--space-lg) var(--space-xl);
    border-left: 3px solid var(--peach-dark);
    background: var(--cream);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--grey-700);
}

.page-content__text table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-2xl) 0;
    font-size: 0.95rem;
}

.page-content__text th,
.page-content__text td {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    border-bottom: 1px solid var(--grey-200);
}

.page-content__text th {
    background: var(--cream);
    font-weight: 600;
    color: var(--off-black);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.page-content__text strong {
    color: var(--off-black);
    font-weight: 600;
}

.page-content__text img {
    border-radius: var(--radius-lg);
    margin: var(--space-2xl) 0;
}

/* ============================================
   BLOG MODERN — Tile Grid + Tag Cloud
   ============================================ */
.blog-modern {
    padding-top: calc(var(--header-height) + var(--space-lg));
    padding-bottom: var(--space-3xl);
}

.blog-modern__header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.blog-modern__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--off-black);
    margin-bottom: var(--space-sm);
}

.blog-modern__subtitle {
    color: var(--grey-500);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* Tag Cloud */
.blog-modern__tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-3xl);
    padding: 0 var(--space-md);
}

.blog-modern__tag {
    display: inline-block;
    padding: 8px 20px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--grey-600);
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--duration) var(--ease);
    white-space: nowrap;
}

.blog-modern__tag:hover {
    background: var(--cream);
    border-color: var(--peach-dark);
    color: var(--peach-dark);
}

.blog-modern__tag--active {
    background: var(--deep-charcoal);
    color: var(--white);
    border-color: var(--deep-charcoal);
}

.blog-modern__tag--active:hover {
    background: var(--charcoal-light);
    border-color: var(--charcoal-light);
    color: var(--white);
}

/* Article Grid */
.blog-modern__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

/* Featured card — first article spans full width */
.blog-modern__card--featured {
    grid-column: 1 / -1;
}

.blog-modern__card--featured .blog-modern__card-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.blog-modern__card--featured .blog-modern__card-image {
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.blog-modern__card--featured .blog-modern__card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-2xl) var(--space-3xl);
}

.blog-modern__card--featured .blog-modern__card-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.blog-modern__card--featured .blog-modern__card-excerpt {
    font-size: 1rem;
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

/* Regular card */
.blog-modern__card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--grey-200);
    background: var(--white);
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.blog-modern__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-modern__card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.blog-modern__card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--peach-bg) 100%);
}

.blog-modern__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.blog-modern__card:hover .blog-modern__card-image img {
    transform: scale(1.04);
}

.blog-modern__card-image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    opacity: 0.25;
}

.blog-modern__card-body {
    padding: var(--space-lg) var(--space-xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-modern__card-tags {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.blog-modern__card-tag {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--peach-dark);
    background: var(--peach-light);
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.blog-modern__card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--off-black);
    margin-bottom: var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-modern__card-excerpt {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--grey-500);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.blog-modern__card-meta {
    font-size: 0.78rem;
    color: var(--grey-400);
    margin-top: auto;
    padding-top: var(--space-sm);
}

/* Pagination */
.blog-modern__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--grey-200);
}

.blog-modern__page-numbers {
    display: flex;
    gap: var(--space-xs);
}

.blog-modern__page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--grey-600);
    text-decoration: none;
    transition: all var(--duration) var(--ease);
    border: 1px solid transparent;
}

.blog-modern__page-link:hover {
    background: var(--cream);
    border-color: var(--grey-200);
}

.blog-modern__page-link--current {
    background: var(--deep-charcoal);
    color: var(--white);
    border-color: var(--deep-charcoal);
}

.blog-modern__page-link--prev,
.blog-modern__page-link--next {
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--off-black);
}

@media (max-width: 900px) {
    .blog-modern__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-modern__card--featured {
        grid-column: 1 / -1;
    }

    .blog-modern__card--featured .blog-modern__card-link {
        display: block;
    }

    .blog-modern__card--featured .blog-modern__card-image {
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }

    .blog-modern__card--featured .blog-modern__card-body {
        padding: var(--space-xl);
    }
}

@media (max-width: 600px) {
    .blog-modern {
        padding-top: calc(var(--header-height) + var(--space-md));
    }

    .blog-modern__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .blog-modern__tag-cloud {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: var(--space-sm);
    }

    .blog-modern__tag-cloud::-webkit-scrollbar {
        display: none;
    }

    .blog-modern__pagination {
        flex-wrap: wrap;
    }
}

/* ============================================
   ARTICLE PAGE — Header, Content, Navigation
   ============================================ */
.article-template {
    padding-top: 0;
}

.article-hero {
    max-width: 900px;
    margin: 0 auto var(--space-lg);
    padding: var(--space-lg) clamp(1.25rem, 4vw, 3rem) 0;
}

.article-hero__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.article-hero__image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-header {
    padding: var(--space-sm) clamp(1.25rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

.article-header__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.article-header__tag {
    display: inline-block;
    padding: 5px 16px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--peach-dark);
    background: var(--peach-light);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--duration) var(--ease);
}

.article-header__tag:hover {
    background: var(--peach-dark);
    color: var(--white);
}

.article-header__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--off-black);
    line-height: 1.2;
    margin-bottom: var(--space-xs);
}

.article-header__meta {
    display: flex;
    gap: var(--space-lg);
    font-size: 0.85rem;
    color: var(--grey-400);
}

.article-header__author::before {
    content: '·';
    margin-right: var(--space-lg);
}

.article-content {
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    margin-bottom: var(--space-2xl);
}

.article-share {
    padding: var(--space-xl) clamp(1.25rem, 4vw, 3rem);
    margin-bottom: var(--space-xl);
    border-top: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-200);
}

/* Article Navigation — Previous / Next */
.article-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-2xl) clamp(1.25rem, 4vw, 3rem);
    margin: var(--space-xl) auto var(--space-2xl);
    border-top: 1px solid var(--grey-200);
}

.article-nav__link {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    text-decoration: none;
    color: var(--off-black);
    max-width: 280px;
    transition: color var(--duration) var(--ease);
}

.article-nav__link:hover {
    color: var(--peach-dark);
}

.article-nav__link--disabled {
    visibility: hidden;
}

.article-nav__direction {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--grey-400);
}

.article-nav__link:hover .article-nav__direction {
    color: var(--peach-dark);
}

.article-nav__back {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--grey-500);
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-full);
    transition: all var(--duration) var(--ease);
}

.article-nav__back:hover {
    background: var(--deep-charcoal);
    color: var(--white);
    border-color: var(--deep-charcoal);
}

.article-nav__link--next {
    text-align: right;
    align-items: flex-end;
}

/* Article Comments */
.article-comments {
    background: var(--cream);
    padding: var(--space-3xl) 0;
}

.article-comments__list {
    margin: var(--space-xl) 0;
}

.article-comments__item {
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--grey-200);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--grey-600);
}

.article-comments__item footer {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-sm);
    font-size: 0.8rem;
    color: var(--grey-400);
}

@media (max-width: 600px) {
    .article-nav {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .article-nav__link {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .article-nav__link--next {
        align-items: center;
    }
}

/* ============================================
   CONTACT FORM — Two-Column Layout
   ============================================ */
.contact-section {
    padding-top: 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-form__fields {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.contact-form__field label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--off-black);
    letter-spacing: 0.02em;
}

.contact-form__field input,
.contact-form__field textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 18px;
    border: 1.5px solid var(--grey-200);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--off-black);
    transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
    outline: none;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
    border-color: var(--peach-dark);
    box-shadow: 0 0 0 3px rgba(200, 131, 106, 0.12);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: var(--grey-400);
}

.contact-form__field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__success {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xl);
    color: #065f46;
    font-weight: 500;
}

.contact-form__success span {
    font-size: 1.2rem;
}

.contact-form__error {
    padding: var(--space-lg);
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xl);
    color: #991b1b;
}

/* Info Card */
.contact-info-wrap {
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
}

.contact-info-card {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.contact-info__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--off-black);
    margin-bottom: var(--space-sm);
}

.contact-info__desc {
    font-size: 0.9rem;
    color: var(--grey-500);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.contact-info__items {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info__item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-info__icon {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-info__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grey-400);
    margin-bottom: 2px;
}

.contact-info__item a {
    color: var(--peach-dark);
    font-weight: 500;
}

.contact-info__item a:hover {
    text-decoration: underline;
}

.contact-info__guarantee {
    margin-top: var(--space-2xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--grey-200);
    font-size: 0.85rem;
    color: var(--grey-500);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .contact-info-wrap {
        position: static;
    }
}

/* ============================================
   MERGED FROM ORIGINAL styles.css
   Components not in V2 design system
   ============================================ */

/* Entry banner positioning */
.entry-banner {
  margin-top: var(--header-height);
}

/* When entry-banner is visible, reduce next section's top padding */
.shopify-section:has(.entry-banner[style*="display: block"])+.shopify-section .pdp-section,
.entry-banner--visible+.shopify-section .pdp-section {
  padding-top: var(--space-sm) !important;
}


/* Dark header theme — inverted logo and icons */
.header[data-header-theme="dark"] .header__logo {
  color: var(--white);
}

.header[data-header-theme="dark"] .header__logo img {
  filter: brightness(0) invert(1);
  transition: filter var(--duration) var(--ease);
}

.header[data-header-theme="dark"] .header__nav a {
  color: rgba(255, 255, 255, 0.85);
}

.header[data-header-theme="dark"] .header__nav a:hover {
  color: var(--white);
}

.header[data-header-theme="dark"] .header__icon {
  color: rgba(255, 255, 255, 0.85);
}

.header[data-header-theme="dark"] .header__icon:hover {
  color: var(--white);
}

.header[data-header-theme="dark"] .header__hamburger span {
  background: var(--white);
}

/* ── Hero Gallery ────────────────────────── */
.hero__gallery {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
  margin-bottom: var(--space-xl);
}

.hero__gallery-main {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(249, 197, 165, 0.08) 0%, rgba(233, 30, 99, 0.04) 100%);
  border: 1px solid var(--grey-800);
}

.hero__gallery-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: linear-gradient(135deg, rgba(249, 197, 165, 0.06) 0%, rgba(30, 30, 30, 0.9) 100%);
}

.hero__gallery-slide.active {
  opacity: 1;
}

.hero__gallery-slide .slide-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-500);
  text-align: center;
  padding: var(--space-md);
}

.hero__gallery-slide .slide-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: var(--space-sm);
}

/* Thumbnails (desktop) */
.hero__gallery-thumbs {
  display: flex;
  gap: var(--space-xs);
}

.hero__gallery-thumb {
  flex: 1;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.hero__gallery-thumb:hover {
  background: rgba(249, 197, 165, 0.08);
}

.hero__gallery-thumb.active {
  border-color: var(--peach);
  background: rgba(249, 197, 165, 0.1);
}

/* Dot navigation (mobile only, hidden on desktop) */
.hero__gallery-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  padding: var(--space-sm) 0;
}

.hero__gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.hero__gallery-dot.active {
  background: var(--peach);
  transform: scale(1.25);
}

/* ── Hero Product Grid (desktop) ─────────── */
.hero__product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: stretch;
}

/* ── Mobile Sticky CTA ──────────────────── */
.mobile-sticky-cta {
  display: none;
}

/* ── Mobile Layout ───────────────────────── */
@media (max-width: 768px) {
  .hero--product {
    min-height: auto;
    padding-bottom: var(--space-lg);
  }

  .hero--product .hero__product-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  /* Gallery first on mobile */
  .hero--product .hero__gallery {
    order: -1;
    margin-bottom: 0;
  }

  .hero--product .hero__content {
    order: 1;
  }

  .hero__gallery-main {
    border-radius: 0;
    border: none;
    aspect-ratio: 4 / 3;
    margin-left: calc(-1 * var(--space-lg));
    margin-right: calc(-1 * var(--space-lg));
    width: calc(100% + var(--space-lg) * 2);
  }

  .hero__gallery-thumbs {
    display: none;
  }

  .hero__gallery-dots {
    display: flex;
  }

  .hero__label {
    display: none;
  }

  .hero__title {
    font-size: 2rem !important;
  }

  .hero__ctas {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .hero__ctas .btn {
    width: 100%;
    text-align: center;
  }

  /* Mobile sticky CTA */
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(249, 197, 165, 0.15);
    padding: var(--space-sm) var(--space-md);
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
  }

  .mobile-sticky-cta__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .mobile-sticky-cta__name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
  }

  .mobile-sticky-cta__price {
    font-size: 0.75rem;
    color: var(--peach);
    font-weight: 500;
  }

  .mobile-sticky-cta .btn {
    white-space: nowrap;
    padding: 12px 28px;
    font-size: 0.75rem;
  }
}

/* ── Hero Drawers (Accordion) ────────────── */
.hero__drawers {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(249, 197, 165, 0.12);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 700px;
}

.hero__drawer {
  background: transparent;
}

.hero__drawer+.hero__drawer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__drawer-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--space-xl);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
  text-align: left;
}

.hero__drawer-toggle:hover {
  background: rgba(249, 197, 165, 0.05);
}

.hero__drawer-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--peach);
  font-weight: 600;
  font-family: var(--font-body);
}

.hero__drawer-icon {
  color: var(--peach);
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  line-height: 1;
  width: 20px;
  text-align: center;
}

.hero__drawer.open .hero__drawer-icon {
  transform: rotate(45deg);
}

.hero__drawer.open .hero__drawer-toggle {
  background: rgba(249, 197, 165, 0.04);
}

.hero__drawer-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__drawer.open .hero__drawer-body {
  max-height: 600px;
}

.hero__drawer-inner {
  padding: var(--space-sm) var(--space-xl) var(--space-lg);
}

/* ── Drawer: Highlights ──────────────────── */
.hero__highlight {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  color: var(--grey-300);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.hero__highlight:last-child {
  margin-bottom: 0;
}

.hero__highlight::before {
  content: "✓";
  color: var(--peach);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.85rem;
}

/* ── Drawer: Specs Grid ──────────────────── */
.hero__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md) var(--space-xl);
}

.hero__spec {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: 0.85rem;
}

.hero__spec-icon {
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 2px;
}

.hero__spec-label {
  color: var(--grey-400);
}

.hero__spec-value {
  color: var(--white);
  font-weight: 600;
}

/* ── Drawer: Includes List ───────────────── */
.hero__includes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-xl);
}

.hero__includes-item {
  font-size: 0.84rem;
  color: var(--grey-300);
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
}

.hero__includes-item .includes-icon {
  font-size: 0.85rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero__drawers {
    max-width: 100%;
  }

  .hero__specs {
    grid-template-columns: 1fr;
  }

  .hero__includes-list {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }

  .hero__drawer-toggle {
    padding: var(--space-sm) var(--space-md);
  }

  .hero__drawer-inner {
    padding: var(--space-sm) var(--space-md) var(--space-md);
  }
}
/* ── Trust Bar ────────────────────────────── */
.trust-bar {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--grey-200);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  text-align: center;
}

.trust-bar__icon {
  font-size: 1.5rem;
}

.trust-bar__text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-500);
}

@media (max-width: 768px) {
  .trust-bar {
    padding: 10px 0;
  }

  .trust-bar__inner {
    display: flex;
    justify-content: space-around;
    gap: 4px;
  }

  /* Hide items 2 and 3 on mobile (keep FDA, Stars, Guarantee) */
  .trust-bar__item:nth-child(2),
  .trust-bar__item:nth-child(3) {
    display: none;
  }

  .trust-bar__item {
    gap: 2px;
  }

  .trust-bar__icon {
    font-size: 0.9rem;
  }

  .trust-bar__text {
    font-size: 0.55rem;
  }
}
/* ── Treatment Category Cards ──────────────── */
.treatment-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.treatment-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--duration-slow) var(--ease);
}

.treatment-card:hover .treatment-card__bg {
  transform: scale(1.08);
}

.treatment-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.15) 50%);
}

.treatment-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-2xl);
  color: var(--white);
}

.treatment-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.treatment-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
}

.treatment-card__desc {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: var(--space-lg);
}

/* ── Protocol Cards ───────────────────────── */
.protocol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.protocol-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.protocol-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--peach);
  transform: scaleY(0);
  transition: transform var(--duration) var(--ease);
}

.protocol-card:hover::before {
  transform: scaleY(1);
}

.protocol-card:hover {
  border-color: var(--peach);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.protocol-card__icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
}

.protocol-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.protocol-card__desc {
  font-size: 0.9rem;
  color: var(--grey-500);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.protocol-card__meta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.protocol-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--grey-100);
  color: var(--grey-600);
}

/* ── Before/After ─────────────────────────── */
.ba-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.ba-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-200);
}

.ba-item__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.ba-item__images img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.ba-item__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--peach);
  transform: translateX(-50%);
}

.ba-item__labels {
  display: flex;
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  justify-content: space-around;
}

.ba-item__labels span {
  background: var(--black);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.ba-item__info {
  padding: var(--space-md) var(--space-lg);
  font-size: 0.85rem;
  color: var(--grey-600);
}

/* ── Timeline ─────────────────────────────── */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: var(--grey-200);
}

.timeline__item {
  position: relative;
  padding-left: 64px;
  padding-bottom: var(--space-2xl);
}

.timeline__dot {
  position: absolute;
  left: 16px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--peach);
  z-index: 1;
}

.timeline__item.active .timeline__dot {
  background: var(--peach);
}

.timeline__week {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peach-dark);
  margin-bottom: var(--space-xs);
}

.timeline__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
}

.timeline__desc {
  font-size: 0.9rem;
  color: var(--grey-500);
  line-height: 1.6;
}

/* ── Technology Section ───────────────────── */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.tech-grid--reverse {
  direction: rtl;
}

.tech-grid--reverse>* {
  direction: ltr;
}

.tech-visual {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--grey-100);
}

.tech-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-content__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--peach-dark);
  margin-bottom: var(--space-md);
}

.tech-content__title {
  margin-bottom: var(--space-lg);
}

.tech-content__text {
  color: var(--grey-600);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.tech-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.tech-feature__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--peach-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.tech-feature__text {
  font-size: 0.9rem;
  color: var(--grey-600);
}

.tech-feature__text strong {
  color: var(--black);
  display: block;
  margin-bottom: 2px;
}

/* ── How-To Steps ─────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  counter-reset: step;
}

.step-card {
  text-align: center;
  padding: var(--space-xl);
  counter-increment: step;
}

.step-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--peach);
  opacity: 0.4;
  margin-bottom: var(--space-md);
  line-height: 1;
}

.step-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.5rem;
}

.step-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.step-card__desc {
  font-size: 0.85rem;
  color: var(--grey-500);
  line-height: 1.6;
}

/* ── FAQ Accordion ────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--grey-200);
}

/* Old FAQ styles removed — see .faq-item rules near bottom of file */

/* ── Reviews ──────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.review-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.review-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.review-card__text {
  font-size: 0.95rem;
  color: var(--grey-600);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.review-card__author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
}

.review-card__verified {
  font-size: 0.7rem;
  color: var(--grey-400);
}

/* ── Guarantee Banner ─────────────────────── */
.guarantee {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.guarantee__icon {
  width: 80px;
  height: 80px;
  border: 2px solid var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.guarantee__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.guarantee__text {
  color: var(--grey-400);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── Cross-sell / Complete Treatment ──────── */
.crosssell-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-xl);
}

.crosssell-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all var(--duration) var(--ease);
}

.crosssell-card:hover {
  border-color: var(--peach);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.crosssell-card__image {
  aspect-ratio: 1;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.crosssell-card__body {
  padding: var(--space-lg);
}

.crosssell-card__step {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--peach-dark);
  margin-bottom: var(--space-xs);
}

.crosssell-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.crosssell-card__desc {
  font-size: 0.8rem;
  color: var(--grey-500);
  margin-bottom: var(--space-md);
}

.crosssell-card__price {
  font-weight: 600;
  font-size: 0.95rem;
}

/* ── Sticky Cart Bar ──────────────────────── */
.sticky-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  padding: var(--space-md) 0;
  z-index: 900;
  transform: translateY(100%);
  transition: transform var(--duration) var(--ease);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.sticky-cart.visible {
  transform: translateY(0);
}

.sticky-cart__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.sticky-cart__info {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.sticky-cart__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.sticky-cart__price {
  font-weight: 700;
  font-size: 1rem;
}

.sticky-cart__bnpl {
  font-size: 0.75rem;
  color: var(--grey-500);
}

.sticky-cart__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* ── Expert/Doctor Cards ──────────────────── */
.expert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.expert-card {
  text-align: center;
  padding: var(--space-lg);
}

.expert-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--grey-100);
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 2px solid var(--peach-light);
}

.expert-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.expert-card__spec {
  font-size: 0.75rem;
  color: var(--grey-500);
}
.footer__brand {
  max-width: 280px;
}

}

.footer__social {
  display: flex;
  gap: var(--space-md);
  margin-top: 8px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-400);
  transition: all var(--duration) var(--ease);
}

.footer__social a:hover {
  border-color: var(--peach-dark);
  color: var(--peach-dark);
}

/* Footer accordion toggle — hidden on desktop */
.footer__col-toggle {
  display: none;
}

/* Footer policies row */
.footer__policies {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer__policies a {
  font-size: 0.72rem;
  color: var(--grey-500);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.footer__policies a:hover {
  color: var(--peach);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__brand {
    max-width: 100%;
    padding-bottom: var(--space-xl);
    margin-bottom: var(--space-md);
    border-bottom: 1px solid var(--grey-100);
  }

  /* Show toggle, hide desktop title */
  .footer__col-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-md) 0;
    background: none;
    border: none;
    border-bottom: 1px solid var(--grey-100);
    color: var(--off-black);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .footer__col-title--desktop {
    display: none;
  }

  .footer__chevron {
    transition: transform 0.3s ease;
  }

  .footer__col-toggle[aria-expanded="true"] .footer__chevron {
    transform: rotate(180deg);
  }

  /* Collapse links */
  .footer__links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding-left: 0;
  }

  .footer__col-toggle[aria-expanded="true"]+.footer__col-title--desktop+.footer__links {
    padding: var(--space-sm) 0 var(--space-md);
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
}


.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ── Stat Counter ─────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-xl);
  text-align: center;
  padding: var(--space-3xl) 0;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--peach);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat__label {
  font-size: 0.8rem;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Steps Grid ──────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.step-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.step-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.step-card__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--peach);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.step-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.step-card__desc {
  color: var(--grey-500);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── Results Timeline ────────────────────── */
.timeline {
  max-width: 640px;
  margin: var(--space-2xl) auto 0;
  position: relative;
  padding-left: var(--space-2xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--peach), var(--grey-200));
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-2xl);
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__marker {
  position: absolute;
  left: calc(-1 * var(--space-2xl) - 36px);
  top: 0;
  width: 72px;
  text-align: right;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--peach);
  letter-spacing: 0.02em;
}

.timeline__marker::after {
  content: '';
  position: absolute;
  right: -25px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--peach);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--peach);
}

.timeline__content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.timeline__content p {
  color: var(--grey-500);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── Data Table ──────────────────────────── */
.table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
  overflow: hidden;
}

.data-table th {
  background: var(--grey-50);
}

.data-table tbody tr:hover {
  background: rgba(249, 197, 165, 0.06);
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .timeline {
    padding-left: var(--space-xl);
  }

  .timeline__marker {
    position: static;
    text-align: left;
    margin-bottom: var(--space-xs);
    width: auto;
  }

  .timeline__marker::after {
    display: none;
  }

  .table-wrap {
    overflow-x: auto;
  }
}


.badge--peach {
  background: var(--peach-light);
  color: var(--peach-dark);
}

.badge--gold {
  background: rgba(255, 205, 130, 0.2);
  color: var(--gold-dark);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ── Responsive Overrides ─────────────────── */
@media (max-width: 900px) {
  .card-grid--3 {
    grid-template-columns: 1fr;
  }

  .tech-grid,
  .tech-grid--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: var(--space-xl);
  }

  .guarantee {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guarantee__icon {
    margin: 0 auto;
  }

  .hero__content {
    padding: var(--space-2xl);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-cart__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 80vh;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}
/* ── Quiz Funnel ─────────────────────────── */
.quiz {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  min-height: 420px;
}

.quiz__progress {
  width: 100%;
  height: 3px;
  background: var(--grey-200);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3xl);
  overflow: hidden;
}

.quiz__progress-bar {
  height: 100%;
  background: var(--peach);
  border-radius: var(--radius-full);
  transition: width 0.6s var(--ease-out);
}

.quiz__steps {
  position: relative;
}

.quiz__step {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.quiz__step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.quiz__step.exit {
  display: none;
}

.quiz__step-counter {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--peach-dark);
  margin-bottom: var(--space-md);
}

.quiz__question {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.quiz__subtitle {
  color: var(--grey-500);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
}

.quiz__options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.quiz__option {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-align: left;
  width: 100%;
}

.quiz__option:hover {
  border-color: var(--peach);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.quiz__option.selected {
  border-color: var(--peach);
  background: var(--peach-light);
  box-shadow: 0 0 0 3px rgba(249, 197, 165, 0.2);
}

.quiz__option.selected .quiz__option-check svg circle {
  fill: var(--peach);
  stroke: var(--peach-dark);
}

.quiz__option-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-50);
  border-radius: var(--radius-md);
}

.quiz__option.selected .quiz__option-icon {
  background: rgba(249, 197, 165, 0.25);
}

.quiz__option-text {
  flex: 1;
  min-width: 0;
}

.quiz__option-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}

.quiz__option-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--grey-500);
  line-height: 1.4;
}

.quiz__option-check {
  flex-shrink: 0;
  color: var(--grey-300);
  transition: color var(--duration) var(--ease);
}

.quiz__option:hover .quiz__option-check {
  color: var(--peach);
}

/* Quiz Result */
.quiz__result-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--peach-dark);
  background: var(--peach-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.quiz__result-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-2xl);
}

.quiz__result-card {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
  padding: var(--space-2xl);
  background: var(--white);
  border: 2px solid var(--peach);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2xl);
  box-shadow: 0 8px 30px rgba(249, 197, 165, 0.15);
}

.quiz__result-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--peach-light);
  border-radius: var(--radius-lg);
}

.quiz__result-info {
  flex: 1;
}

.quiz__result-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--peach-dark);
  margin-bottom: var(--space-xs);
}

.quiz__result-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
}

.quiz__result-desc {
  color: var(--grey-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.quiz__result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.quiz__result-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-full);
  color: var(--grey-600);
}

.quiz__result-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.quiz__result-alt {
  padding: var(--space-lg);
  background: var(--grey-50);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--grey-600);
}

.quiz__result-alt p {
  margin-bottom: var(--space-sm);
}

.quiz__alt-link {
  font-weight: 600;
  color: var(--peach-dark);
  font-size: 0.85rem;
}

.quiz__alt-link:hover {
  color: var(--black);
}

.quiz__restart {
  font-size: 0.8rem;
}

@media (max-width: 600px) {
  .quiz__options {
    grid-template-columns: 1fr;
  }

  .quiz__option {
    padding: var(--space-md) var(--space-lg);
    gap: var(--space-md);
  }

  .quiz__result-card {
    flex-direction: column;
    padding: var(--space-xl);
  }

  .quiz__result-actions {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

/* ── Comprehensive Mobile Layout Tightening ── */
@media (max-width: 768px) {

  /* Reduce all section padding */
  .section {
    padding: var(--space-2xl) 0;
  }

  /* Tighter section headers */
  .section-header {
    margin-bottom: var(--space-xl);
  }

  .section-header__title {
    font-size: 1.6rem;
    margin-bottom: var(--space-sm);
  }

  .section-header__subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* General h2 headings */
  h2 {
    font-size: 1.5rem !important;
  }

  /* Hero product section */
  .hero--product {
    padding-top: var(--header-height);
    padding-bottom: var(--space-md);
  }

  .hero__gallery-main {
    aspect-ratio: 4 / 3;
  }

  .hero__subtitle {
    font-size: 0.9rem !important;
    line-height: 1.5;
  }

  .hero__price-amount {
    font-size: 1.8rem !important;
  }

  .hero__bnpl-detail {
    font-size: 0.75rem;
  }

  .hero__label {
    font-size: 0.65rem;
  }

  /* Compact sticky CTA */
  .mobile-sticky-cta {
    padding: 8px var(--space-md);
  }

  .mobile-sticky-cta__name {
    font-size: 0.7rem;
  }

  .mobile-sticky-cta__price {
    font-size: 0.65rem;
  }

  .mobile-sticky-cta .btn {
    padding: 10px 20px;
    font-size: 0.65rem;
  }

  /* Cards and content blocks */
  .card {
    padding: var(--space-lg);
  }

  /* Results section */
  .results__grid {
    gap: var(--space-md);
  }

  /* Timeline */
  .timeline__item {
    padding: var(--space-md) 0;
  }

  /* Cost comparison */
  .cost-table th,
  .cost-table td {
    padding: var(--space-sm);
    font-size: 0.8rem;
  }

  /* FAQ */
  .faq__question {
    font-size: 0.85rem;
    padding: var(--space-md);
  }

  .faq__answer {
    font-size: 0.85rem;
  }

  /* General body padding for breathing room at bottom (sticky CTA) */
  body {
    padding-bottom: 60px;
  }

  /* ── Homepage Hero Mobile Fixes ──────────── */
  .hero .hero__content {
    padding: 2.5rem 1.25rem !important;
  }

  /* Treatment pathway cards: horizontal scroll row */
  .hero .hero__content>div[style*="grid-template-columns"] {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: var(--space-sm) !important;
  }

  .hero .treatment-card {
    aspect-ratio: 2/3 !important;
  }

  .hero .treatment-card__content {
    padding: var(--space-md) !important;
  }

  .hero .treatment-card__icon {
    width: 24px !important;
    height: 24px !important;
    font-size: 0.6rem !important;
    margin-bottom: 4px;
  }

  .hero .treatment-card__title {
    font-size: 0.85rem !important;
  }

  .hero .treatment-card__desc {
    font-size: 0.65rem !important;
    margin-bottom: 0;
  }

  .hero .hero__content>div[style*="margin-top"] {
    margin-top: var(--space-xl) !important;
  }
}

/* ═══════════════════════════════════════════════════════════ */
/* Sensilight Pro — Journey Timeline                         */
/* ═══════════════════════════════════════════════════════════ */

.journey-step {
  flex: 1;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
  background: var(--cream);
  border: 1px solid var(--grey-200);
}

.journey-step:hover,
.journey-step.active {
  background: var(--white);
  border-color: var(--peach);
  border-left: 3px solid var(--peach);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(249, 197, 165, 0.2);
}

.journey-step:hover .journey-num,
.journey-step.active .journey-num {
  background: var(--peach);
  color: var(--black);
  transform: scale(1.1);
}

.journey-step:hover .journey-week,
.journey-step.active .journey-week {
  color: var(--peach);
}

.journey-step:hover .journey-title,
.journey-step.active .journey-title {
  color: var(--black);
}

.journey-step:hover .journey-desc,
.journey-step.active .journey-desc {
  max-height: 200px;
  opacity: 1;
  margin-top: var(--space-sm);
  color: var(--grey-600);
}

.journey-step:hover .journey-expand,
.journey-step.active .journey-expand {
  opacity: 0;
  height: 0;
}

.journey-step:hover .journey-line,
.journey-step.active .journey-line {
  background: var(--peach);
}

.journey-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--peach-light);
  color: var(--peach-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 auto var(--space-md);
  transition: all 0.3s ease;
  border: 2px solid var(--peach);
}

.journey-week {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--peach-dark);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  transition: color 0.3s ease;
}

.journey-title {
  font-size: 1.05rem;
  margin-bottom: 0;
  color: var(--black);
  transition: color 0.3s ease;
}

.journey-desc {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 0.85rem;
  color: var(--grey-400);
  line-height: 1.6;
  transition: all 0.4s ease;
  margin-top: 0;
}

.journey-expand {
  font-size: 0.7rem;
  color: var(--peach-dark);
  margin-top: var(--space-sm);
  opacity: 1;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-weight: 500;
}

.journey-expand span {
  display: inline-flex;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--peach-light);
  border: 1px solid var(--peach);
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--peach-dark);
}

.journey-line {
  position: absolute;
  top: calc(var(--space-lg) + 26px);
  left: calc(50% + 30px);
  right: -50%;
  height: 2px;
  background: var(--grey-200);
  transition: background 0.3s ease;
  z-index: 0;
}

@media (max-width: 768px) {
  .journey-scroll {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .journey-scroll>div {
    min-width: auto !important;
    gap: var(--space-md) !important;
  }

  .journey-step {
    min-width: 85vw;
    flex: 0 0 85vw;
    scroll-snap-align: center;
  }

  .journey-line {
    display: none;
  }

  .journey-desc {
    max-height: none !important;
    opacity: 1 !important;
    margin-top: var(--space-sm) !important;
    color: var(--grey-600);
  }

  .journey-expand {
    display: none;
  }
}


/* ═══════════════════════════════════════════════════════════ */
/* Sensilight Pro — Science Grid                              */
/* ═══════════════════════════════════════════════════════════ */

.science-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.science-card {
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(249, 197, 165, 0.15);
  transition: all 0.3s ease;
}

.science-card:hover {
  border-color: var(--peach);
  background: rgba(249, 197, 165, 0.06);
  transform: translateY(-3px);
}

.science-card__title {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.science-card__desc {
  color: var(--grey-400);
  font-size: 0.88rem;
  line-height: 1.65;
}

@media (max-width: 600px) {
  .science-grid {
    grid-template-columns: 1fr;
  }
}


/* ── Emotional Benefit Cards (stats-grid) ─── */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--grey-200);
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--peach);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}


/* ═══════════════════════════════════════════════════════════ */
/* Sensilight Pro — Comparison Table                          */
/* ═══════════════════════════════════════════════════════════ */

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.compare-table th,
.compare-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--grey-100);
  vertical-align: middle;
}

.compare-table thead th {
  background: var(--black);
  color: var(--white);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.compare-table thead th:first-child {
  text-align: left;
}

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--black);
  background: var(--grey-50);
  white-space: nowrap;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table .col-pro {
  background: rgba(249, 197, 165, 0.08);
}

.compare-table thead .col-pro {
  background: var(--peach-dark);
}

.compare-win {
  color: var(--peach-dark);
  font-weight: 700;
}

.compare-lose {
  color: var(--grey-300);
}

@media (max-width: 768px) {
  .compare-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-sm);
  }

  .compare-table {
    min-width: 640px;
  }

  .compare-table th,
  .compare-table td {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.8rem;
  }
}


/* ═══════════════════════════════════════════════════════════ */
/* Sensilight Pro — Skin Tone Compatibility                   */
/* ═══════════════════════════════════════════════════════════ */

.skin-tone-chart {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}

.skin-tone-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.skin-tone-swatch {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.skin-tone-item--compatible .skin-tone-swatch {
  border-color: var(--peach);
}

.skin-tone-item--incompatible .skin-tone-swatch {
  border-color: var(--grey-200);
  opacity: 0.5;
}

.skin-tone-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey-600);
  letter-spacing: 0.02em;
}

.skin-tone-item--incompatible .skin-tone-label {
  color: var(--grey-300);
}

.skin-tone-status {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .skin-tone-swatch {
    width: 48px;
    height: 48px;
  }

  .skin-tone-chart {
    gap: var(--space-md);
  }
}


/* ═══════════════════════════════════════════════════════════ */
/* Mobile Responsive Stacking — All Grid Sections             */
/* ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Stack all multi-column grids to single column */
  .responsive-grid {
    grid-template-columns: 1fr !important;
  }

  /* Trust bar: 2×2 grid on mobile instead of single column */
  .responsive-trust-bar {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: var(--space-lg) !important;
    justify-items: center;
  }

  /* Allow section titles to wrap on mobile */
  .section-header__title {
    white-space: normal !important;
  }

  /* Comparison tables: horizontal scroll */
  .compare-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-sm);
  }

  .compare-scroll table {
    min-width: 500px;
  }
}

/* ═══════════════════════════════════════════════════════════ */
/* Breadcrumbs — Product pages                                 */
/* ═══════════════════════════════════════════════════════════ */

.pdp-breadcrumbs {
  margin-bottom: var(--space-lg);
}

.pdp-breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.pdp-breadcrumbs__link {
  font-size: 0.78rem;
  color: var(--grey-500);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.pdp-breadcrumbs__link:hover {
  color: var(--peach-dark);
}

.pdp-breadcrumbs__separator {
  font-size: 0.7rem;
  color: var(--grey-300);
  user-select: none;
}

.pdp-breadcrumbs__item--current {
  font-size: 0.78rem;
  color: var(--grey-700);
  font-weight: 500;
}

/* Mobile: show "← Products" back link only */
@media (max-width: 768px) {
  .pdp-breadcrumbs__list {
    gap: var(--space-xs);
  }

  .pdp-breadcrumbs__separator,
  .pdp-breadcrumbs__item--current {
    display: none;
  }

  .pdp-breadcrumbs__list li:first-child {
    display: none;
  }

  .pdp-breadcrumbs__list li:first-child+.pdp-breadcrumbs__separator {
    display: none;
  }

  .pdp-breadcrumbs__link::before {
    content: '← ';
  }
}

/* ═══════════════════════════════════════════════════════════ */
/* Thumbnail scrollbar — WebKit                                */
/* ═══════════════════════════════════════════════════════════ */

.pdp-thumbs::-webkit-scrollbar {
  width: 4px;
}

.pdp-thumbs::-webkit-scrollbar-track {
  background: transparent;
}

.pdp-thumbs::-webkit-scrollbar-thumb {
  background: var(--grey-300);
  border-radius: 2px;
}

.pdp-thumbs::-webkit-scrollbar-thumb:hover {
  background: var(--grey-400);
}

/* ═══════════════════════════════════════════════════════════ */
/* Buy Buttons — Quantity + Add to Cart + Buy with Prime       */
/* ═══════════════════════════════════════════════════════════ */

.buy-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.buy-buttons__row {
  display: flex;
  align-items: stretch;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

/* Quantity selector */
.buy-buttons__qty {
  display: flex;
  align-items: center;
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.buy-buttons__qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--grey-600);
  transition: color var(--duration) var(--ease),
    background var(--duration) var(--ease);
}

.buy-buttons__qty-btn:hover {
  background: var(--grey-100);
  color: var(--off-black);
}

.buy-buttons__qty-input {
  width: 36px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--off-black);
  -moz-appearance: textfield;
  appearance: textfield;
}

.buy-buttons__qty-input::-webkit-outer-spin-button,
.buy-buttons__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Add to Cart form — remove default form styling */
.buy-buttons__form {
  flex: 1;
  display: flex;
  min-width: 0;
}

/* Add to Cart button — peach, square corners */
.buy-buttons__add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: var(--peach-dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--duration) var(--ease),
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.buy-buttons__add-to-cart:hover {
  background: #c06a4e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200, 120, 80, 0.3);
}

/* Buy with Prime wrapper */
.buy-buttons__prime-wrap {
  width: 100%;
}

/* Buy with Prime fallback button — white outline, square corners */
.buy-buttons__prime {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: var(--white);
  color: var(--off-black);
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.buy-buttons__prime:hover {
  background: var(--grey-50);
  border-color: var(--grey-400);
}

/* Mobile buy buttons */
@media (max-width: 768px) {
  .buy-buttons__row {
    flex-direction: row;
  }

  .buy-buttons__qty {
    align-self: stretch;
  }

  .buy-buttons__add-to-cart {
    padding: 14px 16px;
    font-size: 0.78rem;
  }
}

/* ═══════════════════════════════════════════════════════════ */
/* FAQ Accordion — Plus/Minus icons, single-open behavior      */
/* ═══════════════════════════════════════════════════════════ */

.faq-item {
  border-bottom: 1px solid var(--grey-200);
}

.faq-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--grey-700);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--duration) var(--ease);
}

.faq-item__header:hover {
  color: var(--off-black);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-400);
  transition: color 0.3s ease;
}

.faq-item.is-open .faq-item__icon {
  color: var(--peach-dark);
}

/* Chevron rotation */
.faq-item__chevron {
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.is-open .faq-item__body {
  max-height: 1200px;
}

.faq-item__answer {
  padding-bottom: var(--space-lg);
  font-size: 0.92rem;
  color: var(--grey-500);
  line-height: 1.7;
}

/* ── Breadcrumbs ─────────────────────────── */
.breadcrumbs {
    padding: var(--space-sm) 0;
    margin-bottom: var(--space-md);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.82rem;
    color: var(--grey-500);
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 0.4rem;
    color: var(--grey-300);
}

.breadcrumbs a {
    color: var(--grey-500);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: var(--peach-dark);
}

.breadcrumbs li[aria-current="page"] {
    color: var(--off-black);
    font-weight: 500;
}

/* ── Share Buttons ───────────────────────── */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: var(--space-md) 0;
    border-top: 1px solid var(--grey-200);
    margin-top: var(--space-xl);
}

.share-buttons__label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--grey-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.share-buttons__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--off-black);
    transition: all 0.2s ease;
}

.share-buttons__link:hover {
    background: var(--peach-dark);
    color: var(--white);
    transform: translateY(-1px);
}

/* ── Blog Card Comment Count ─────────────── */
.blog-modern__card-comments {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--grey-500);
    font-size: 0.82rem;
}

.blog-modern__card-comments svg {
    opacity: 0.6;
}

.blog-modern__card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ── Article Template ────────────────────── */
.article-template {
    padding-top: 0;
    padding-bottom: var(--space-2xl);
}

/* Breadcrumbs — clear fixed header */
.breadcrumbs {
    padding-top: calc(var(--header-height) + var(--space-sm));
    padding-bottom: 0;
    margin-bottom: 0;
    padding-left: clamp(1.25rem, 4vw, 3rem);
    padding-right: clamp(1.25rem, 4vw, 3rem);
}

/* Mobile: simple back link instead of full breadcrumb trail */
.breadcrumbs__back {
    display: none;
}

@media (max-width: 768px) {
    .breadcrumbs ol {
        display: none;
    }
    .breadcrumbs__back {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        font-size: 0.82rem;
        color: var(--grey-500);
        text-decoration: none;
    }
    .breadcrumbs__back:hover {
        color: var(--peach-dark);
    }
}

/* Article header */
.article-header {
    margin-bottom: var(--space-md);
}

.article-header__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.article-header__tag {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--peach-dark);
    background: var(--peach-light);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.article-header__tag:hover {
    background: var(--peach-dark);
    color: var(--white);
}

.article-header__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

.article-header__meta {
    font-size: 0.85rem;
    color: var(--grey-400);
    display: flex;
    gap: var(--space-md);
}

.article-header__author {
    color: var(--grey-500);
}

/* Article content */
.article-content {
    margin-bottom: var(--space-2xl);
}

.article-content__body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--grey-700);
}

.article-content__body img {
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
}

.article-content__body h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.article-content__body h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.article-content__body p {
    margin-bottom: var(--space-md);
}

.article-content__body ul,
.article-content__body ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
    list-style: revert;
}

.article-content__body li {
    margin-bottom: var(--space-xs);
}

/* Article navigation */
.article-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl) 0;
    margin-top: var(--space-xl);
    border-top: 1px solid var(--grey-200);
}

.article-nav__link {
    font-size: 0.85rem;
    color: var(--grey-500);
    transition: color 0.2s ease;
}

.article-nav__link:hover {
    color: var(--peach-dark);
}

.article-nav__back {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--grey-500);
}

.article-nav__back:hover {
    color: var(--off-black);
}

/* Article comments */
.article-comments {
    background: var(--cream);
    padding: var(--space-3xl) 0;
    margin-top: var(--space-2xl);
}

.article-comments h2 {
    margin-bottom: var(--space-xl);
}

.article-comments__item {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--grey-200);
    font-size: 0.92rem;
    line-height: 1.65;
}

.article-comments__item footer {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-sm);
    font-size: 0.82rem;
    color: var(--grey-400);
}