/* ═══════════════════════════════════════════════════════════════
   VESKARI — Inner Cosmos Design System
   Premium Ayurvedic Wellness | Mimoradny Veskora
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
    /* Color Palette */
    --navy-dark: #0A0E1A;
    --navy-medium: #121829;
    --navy-light: #1A2035;
    --gold-bright: #D4AF37;
    --gold-muted: #C5A059;
    --gold-dim: rgba(212, 175, 55, 0.15);
    --gold-glow: rgba(212, 175, 55, 0.3);
    --white-pure: #FFFFFF;
    --white-soft: #E8E6E1;
    --white-muted: rgba(255, 255, 255, 0.6);
    --red-warning: #D4534B;

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Cinzel', 'Times New Roman', serif;
    --font-brand: 'Gilroy', sans-serif;
    --font-tagline: 'Space Grotesk', sans-serif;
    --font-product: 'League Spartan', sans-serif;

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

    /* Layout */
    --max-width: 1100px;
    --max-width-narrow: 780px;
    --border-radius: 8px;
    --border-radius-lg: 16px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.6s ease;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--navy-dark);
    color: var(--white-soft);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: var(--gold-bright);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--white-pure);
}

/* ── Animated Cosmic Background ────────────────────────────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        170deg,
        var(--navy-dark) 0%,
        #080C16 35%,
        #0D1220 65%,
        var(--navy-dark) 100%
    );
    background-size: 400% 400%;
    animation: cosmicShift 25s ease infinite;
}

@keyframes cosmicShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ── Site-Wide Navigation ──────────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 2rem;
    background: rgba(10, 14, 26, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.08);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.site-nav.scrolled {
    background: rgba(10, 14, 26, 0.96);
    border-bottom-color: rgba(197, 160, 89, 0.15);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.nav__logo img {
    height: 22px;
    width: auto;
}

.nav__links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav__link {
    color: var(--gold-muted);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
    color: var(--gold-bright);
}

.nav__cta {
    padding: 8px 22px;
    font-size: 0.72rem;
}

/* Hamburger (mobile) */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 110;
}

.nav__hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--gold-bright);
    transition: all 0.3s ease;
}

.nav__hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav__hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Products Grid (Homepage) ──────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.product-card {
    background: var(--navy-medium);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card__img-wrap {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    position: relative;
}

.product-card__img {
    max-height: 260px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.1));
    transition: transform var(--transition-base);
}

.product-card:hover .product-card__img {
    transform: scale(1.04);
}

.product-card__name {
    font-family: var(--font-product);
    font-weight: 700;
    color: var(--gold-bright);
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.product-card__subtitle {
    color: var(--gold-muted);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
}

.product-card__desc {
    color: var(--white-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.product-card__price {
    font-size: 1.4rem;
    color: var(--white-pure);
    font-weight: 300;
    margin-bottom: var(--space-md);
}

.product-card__price span {
    font-size: 0.8rem;
    color: var(--gold-muted);
}

.product-card__link {
    display: inline-block;
    border: 1px solid var(--gold-muted);
    color: var(--gold-bright);
    padding: 10px 28px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: all var(--transition-base);
}

.product-card__link:hover {
    background: var(--gold-bright);
    color: var(--navy-dark);
    border-color: var(--gold-bright);
}

/* ── Brand Hero (Homepage) ─────────────────────────────────── */
.brand-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--space-3xl) + 60px) var(--space-md) var(--space-xl);
    position: relative;
    overflow: hidden;
}

.brand-hero__logo {
    height: 36px;
    width: auto;
    margin-bottom: var(--space-lg);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.25));
}

.brand-hero__title {
    font-family: var(--font-brand);
    font-weight: 800; /* Gilroy-ExtraBold */
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    letter-spacing: 0.12em;
    margin-bottom: var(--space-sm);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.brand-hero__subtitle {
    font-family: var(--font-tagline);
    font-weight: 500;
    color: var(--gold-muted);
    font-size: 0.9rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.brand-hero__desc {
    color: var(--white-muted);
    max-width: 580px;
    margin: 0 auto var(--space-lg);
    font-size: 0.95rem;
    line-height: 1.85;
}

/* Floating star particles for brand hero */
.brand-hero__stars {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.brand-hero__star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold-muted);
    border-radius: 50%;
    animation: starFloat linear infinite;
    opacity: 0;
}

@keyframes starFloat {
    0% { opacity: 0; transform: translateY(0) scale(0.5); }
    20% { opacity: 0.8; }
    80% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

.brand-hero > * {
    position: relative;
    z-index: 1;
}

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

.philosophy__text h2 {
    margin-bottom: var(--space-md);
}

.philosophy__text p {
    color: var(--white-muted);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

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

.philosophy__visual-inner {
    position: relative;
    width: 280px;
    height: 280px;
}

.philosophy__ring {
    position: absolute;
    border: 1px solid var(--gold-dim);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.philosophy__ring--1 {
    width: 280px;
    height: 280px;
    animation: orbitSpin 18s linear infinite;
}

.philosophy__ring--2 {
    width: 200px;
    height: 200px;
    animation: orbitSpin 12s linear infinite reverse;
    border-style: dashed;
    border-color: rgba(197, 160, 89, 0.12);
}

.philosophy__ring--3 {
    width: 120px;
    height: 120px;
    animation: orbitSpin 8s linear infinite;
    border-color: rgba(212, 175, 55, 0.2);
}

.philosophy__core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, var(--gold-bright) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.6;
    animation: corePulse 3s ease infinite;
}

@keyframes corePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.8; }
}

/* ── Coming Soon Badge ─────────────────────────────────────── */
.badge-soon {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-muted);
    border: 1px solid var(--gold-dim);
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: var(--space-sm);
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--gold-bright);
    line-height: 1.2;
    letter-spacing: 0.08em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.6rem); }

.subtitle {
    font-family: var(--font-tagline);
    color: var(--gold-muted);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
}

.brand-font {
    font-family: var(--font-brand);
    font-weight: 800; /* Gilroy-ExtraBold */
}

.product-font {
    font-family: var(--font-product);
    font-weight: 700; /* League Spartan-Bold */
}

/* ── Section Layout ────────────────────────────────────────── */
.section {
    padding: var(--space-3xl) var(--space-md);
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

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

.section__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section__header h2 {
    margin-bottom: var(--space-xs);
}

/* ── Gold Constellation Connector ──────────────────────────── */
.constellation-line {
    display: flex;
    justify-content: center;
    padding: var(--space-lg) 0;
    position: relative;
}

.constellation-line svg {
    width: 2px;
    height: 80px;
    overflow: visible;
}

.constellation-line .line-stroke {
    stroke: var(--gold-muted);
    stroke-width: 1;
    stroke-dasharray: 4, 8;
    opacity: 0.5;
}

.constellation-line .node {
    fill: var(--gold-bright);
    filter: drop-shadow(0 0 4px var(--gold-glow));
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    position: relative;
    overflow: hidden;
}

.hero__product-visual {
    position: relative;
    width: 320px;
    height: 400px;
    margin: var(--space-xl) auto var(--space-lg);
}

.hero__product-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.15));
}

/* Orbiting rings */
.orbit-ring {
    position: absolute;
    border: 1px solid var(--gold-dim);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.orbit-ring--1 {
    width: 360px;
    height: 360px;
    animation: orbitSpin 20s linear infinite;
}

.orbit-ring--2 {
    width: 440px;
    height: 300px;
    animation: orbitSpin 30s linear infinite reverse;
    border-style: dashed;
    border-color: rgba(197, 160, 89, 0.1);
}

.orbit-ring--3 {
    width: 500px;
    height: 500px;
    animation: orbitSpin 40s linear infinite;
    border-color: rgba(212, 175, 55, 0.06);
}

/* Orbit node dots */
.orbit-node {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold-bright);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold-glow);
}

.orbit-ring--1 .orbit-node { top: 0; left: 50%; transform: translate(-50%, -50%); }
.orbit-ring--2 .orbit-node { bottom: 0; right: 0; transform: translate(50%, 50%); }

@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero__title {
    font-family: var(--font-product);
    font-weight: 700;
    font-size: clamp(2.4rem, 6vw, 4rem);
    letter-spacing: 0.15em;
    margin-bottom: var(--space-xs);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.hero__tagline {
    font-family: var(--font-tagline);
    font-weight: 500;
    color: var(--gold-muted);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.hero__description {
    color: var(--white-muted);
    max-width: 560px;
    margin: 0 auto var(--space-lg);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--gold-bright);
    color: var(--gold-bright);
    padding: 14px 40px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-bright);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--navy-dark);
    box-shadow: 0 0 25px var(--gold-glow);
}

.btn-primary:hover::before {
    transform: scaleX(1);
}

.btn-primary:focus-visible,
.btn-checkout:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 4px;
}

/* ── Botanical Cards ───────────────────────────────────────── */
.botanicals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.botanical-card {
    background: var(--navy-medium);
    border: 1px solid rgba(197, 160, 89, 0.12);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.botanical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.botanical-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.botanical-card:hover::before {
    opacity: 1;
}

.botanical-card__icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    color: var(--gold-bright);
    font-size: 1.1rem;
}

.botanical-card__name {
    font-family: var(--font-display);
    color: var(--gold-bright);
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.25rem;
}

.botanical-card__latin {
    color: var(--gold-muted);
    font-style: italic;
    font-size: 0.82rem;
    margin-bottom: var(--space-sm);
    letter-spacing: 0.03em;
}

.botanical-card__desc {
    color: var(--white-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.botanical-card__detail {
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--transition-slow), opacity var(--transition-base), margin-top var(--transition-base);
}

.botanical-card:hover .botanical-card__detail {
    max-height: 200px;
    opacity: 1;
}

.botanical-card__detail span {
    display: block;
    font-size: 0.8rem;
    color: var(--gold-muted);
    margin-bottom: 0.25rem;
}

.botanical-card__detail span strong {
    color: var(--white-soft);
}

/* ── Safety / Regulatory Table ─────────────────────────────── */
.safety-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    margin-top: var(--space-md);
}

.safety-table thead {
    border-bottom: 2px solid var(--gold-dim);
}

.safety-table th {
    font-family: var(--font-display);
    color: var(--gold-bright);
    font-weight: 600;
    text-align: left;
    padding: var(--space-sm);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.safety-table td {
    padding: var(--space-sm);
    border-bottom: 1px solid rgba(197, 160, 89, 0.08);
    color: var(--white-muted);
    vertical-align: top;
    line-height: 1.6;
}

.safety-table tbody tr {
    transition: background var(--transition-fast);
}

.safety-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.04);
}

.status-tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.status-tag--permitted {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-bright);
    border: 1px solid var(--gold-dim);
}

/* ── Regulatory Disclaimer Block ───────────────────────────── */
.disclaimer-block {
    background: var(--navy-medium);
    border: 1px solid rgba(212, 83, 75, 0.2);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
}

.disclaimer-block__title {
    color: var(--red-warning);
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.disclaimer-block p {
    color: var(--white-muted);
    font-size: 0.85rem;
    line-height: 1.8;
}

/* ── Checkout Section ──────────────────────────────────────── */
.checkout {
    text-align: center;
}

.checkout-box {
    background: var(--navy-medium);
    border: 1px solid var(--gold-muted);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl) var(--space-lg);
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}

.checkout-box::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--border-radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, var(--gold-bright), transparent 50%, var(--gold-muted));
    -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    -webkit-mask-clip: content-box, border-box;
    -webkit-mask-origin: content-box, border-box;
    -webkit-mask-composite: xor;
    mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    mask-clip: content-box, border-box;
    mask-origin: content-box, border-box;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.4;
}

.checkout-box__classification {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-muted);
    border: 1px solid var(--gold-dim);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: var(--space-md);
}

.checkout-box__price {
    font-size: 2rem;
    font-weight: 300;
    color: var(--white-pure);
    margin: var(--space-sm) 0;
    letter-spacing: 0.03em;
}

.checkout-box__batch {
    color: var(--gold-muted);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}

.btn-checkout {
    display: block;
    width: 100%;
    background: transparent;
    border: 2px solid var(--gold-bright);
    color: var(--gold-bright);
    padding: 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-base);
    margin-top: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.btn-checkout::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-bright);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
    z-index: -1;
}

.btn-checkout:hover {
    color: var(--navy-dark);
    box-shadow: 0 0 30px var(--gold-glow);
}

.btn-checkout:hover::before {
    transform: scaleX(1);
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
    background: var(--navy-medium);
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    padding: var(--space-xl) var(--space-md);
    text-align: center;
    margin-top: var(--space-3xl);
}

.footer__brand {
    font-family: var(--font-brand);
    font-weight: 800; /* Gilroy-ExtraBold */
    color: var(--gold-bright);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-md);
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm) var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer__links a {
    color: var(--gold-muted);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--gold-bright);
}

.footer__contact {
    color: var(--white-muted);
    font-size: 0.82rem;
    line-height: 1.8;
}

.footer__contact strong {
    color: var(--white-soft);
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    margin-top: var(--space-md);
    letter-spacing: 0.05em;
}

/* ── Legal Page Layout ─────────────────────────────────────── */
.legal-page {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-md);
}

.legal-page h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: var(--space-xs);
}

.legal-page .effective-date {
    color: var(--gold-muted);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xl);
}

.legal-page h2 {
    font-size: 1.15rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid var(--gold-dim);
}

.legal-page h3 {
    font-size: 1rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xs);
    color: var(--gold-muted);
}

.legal-page p,
.legal-page li {
    color: var(--white-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.legal-page ul {
    list-style: none;
    padding-left: var(--space-md);
}

.legal-page ul li::before {
    content: '—';
    color: var(--gold-muted);
    margin-right: var(--space-xs);
}

.legal-page .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-muted);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gold-dim);
    transition: color var(--transition-fast);
}

.legal-page .back-link:hover {
    color: var(--gold-bright);
}

/* ── Success Page ──────────────────────────────────────────── */
.success-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
}

.success-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    animation: successPulse 2s ease infinite;
}

.success-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--gold-bright);
    fill: none;
    stroke-width: 2;
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--gold-glow); }
    50% { box-shadow: 0 0 0 16px rgba(212, 175, 55, 0); }
}

/* ── Scroll Fade-In Animation ──────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Interactive Info layouts (replaces image files) ────── */
.info-section {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: var(--space-xl);
    align-items: center;
}

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

.info-card {
    background: var(--navy-medium);
    border: 1px solid rgba(197, 160, 89, 0.12);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
}

.info-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.05);
}

.info-card__title {
    color: var(--gold-bright);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.info-card__desc {
    color: var(--white-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.info-highlights {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    justify-content: center;
    margin-top: var(--space-md);
}

.info-badge {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--gold-bright);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Audience Profiles */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.audience-card {
    background: rgba(18, 24, 41, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: var(--border-radius);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
}

.audience-card__icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

.audience-card__title {
    color: var(--white-soft);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.audience-card__desc {
    color: var(--white-muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* Spec Table / Comparison Layout */
.comparison-container {
    background: var(--navy-medium);
    border: 1px solid rgba(197, 160, 89, 0.12);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-top: var(--space-xl);
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
}

.comp-table th {
    background: rgba(10, 14, 26, 0.6);
    font-family: var(--font-display);
    color: var(--gold-bright);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1.2rem;
    border-bottom: 2px solid var(--gold-dim);
    text-align: center;
}

.comp-table td {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.06);
    font-size: 0.88rem;
}

.comp-table__feature {
    color: var(--white-soft);
    font-weight: 500;
}

.comp-table__veskari {
    background: rgba(212, 175, 55, 0.03);
    color: var(--gold-bright);
    text-align: center;
    border-left: 1px solid rgba(212, 175, 55, 0.12);
    border-right: 1px solid rgba(212, 175, 55, 0.12);
    font-weight: 600;
}

.comp-table__other {
    color: var(--white-muted);
    text-align: center;
}

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

.comp-table tr:hover {
    background: rgba(255, 255, 255, 0.01);
}

.comp-table tr:hover .comp-table__veskari {
    background: rgba(212, 175, 55, 0.05);
}

/* Certifications list */
.certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.cert-card {
    background: rgba(18, 24, 41, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
}

.cert-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 1.5px solid var(--gold-bright);
    border-radius: 50%;
    color: var(--gold-bright);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: bold;
    margin-bottom: var(--space-sm);
    letter-spacing: 0.05em;
    background: rgba(212, 175, 55, 0.05);
}

.cert-card__title {
    color: var(--white-soft);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.cert-card__desc {
    color: var(--white-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Stepper Layout */
.stepper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    position: relative;
    margin-top: var(--space-xl);
}

.stepper::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--gold-dim);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--navy-medium);
    border: 2px solid var(--gold-bright);
    color: var(--gold-bright);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: var(--space-sm);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.step__title {
    color: var(--white-soft);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
}

.step__desc {
    color: var(--white-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.habit-banner {
    background: rgba(212, 175, 55, 0.04);
    border: 1px solid var(--gold-dim);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.habit-banner__text {
    color: var(--white-soft);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.habit-banner__text strong {
    color: var(--gold-bright);
}

/* Specs Details */
.specs-section {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: var(--space-xl);
    align-items: center;
    margin-top: var(--space-xl);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--gold-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.spec-value {
    color: var(--white-soft);
    font-size: 0.9rem;
    text-align: right;
}

.capsule-size-box {
    background: var(--navy-medium);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.capsule-visual {
    width: 32px;
    height: 80px;
    background: linear-gradient(180deg, #D4AF37 0%, rgba(212, 175, 55, 0.4) 100%);
    border-radius: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    margin: var(--space-sm) 0;
    position: relative;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
}

.capsule-visual::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.3);
}

.capsule-size-label {
    font-size: 0.8rem;
    color: var(--gold-muted);
    margin-top: 0.25rem;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
    /* Mobile nav */
    .nav__hamburger {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-medium);
        border-left: 1px solid var(--gold-dim);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-lg);
        padding: var(--space-xl);
        transition: right 0.35s ease;
    }

    .nav__links.open {
        right: 0;
    }

    .nav__link {
        font-size: 0.85rem;
    }

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

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

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

    .philosophy__visual-inner {
        width: 200px;
        height: 200px;
    }

    .philosophy__ring--1 { width: 200px; height: 200px; }
    .philosophy__ring--2 { width: 140px; height: 140px; }
    .philosophy__ring--3 { width: 80px; height: 80px; }

    .hero__product-visual {
        width: 240px;
        height: 300px;
    }

    .orbit-ring--1 { width: 270px; height: 270px; }
    .orbit-ring--2 { width: 330px; height: 220px; }
    .orbit-ring--3 { width: 380px; height: 380px; }

    .checkout-box {
        padding: var(--space-lg) var(--space-md);
    }

    .safety-table thead {
        display: none;
    }

    .safety-table,
    .safety-table tbody,
    .safety-table tr,
    .safety-table td {
        display: block;
    }

    .safety-table tr {
        margin-bottom: var(--space-md);
        padding-bottom: var(--space-md);
        border-bottom: 1px solid var(--gold-dim);
    }

    .safety-table td {
        padding: var(--space-xs) 0;
        border: none;
    }

    .safety-table td::before {
        content: attr(data-label);
        display: block;
        font-family: var(--font-display);
        color: var(--gold-muted);
        font-size: 0.7rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 0.25rem;
    }

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

    .info-section,
    .specs-section {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

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

    .audience-grid,
    .certs-grid,
    .stepper {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .stepper::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero__title,
    .brand-hero__title {
        letter-spacing: 0.08em;
    }

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

    .product-card__img-wrap {
        height: 200px;
    }
}

/* ==========================================================================
   INLINE STYLE REPLACEMENTS (AUDIT ISSUE 14)
   ========================================================================== */

/* Helper utility classes */
.u-pb-0 {
    padding-bottom: 0 !important;
}

.u-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Product Card Placeholders */
.product-card__placeholder-icon-wrap {
    width: 120px;
    height: 120px;
    border: 1px dashed var(--gold-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__placeholder-icon {
    color: var(--gold-muted);
    font-size: 2rem;
}

.product-card__price--soon {
    color: var(--gold-muted);
}

/* Philosophy Section Spacing */
.philosophy__text .subtitle {
    margin-bottom: 0.5rem;
}

.philosophy__ring--1 .orbit-node {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.philosophy__ring--2 .orbit-node {
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
}

/* Disclaimer / Regulatory Block Spacing */
.disclaimer-block p + p {
    margin-top: 1rem;
}

.disclaimer-block__link {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}

/* Product Info & Composition Inline Styles */
.info-section__visual {
    text-align: center;
}

.info-section__img {
    max-width: 220px;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.15));
}

.info-highlights--checkout {
    margin-top: var(--space-xl);
}

.info-highlights--usage {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.info-highlights--specs {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.botanicals-grid__header {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: var(--space-lg);
}

.botanicals-grid__header .subtitle {
    color: var(--gold-bright);
}

.botanicals-grid__header h3 {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    color: var(--white-soft);
    margin-top: 0.5rem;
    font-weight: 500;
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Comparison Table adjustments */

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

.comp-table__veskari--header {
    background: rgba(212, 175, 55, 0.08) !important;
}

/* Section Header modifiers */
.section__header--mb-lg {
    margin-bottom: var(--space-lg);
}

.section__header--quality {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
}

/* Safety Table custom styles */
.safety-table td strong {
    color: var(--white-soft);
}

.safety-table td em {
    color: var(--gold-muted);
    font-size: 0.78rem;
}

.safety-table td span:not(.status-tag) {
    font-size: 0.8rem;
    margin-top: 4px;
    display: inline-block;
}

/* Capsule Visualizer adjustments */
.capsule-size-box .spec-label {
    font-family: var(--font-display);
    color: var(--gold-bright);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
}

.capsule-size-box__sub {
    font-size: 0.75rem;
    color: var(--white-muted);
    margin-top: 0.25rem;
}

.specs-section__disclaimer {
    text-align: center;
    color: var(--white-muted);
    font-size: 0.72rem;
    max-width: 680px;
    margin: var(--space-md) auto 0;
    line-height: 1.5;
}

/* Checkout Box enhancements */
.checkout-box h3 {
    font-family: var(--font-product);
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.12em;
    margin: 0.5rem 0 0.25rem;
}

.checkout-box__price span {
    font-size: 0.9rem;
    color: var(--gold-muted);
}

.checkout-box__desc {
    color: var(--white-muted);
    font-size: 0.82rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.checkout-box__security {
    color: var(--gold-muted);
    font-size: 0.7rem;
    margin-top: 1rem;
    letter-spacing: 0.05em;
}

/* About Us styling cleanups */
.about-section__values {
    letter-spacing: 0.1em;
    color: var(--gold-bright);
    text-transform: uppercase;
    font-size: 0.8rem;
}

.astronaut-symbol-box h3 {
    margin-top: 0;
}

.about-section__quote {
    text-align: center;
    margin-top: var(--space-xl);
    font-family: var(--font-display);
    color: var(--gold-muted);
    letter-spacing: 0.1em;
}

.about-section__quote strong {
    color: var(--gold-bright);
}

/* Success Page styling cleanups */
.success-page h1 {
    margin-bottom: 0.5rem;
}

.success-page .subtitle {
    margin-bottom: 2rem;
}

.success-card {
    background: var(--navy-medium);
    border: 1px solid var(--gold-dim);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
}

.success-card p {
    color: var(--white-muted);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.success-card p:nth-child(2) {
    font-size: 0.85rem;
    line-height: 1.7;
}

.success-card p:last-child {
    color: var(--gold-muted);
    font-size: 0.8rem;
    margin-bottom: 0;
}

.success-card strong {
    color: var(--gold-bright);
}

.success-card p:nth-child(2) strong {
    color: var(--white-soft);
}

.success-card a {
    color: var(--gold-bright);
}

.success-page .btn-primary {
    margin-top: 2.5rem;
}

/* Legal Pages strong tags default styling */
.legal-page strong {
    color: var(--white-soft);
}

.legal-page strong.warning {
    color: var(--red-warning);
}

.legal-page strong.highlight {
    color: var(--white-pure);
}

.legal-page__warning {
    margin-top: 1rem;
}


/* ==========================================================================
   PREMIUM CUSTOMER EXPERIENCE ENHANCEMENTS
   ========================================================================== */

/* Notify Modal (Dialog) */
.notify-modal {
    background: var(--navy-medium);
    border: 1px solid var(--gold-muted);
    border-radius: var(--border-radius-lg);
    color: var(--white-soft);
    padding: var(--space-lg);
    max-width: 480px;
    width: 90%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(212, 175, 55, 0.1);
    z-index: 1000;
}

.notify-modal::backdrop {
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(8px);
}

.notify-modal__form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.notify-modal__close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: none;
    border: none;
    color: var(--gold-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-fast);
}

.notify-modal__close:hover {
    color: var(--gold-bright);
}

.notify-modal h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.4rem;
}

.notify-modal p {
    color: var(--white-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.notify-modal__field {
    display: flex;
    gap: var(--space-xs);
}

.notify-modal__field input {
    flex: 1;
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: var(--border-radius);
    padding: 12px 16px;
    color: var(--white-pure);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition-fast);
}

.notify-modal__field input:focus {
    outline: none;
    border-color: var(--gold-bright);
}

.notify-modal__field .btn-primary {
    padding: 12px 24px;
    font-size: 0.75rem;
}

.notify-modal__success {
    text-align: center;
    padding: var(--space-md) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.notify-modal__success .success-check {
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-bright);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Quantity Selector */
.qty-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 14, 26, 0.4);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: var(--border-radius);
    padding: 12px 18px;
    margin-bottom: var(--space-md);
    margin-top: var(--space-sm);
}

.qty-selector__label {
    color: var(--gold-muted);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.qty-btn {
    background: none;
    border: 1px solid var(--gold-muted);
    color: var(--gold-bright);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

.qty-btn:hover {
    background: var(--gold-bright);
    color: var(--navy-dark);
    border-color: var(--gold-bright);
}

#qty-val {
    font-family: var(--font-tagline);
    color: var(--white-pure);
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: var(--max-width-narrow);
    margin: var(--space-xl) auto 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--navy-medium);
    border: 1px solid rgba(197, 160, 89, 0.12);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item[open] {
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-display);
    color: var(--gold-bright);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--gold-muted);
    transition: transform var(--transition-fast);
}

.faq-item[open] .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-lg) var(--space-md);
    border-top: 1px solid rgba(197, 160, 89, 0.05);
}

.faq-answer p {
    color: var(--white-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: var(--space-sm);
}

/* Contact Form Card */
.contact-card {
    background: var(--navy-medium);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl) var(--space-lg);
    margin-top: var(--space-xl);
}

.contact-card h2 {
    font-family: var(--font-display);
    color: var(--gold-bright);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
    text-align: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    padding-bottom: var(--space-sm);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 580px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    color: var(--gold-muted);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: var(--border-radius);
    padding: 14px 16px;
    color: var(--white-pure);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-bright);
}

.form-success {
    text-align: center;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--gold-dim);
    border-radius: var(--border-radius);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    animation: successPulse 2s ease;
}

.form-success .success-check {
    width: 44px;
    height: 44px;
    border: 2px solid var(--gold-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold-bright);
}

.form-success p {
    color: var(--white-soft);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* ── Checkout & Tax Upgrades ────────────────────────────── */
.checkout-box__gst-breakdown {
    font-size: 0.8rem;
    color: var(--gold-muted);
    font-family: var(--font-tagline);
    margin-top: -8px;
    margin-bottom: var(--space-md);
    opacity: 0.85;
    text-align: center;
}

/* ── Order Summary Receipt ──────────────────────────────── */
.order-summary-card {
    background: var(--navy-medium);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) auto;
    max-width: 460px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.order-summary-card h3 {
    font-family: var(--font-display);
    color: var(--gold-bright);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    padding-bottom: var(--space-xs);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    color: var(--white-muted);
}

.summary-line span:first-child {
    font-family: var(--font-body);
}

.summary-line span:last-child {
    font-family: var(--font-tagline);
    color: var(--white-soft);
}

.summary-line.total {
    border-top: 1px dashed rgba(197, 160, 89, 0.3);
    padding-top: var(--space-sm);
    margin-top: var(--space-md);
    font-weight: 600;
}

.summary-line.total span:first-child {
    color: var(--gold-bright);
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    font-size: 1rem;
}

.summary-line.total span:last-child {
    color: var(--gold-bright);
    font-size: 1.2rem;
}

.invoice-note {
    font-size: 0.72rem;
    color: var(--gold-muted);
    opacity: 0.8;
    text-align: center;
    margin-top: var(--space-md);
    font-style: italic;
    line-height: 1.5;
}


/* Mobile visual optimizations */
@media (max-width: 480px) {
    .hero__product-visual {
        max-width: 240px;
        margin: 0 auto var(--space-md);
    }
    .orbit-ring {
        display: none !important; /* Hide orbits on mobile to prevent overlap and visual noise */
    }
}

/* Comparison table mobile scroll (UI-01) */
@media (max-width: 768px) {
    .comparison-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .comp-table {
        min-width: 600px;
    }
}

/* Regulatory advisory caution style (UI-02) */
.disclaimer-block__caution {
    margin-top: var(--space-sm);
    border-top: 1px dashed rgba(197, 160, 89, 0.2);
    padding-top: var(--space-sm);
    color: var(--gold-bright);
}





