/* ============================================================
   RESOLVE PEPTIDES — MAIN STYLESHEET
   Brand: Primary Teal #0C6E8A | Dark Teal #094f64
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
    --color-primary:       #0C6E8A;
    --color-primary-dark:  #094f64;
    --color-primary-light: #e8f4f8;
    --color-primary-mid:   #1a8aa8;

    --color-bg:            #f8f9fa;
    --color-bg-white:      #ffffff;
    --color-bg-dark:       #0a1628;

    --color-text:          #1a2332;
    --color-text-muted:    #6c757d;
    --color-text-light:    #adb5bd;

    --color-border:        #dee2e6;
    --color-border-light:  #e9ecef;

    --color-success:       #28a745;
    --color-warning:       #ffc107;
    --color-danger:        #dc3545;
    --color-info:          #17a2b8;

    --font-body:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading:        'Montserrat', var(--font-body);

    --radius-sm:  6px;
    --radius-md:  10px;
    --radius-lg:  16px;
    --radius-xl:  24px;
    --radius-full: 9999px;

    --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
    --shadow-md:  0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:  0 8px 32px rgba(0,0,0,.12);
    --shadow-xl:  0 16px 48px rgba(0,0,0,.14);

    --transition: 0.18s ease;

    --container-max:  1280px;
    --container-narrow: 800px;
    --header-height:  72px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.375rem, 3vw, 1.875rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-center { text-align: center; }
.text-muted  { color: var(--color-text-muted); }

/* ── Layout ───────────────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; }

section { padding: 4rem 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    transition: all var(--transition);
    line-height: 1;
    white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:disabled, .btn[disabled] { opacity: 0.6; cursor: not-allowed; pointer-events: none; }

.btn--primary  { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn--primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); color: #fff; }

.btn--outline  { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn--outline:hover { background: var(--color-primary-light); }

.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn--ghost { background: transparent; color: var(--color-text-muted); border-color: var(--color-border); }
.btn--ghost:hover { background: var(--color-bg-alt); color: var(--color-primary); border-color: var(--color-primary); }

.btn--white { background: #fff; color: var(--color-primary); border-color: #fff; }
.btn--white:hover { background: #f0fbff; }

.btn--white-outline { background: transparent; color: #fff; border-color: #fff; }
.btn--white-outline:hover { background: rgba(255,255,255,.15); }

.btn--danger  { background: var(--color-danger); color: #fff; border-color: var(--color-danger); }
.btn--danger:hover { background: #b02a37; }

.btn--danger-outline { background: transparent; color: var(--color-danger); border-color: var(--color-danger); }
.btn--danger-outline:hover { background: #fff5f5; }

.btn--sm  { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn--lg  { padding: 0.875rem 2rem; font-size: 1.0625rem; }
.btn--xs  { padding: 0.3rem 0.6rem; font-size: 0.8125rem; }
.btn--full { width: 100%; }
.btn--link { background: none; border: none; color: var(--color-primary); padding: 0; font-weight: 500; }
.btn-link  { background: none; border: none; color: var(--color-primary); padding: 0; font-size: inherit; font-family: inherit; cursor: pointer; }

/* ── Forms ────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.4rem;
}
.form-label .required { color: var(--color-danger); }
.form-control {
    width: 100%;
    padding: 0.6875rem 0.875rem;
    font-size: 0.9375rem;
    font-family: var(--font-body);
    color: var(--color-text);
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}
.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(12,110,138,.12);
}
.form-control--sm { padding: 0.5rem 0.75rem; font-size: 0.875rem; }
.form-control::placeholder { color: var(--color-text-light); }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c757d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.875rem center; padding-right: 2.5rem; }
textarea.form-control { resize: vertical; min-height: 100px; }

.form-control.has-error, .has-error .form-control { border-color: var(--color-danger); }
.form-error { display: block; font-size: 0.8125rem; color: var(--color-danger); margin-top: 0.3rem; }
.form-hint  { display: block; font-size: 0.8125rem; color: var(--color-text-muted); margin-top: 0.3rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row--3 { grid-template-columns: 2fr 1fr 1fr; }
.form-actions { margin-top: 1.5rem; }

/* Form input aliases (HTML uses form-input/select/textarea, CSS defines form-control) */
.form-input { width: 100%; padding: 0.6875rem 0.875rem; font-size: 0.9375rem; font-family: var(--font-body); color: var(--color-text); background: #fff; border: 1.5px solid var(--color-border); border-radius: var(--radius-md); transition: border-color var(--transition), box-shadow var(--transition); -webkit-appearance: none; appearance: none; outline: none; }
.form-input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(12,110,138,.12); }
.form-input::placeholder { color: var(--color-text-light); }
.form-select { width: 100%; padding: 0.6875rem 2.5rem 0.6875rem 0.875rem; font-size: 0.9375rem; font-family: var(--font-body); color: var(--color-text); background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c757d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 0.875rem center; border: 1.5px solid var(--color-border); border-radius: var(--radius-md); transition: border-color var(--transition); -webkit-appearance: none; appearance: none; outline: none; }
.form-select:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(12,110,138,.12); }
.form-textarea { width: 100%; padding: 0.6875rem 0.875rem; font-size: 0.9375rem; font-family: var(--font-body); color: var(--color-text); background: #fff; border: 1.5px solid var(--color-border); border-radius: var(--radius-md); transition: border-color var(--transition); outline: none; resize: vertical; min-height: 90px; }
.form-textarea:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(12,110,138,.12); }
.form-textarea::placeholder { color: var(--color-text-light); }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--color-text); margin-bottom: 0.4rem; }
.form-group label .required { color: var(--color-danger, #dc3545); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row-3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1rem; }


/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    cursor: pointer;
    font-size: 0.9375rem;
    line-height: 1.5;
}
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--color-primary); cursor: pointer; }

/* Password input wrapper */
.input-password-wrapper { position: relative; }
.input-password-wrapper .form-control { padding-right: 3rem; }
.password-toggle {
    position: absolute; right: 0.875rem; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: var(--color-text-muted); cursor: pointer; padding: 0;
    display: flex; align-items: center;
}
.password-toggle:hover { color: var(--color-primary); }

/* Password Strength */
.password-strength { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.5rem; }
.password-strength__bar { flex: 1; height: 4px; background: var(--color-border); border-radius: 2px; overflow: hidden; }
.password-strength__fill { height: 100%; border-radius: 2px; transition: width 0.3s ease, background-color 0.3s ease; width: 0; }
.password-strength__label { font-size: 0.8125rem; font-weight: 500; min-width: 60px; }

/* ── Badge / Tags ─────────────────────────────────────────── */
.badge {
    display: inline-flex; align-items: center; gap: 0.25rem;
    padding: 0.25rem 0.625rem; border-radius: var(--radius-full);
    font-size: 0.75rem; font-weight: 600; line-height: 1;
}
.badge--primary    { background: var(--color-primary-light); color: var(--color-primary-dark); }
.badge--success    { background: #d4edda; color: #155724; }
.badge--warning    { background: #fff3cd; color: #856404; }
.badge--danger     { background: #f8d7da; color: #721c24; }
.badge--dark       { background: var(--color-text); color: #fff; }

/* Membership badge */
.membership-badge { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.2rem 0.6rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; }
.membership-badge--vip          { background: #fef3c7; color: #92400e; }
.membership-badge--professional { background: var(--color-primary-light); color: var(--color-primary-dark); }

/* ── Flash Messages ──────────────────────────────────────── */
.flash-messages { position: fixed; top: 1rem; right: 1rem; z-index: 9999; display: flex; flex-direction: column; gap: 0.5rem; max-width: 380px; }
.flash {
    display: flex; align-items: flex-start; gap: 0.75rem;
    padding: 0.875rem 1rem; border-radius: var(--radius-md);
    box-shadow: var(--shadow-md); font-size: 0.9375rem;
    animation: slideIn 0.2s ease;
}
.flash--success { background: #d4edda; color: #155724; border-left: 4px solid #28a745; }
.flash--error   { background: #f8d7da; color: #721c24; border-left: 4px solid #dc3545; }
.flash--info    { background: #d1ecf1; color: #0c5460; border-left: 4px solid #17a2b8; }
.flash--warning { background: #fff3cd; color: #856404; border-left: 4px solid #ffc107; }
.flash__message { flex: 1; line-height: 1.5; }
.flash-close { background: none; border: none; font-size: 1.25rem; line-height: 1; cursor: pointer; color: inherit; opacity: 0.6; padding: 0; margin-left: auto; }
.flash-close:hover { opacity: 1; }
@keyframes slideIn { from { opacity: 0; transform: translateX(1rem); } to { opacity: 1; transform: translateX(0); } }

/* ── Header / Topbar ─────────────────────────────────────── */
.site-topbar {
    background: var(--color-primary-dark);
    color: rgba(255,255,255,.85);
    font-size: 0.8125rem;
    padding: 0.375rem 0;
}
.site-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.site-topbar__disclaimer { flex: 1; }
.site-topbar__links { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.site-topbar__links a { color: rgba(255,255,255,.8); transition: color var(--transition); }
.site-topbar__links a:hover { color: #fff; text-decoration: none; }
.topbar-membership-badge { display: inline-flex; align-items: center; gap: 0.25rem; background: rgba(255,255,255,.15); padding: 0.2rem 0.6rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; color: #fff; }

.site-header {
    background: #fff;
    border-bottom: 1.5px solid var(--color-border-light);
    position: sticky; top: 0; z-index: 900;
    height: var(--header-height);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
}
.site-header > .container { width: 100%; height: 100%; display: flex; align-items: center; }
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; width: 100%; height: 100%; }

.site-logo a {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-heading); font-weight: 800;
    font-size: 1.375rem; color: var(--color-primary);
    letter-spacing: -0.02em; text-decoration: none;
    white-space: nowrap;
}
.site-logo a:hover { text-decoration: none; color: var(--color-primary-dark); }
.site-logo__icon { display: flex; align-items: center; }
.site-logo img {
    max-height: 48px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.site-search { flex: 1; max-width: 440px; position: relative; }
.site-search__input-wrapper { display: flex; align-items: center; gap: 0; }
.site-search__input {
    width: 100%; padding: 0.5625rem 1rem 0.5625rem 2.5rem;
    border: 1.5px solid var(--color-border); border-radius: var(--radius-full);
    font-size: 0.9375rem; font-family: var(--font-body);
    background: var(--color-bg); outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.site-search__input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(12,110,138,.1); background: #fff; }
.site-search__icon { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); color: var(--color-text-muted); pointer-events: none; }
.site-search__autocomplete {
    position: absolute; top: calc(100% + 4px); left: 0; right: 0;
    background: #fff; border: 1.5px solid var(--color-border-light);
    border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
    z-index: 1000; display: none;
}
.site-search__autocomplete.open { display: block; }
.search-result-item {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.625rem 0.875rem; cursor: pointer;
    transition: background var(--transition);
}
.search-result-item:hover { background: var(--color-primary-light); }
.search-result-item img { width: 40px; height: 40px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.search-result-item__info { flex: 1; min-width: 0; }
.search-result-item__name { font-size: 0.875rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-item__price { font-size: 0.8125rem; color: var(--color-primary); font-weight: 600; }

.site-header__actions { display: flex; align-items: center; gap: 0.5rem; margin-left: auto; }
.header-cart-btn {
    position: relative; display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: var(--radius-md);
    background: none; border: 1.5px solid var(--color-border);
    color: var(--color-text); transition: all var(--transition); cursor: pointer;
}
.header-cart-btn:hover { border-color: var(--color-primary); color: var(--color-primary); background: var(--color-primary-light); }
.cart-badge {
    position: absolute; top: -6px; right: -6px;
    background: var(--color-primary); color: #fff;
    width: 20px; height: 20px; border-radius: 50%;
    font-size: 0.6875rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff;
}
.header-mobile-toggle { display: none; background: none; border: none; color: var(--color-text); padding: 0.5rem; }

/* ── Navigation ───────────────────────────────────────────── */
.site-nav { background: var(--color-primary); }
.site-nav__inner { display: flex; align-items: center; }
.site-nav__list { display: flex; align-items: center; gap: 0; }
.site-nav__item { position: relative; }
.site-nav__link {
    display: flex; align-items: center; gap: 0.3rem;
    padding: 0.875rem 1.125rem; color: rgba(255,255,255,.9);
    font-size: 0.9rem; font-weight: 500;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}
.site-nav__link:hover, .site-nav__item.active .site-nav__link { background: rgba(255,255,255,.1); color: #fff; text-decoration: none; }
.site-nav__link--vip { color: #ffd700 !important; }
.site-nav__link--vip:hover { background: rgba(255,215,0,.1) !important; }
.site-nav__chevron { transition: transform 0.2s ease; }
.site-nav__item:hover .site-nav__chevron { transform: rotate(180deg); }

/* Standard Dropdown (kept for fallback) */
.nav-dropdown {
    position: absolute; top: 100%; left: 0;
    background: #fff; border: 1.5px solid var(--color-border-light);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg); min-width: 200px; z-index: 800;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: all 0.18s ease; pointer-events: none;
}
.site-nav__item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all; }
.nav-dropdown__item { display: block; padding: 0.5rem 1rem; color: var(--color-text); font-size: 0.875rem; transition: background var(--transition); white-space: nowrap; }
.nav-dropdown__item:hover { background: var(--color-primary-light); color: var(--color-primary); text-decoration: none; }
.nav-dropdown__item--all { font-weight: 600; color: var(--color-primary); border-top: 1px solid var(--color-border-light); margin-top: 0.25rem; padding-top: 0.5rem; font-size: 0.8rem; }
.nav-dropdown__item--all:hover { background: var(--color-primary-light); }

/* Mega Dropdown */
.nav-mega-dropdown {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-6px);
    background: #fff; border: 1.5px solid var(--color-border-light);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg); z-index: 800;
    opacity: 0; visibility: hidden;
    transition: all 0.18s ease; pointer-events: none;
    min-width: 680px; max-width: 900px;
}
.site-nav__item:hover .nav-mega-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: all; }
.nav-mega-dropdown__inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0;
    padding: 1.25rem;
}
.nav-mega-col { padding: 0 0.75rem; border-right: 1px solid var(--color-border-light); }
.nav-mega-col:last-child { border-right: none; }
.nav-mega-col__heading {
    display: block; padding: 0.25rem 0 0.5rem;
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--color-text-muted); margin-bottom: 0.25rem;
    border-bottom: 1.5px solid var(--color-border-light);
    text-decoration: none; white-space: nowrap;
    transition: color var(--transition);
}
.nav-mega-col__heading:hover { color: var(--color-primary); text-decoration: none; }

/* Mobile Nav */
.mobile-nav-overlay {
    position: fixed; inset: 0; z-index: 1100;
    background: rgba(0,0,0,.5); opacity: 0; visibility: hidden; transition: all 0.25s ease;
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }
.mobile-nav-panel {
    position: absolute; top: 0; left: 0; bottom: 0; width: 300px;
    background: #fff; overflow-y: auto;
    transform: translateX(-100%); transition: transform 0.3s ease;
}
.mobile-nav-overlay.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1.5px solid var(--color-border-light); }
.mobile-nav-close { background: none; border: none; font-size: 1.5rem; color: var(--color-text-muted); cursor: pointer; }
.mobile-nav-list { padding: 0.5rem 0; }
.mobile-nav-link { display: block; padding: 0.75rem 1.25rem; color: var(--color-text); font-size: 1rem; font-weight: 500; border-bottom: 1px solid var(--color-border-light); transition: background var(--transition); }
.mobile-nav-link:hover { background: var(--color-primary-light); color: var(--color-primary); text-decoration: none; }
.mobile-nav-link--vip { color: var(--color-primary); }
.mobile-nav-link--category { font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); background: var(--color-bg-subtle, #f8f8f8); padding-top: 0.5rem; padding-bottom: 0.5rem; }
.mobile-nav-link--product { padding-left: 2rem; font-size: 0.9rem; font-weight: 400; }

/* ── Age Gate ─────────────────────────────────────────────── */
.age-gate-overlay {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(10,22,40,.97); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
.age-gate-modal {
    background: #fff; border-radius: var(--radius-xl);
    padding: 2.5rem 2rem; max-width: 440px; width: 100%;
    text-align: center; border: 2px solid var(--color-primary);
    box-shadow: 0 24px 64px rgba(0,0,0,.5);
}

/* ── Cart Drawer ─────────────────────────────────────────── */
.cart-drawer-overlay {
    position: fixed; inset: 0; z-index: 1050;
    background: rgba(0,0,0,.5); opacity: 0; visibility: hidden; transition: all 0.25s ease;
}
.cart-drawer-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
    position: absolute; top: 0; right: 0; bottom: 0; width: 420px; max-width: 100vw;
    background: #fff; display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform 0.3s ease;
    box-shadow: var(--shadow-xl);
}
.cart-drawer-overlay.open .cart-drawer { transform: translateX(0); }
.cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1.5px solid var(--color-border-light); }
.cart-drawer__title { font-size: 1.125rem; font-weight: 700; }
.cart-drawer__close { background: none; border: none; font-size: 1.5rem; color: var(--color-text-muted); cursor: pointer; padding: 0; }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; }
.cart-drawer__footer { padding: 1.25rem 1.5rem; border-top: 1.5px solid var(--color-border-light); }

/* ── Cart Drawer Items ─────────────────────────────────────────────────── */
.cart-drawer-items { display: flex; flex-direction: column; gap: 0; margin-bottom: 0; }
.cart-drawer-item { display: flex; align-items: flex-start; gap: 0.875rem; padding: 1rem 0; border-bottom: 1px solid var(--color-border-light); position: relative; }
.cart-drawer-item:last-child { border-bottom: none; }
.cart-drawer-item__image { width: 64px; height: 64px; flex-shrink: 0; border-radius: var(--radius-sm); border: 1px solid var(--color-border-light); overflow: hidden; background: var(--color-bg-soft); }
.cart-drawer-item__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-drawer-item__image-placeholder { width: 100%; height: 100%; background: var(--color-bg-soft); }
.cart-drawer-item__info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.25rem; }
.cart-drawer-item__name { font-size: 0.9rem; font-weight: 600; color: var(--color-text); text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-drawer-item__name:hover { color: var(--color-primary); }
.cart-drawer-item__price { font-size: 0.9375rem; font-weight: 700; color: var(--color-primary); }
.cart-drawer-item__qty { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.25rem; }
.cart-drawer-item__qty .qty-btn { width: 26px; height: 26px; border: 1px solid var(--color-border-light); background: #fff; border-radius: var(--radius-sm); cursor: pointer; font-size: 1rem; line-height: 1; display: flex; align-items: center; justify-content: center; color: var(--color-text); transition: background 0.15s; }
.cart-drawer-item__qty .qty-btn:hover { background: var(--color-bg-soft); }
.cart-drawer-qty-val { font-size: 0.9rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-drawer-item__remove { position: absolute; top: 0.75rem; right: 0; background: none; border: none; color: var(--color-text-muted); font-size: 1.25rem; line-height: 1; cursor: pointer; padding: 0 0.25rem; }
.cart-drawer-item__remove:hover { color: var(--color-danger, #dc3545); }


/* ── Footer ──────────────────────────────────────────────── */
/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer { background: #0f1923; color: rgba(255,255,255,.8); }

/* Newsletter Strip */
.footer-newsletter { background: var(--color-primary); padding: 2.5rem 0; }
.newsletter-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
}
.newsletter-copy h3 { color: #fff; font-size: 1.2rem; font-weight: 700; margin: 0 0 0.35rem; }
.newsletter-copy p  { color: rgba(255,255,255,.85); font-size: 0.9rem; margin: 0; }
.newsletter-form { flex: 1; max-width: 460px; }
.newsletter-input-group {
    display: flex; gap: 0.5rem; align-items: center;
}
.newsletter-input-group input[type="email"] {
    flex: 1; padding: 0.7rem 1rem;
    border: none; border-radius: var(--radius-md);
    font-size: 0.9375rem; font-family: var(--font-body);
    outline: none; color: var(--color-text);
    background: #fff;
}
.newsletter-input-group input[type="email"]:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.3); }
.newsletter-input-group .btn { white-space: nowrap; background: #fff; color: var(--color-primary); border-color: #fff; font-weight: 700; }
.newsletter-input-group .btn:hover { background: rgba(255,255,255,.9); }
.newsletter-fine-print { font-size: 0.775rem; color: rgba(255,255,255,.65); margin: 0.5rem 0 0; }

/* Footer Main */
.footer-main { padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }

/* Brand Column */
.footer-col-brand {}
.footer-logo img { max-width: 160px; opacity: .9; }
.footer-logo img:hover { opacity: 1; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,.6); margin: 0.75rem 0 1.25rem; line-height: 1.6; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.footer-badge {
    display: inline-block; padding: 0.3rem 0.65rem;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-sm); font-size: 0.75rem; color: rgba(255,255,255,.75);
}
.footer-social { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.1); color: rgba(255,255,255,.75);
    transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--color-primary); color: #fff; }

/* Footer Columns */
.footer-col-title {
    font-family: var(--font-heading); font-weight: 700; font-size: 0.8rem;
    color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 0.1em;
    margin: 0 0 1rem;
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: rgba(255,255,255,.7); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: #fff; text-decoration: none; }

/* Footer Bottom */
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; }
.footer-bottom-inner {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 1.5rem; flex-wrap: wrap;
}
.footer-copyright { font-size: 0.8125rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,.4); max-width: 480px; margin: 0; line-height: 1.5; }
.footer-disclaimer strong { color: rgba(255,255,255,.6); }
.footer-payment-icons { display: flex; gap: 0.5rem; align-items: center; }
.payment-icon {
    display: inline-block; padding: 0.25rem 0.6rem;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-sm); font-size: 0.7rem; font-weight: 700;
    color: rgba(255,255,255,.6); letter-spacing: 0.03em;
}
.social-links { display: flex; gap: 0.75rem; }
.social-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); transition: all var(--transition); }
.social-link:hover { background: var(--color-primary); color: #fff; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.trust-badge { display: flex; align-items: center; gap: 0.3rem; font-size: 0.75rem; color: rgba(255,255,255,.65); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #0a1628 0%, var(--color-primary-dark) 50%, var(--color-primary) 100%);
    padding: 5rem 0 4rem; color: #fff; position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero__badge { display: inline-block; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius-full); padding: 0.3rem 0.875rem; font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,.9); margin-bottom: 1.25rem; }
.hero__title { font-size: clamp(2.25rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.hero__title span { color: #7de8ff; }
.hero__subtitle { font-size: 1.0625rem; color: rgba(255,255,255,.8); margin-bottom: 2rem; line-height: 1.7; }
.hero__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero__image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, #0a1628 0%, var(--color-primary-dark) 100%);
    padding: 4rem 0 3.5rem; color: #fff;
}
.page-hero--sm { padding: 2.5rem 0 2rem; }
.page-hero__breadcrumb { display: flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; color: rgba(255,255,255,.6); margin-bottom: 0.75rem; }
.page-hero__breadcrumb a { color: rgba(255,255,255,.7); }
.page-hero__breadcrumb a:hover { color: #fff; }
.page-hero__title { color: #fff; margin-bottom: 0.5rem; }
.page-hero__subtitle { color: rgba(255,255,255,.75); font-size: 1.0625rem; }

/* ── Section Headers ─────────────────────────────────────── */
.section-header { margin-bottom: 2.5rem; }
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p { color: var(--color-text-muted); font-size: 1.0625rem; }
.section-eyebrow { font-size: 0.8125rem; font-weight: 700; color: var(--color-primary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }

/* ── Product Cards ───────────────────────────────────────── */
.product-card {
    background: #fff; border-radius: var(--radius-lg);
    border: 1.5px solid var(--color-border-light);
    overflow: hidden; transition: all var(--transition);
    display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.product-card__image-wrapper { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--color-bg); }
.product-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card__image { transform: scale(1.04); }
.product-card__badges { position: absolute; top: 0.625rem; left: 0.625rem; display: flex; flex-direction: column; gap: 0.3rem; }
.product-card__badge { font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: var(--radius-sm); }
.product-card__badge--sale    { background: #dc3545; color: #fff; }
.product-card__badge--new     { background: var(--color-primary); color: #fff; }
.product-card__badge--vip     { background: #ffd700; color: #92400e; }
.product-card__badge--bundle  { background: #6f42c1; color: #fff; }
.product-card__body { padding: 1rem 1.125rem; flex: 1; display: flex; flex-direction: column; }
.product-card__category { font-size: 0.75rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.product-card__name { font-size: 0.9375rem; font-weight: 600; color: var(--color-text); margin-bottom: 0.5rem; line-height: 1.3; }
.product-card__name a { color: inherit; }
.product-card__name a:hover { color: var(--color-primary); text-decoration: none; }
.product-card__desc { font-size: 0.8125rem; color: var(--color-text-muted); margin-bottom: 0.75rem; flex: 1; line-height: 1.5; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-top: auto; }
.product-price { display: flex; align-items: baseline; gap: 0.4rem; flex-wrap: wrap; }
.product-price__current { font-size: 1.0625rem; font-weight: 700; color: var(--color-text); }
.product-price__original { font-size: 0.875rem; color: var(--color-text-light); text-decoration: line-through; }
.product-price__member { font-size: 0.8125rem; color: var(--color-primary); font-weight: 600; }
.product-price__savings { font-size: 0.75rem; color: var(--color-success); font-weight: 600; }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ── Shop Layout ─────────────────────────────────────────── */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; align-items: start; }
.shop-sidebar { position: sticky; top: calc(var(--header-height) + 1rem); }
.shop-sidebar-card { background: #fff; border: 1.5px solid var(--color-border-light); border-radius: var(--radius-lg); padding: 1.25rem; margin-bottom: 1.25rem; }
.shop-sidebar-card__title { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); margin-bottom: 1rem; }
.sidebar-cat-list { display: flex; flex-direction: column; gap: 0.25rem; }
.sidebar-cat-link { display: flex; align-items: center; justify-content: space-between; padding: 0.5rem 0.625rem; border-radius: var(--radius-sm); color: var(--color-text); font-size: 0.9rem; transition: all var(--transition); }
.sidebar-cat-link:hover, .sidebar-cat-link.active { background: var(--color-primary-light); color: var(--color-primary); text-decoration: none; }
.sidebar-cat-link__count { font-size: 0.75rem; color: var(--color-text-muted); }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1.5px solid var(--color-border-light); }
.shop-toolbar__results { font-size: 0.9rem; color: var(--color-text-muted); }
.shop-toolbar__sort { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }

/* ── Pagination ──────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 2.5rem; }
.pagination__btn, .pagination__page {
    display: inline-flex; align-items: center; padding: 0.5rem 0.875rem;
    border-radius: var(--radius-md); font-size: 0.9rem; font-weight: 500;
    color: var(--color-text); border: 1.5px solid var(--color-border);
    transition: all var(--transition);
}
.pagination__btn:hover, .pagination__page:hover { border-color: var(--color-primary); color: var(--color-primary); text-decoration: none; }
.pagination__page.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.pagination__ellipsis { padding: 0.5rem 0.25rem; color: var(--color-text-muted); }
.pagination__pages { display: flex; align-items: center; gap: 0.25rem; }
.pagination__info { text-align: center; font-size: 0.875rem; color: var(--color-text-muted); margin-top: 1rem; }

/* ── Product Detail ──────────────────────────────────────────────────────── */

/* Layout */
.product-detail, .product-layout {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 2.5rem;
}
@media (max-width: 900px) {
    .product-detail, .product-layout { grid-template-columns: 1fr; gap: 2rem; }
}

/* Gallery */
.product-gallery__main {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--color-border-light);
    background: #fff;
    margin-bottom: 0.75rem;
}
.product-gallery__main-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-gallery__placeholder {
    width: 100%; aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    background: var(--color-bg); border-radius: var(--radius-lg);
    border: 1.5px solid var(--color-border-light);
}
.product-gallery__thumbs { display: flex; gap: 0.625rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.product-gallery__thumb {
    width: 72px; height: 72px;
    border-radius: var(--radius-sm); overflow: hidden;
    border: 2px solid var(--color-border-light);
    cursor: pointer; transition: border-color var(--transition);
    background: none; padding: 0;
}
.product-gallery__thumb.active,
.product-gallery__thumb:hover { border-color: var(--color-primary); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* COA Box */
.product-coa-box {
    border: 1.5px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.product-coa-box__purity {
    display: flex; flex-direction: column; align-items: center;
    border-right: 1.5px solid var(--color-border-light);
    padding-right: 1.5rem;
    flex-shrink: 0;
}
.product-coa-box__pct { font-size: 1.75rem; font-weight: 800; color: var(--color-primary); line-height: 1; }
.product-coa-box__label { font-size: 0.75rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.2rem; white-space: nowrap; }
.product-coa-box__links { display: flex; flex-direction: column; gap: 0.5rem; }
.product-coa-link {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.875rem; font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}
.product-coa-link:hover { color: var(--color-primary-dark); text-decoration: underline; }

/* Product Info Column */
.product-info__category {
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}
.product-info__title {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}
.product-info__ratings {
    display: flex; align-items: center; gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.star-display { display: flex; gap: 1px; }
.star { font-size: 1rem; }
.star.star-filled { color: #f5a623; }
.star.star-empty  { color: var(--color-border); }
.product-info__rating-link { font-size: 0.875rem; color: var(--color-text-muted); text-decoration: underline; }

/* Price Block */
.product-price-block { margin-bottom: 1.5rem; }
.product-price-block__row { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 0.4rem; }
.product-price-block__regular { font-size: 2.25rem; font-weight: 800; color: var(--color-text); line-height: 1; }
.product-price-block__sale    { font-size: 2.25rem; font-weight: 800; color: var(--color-text); line-height: 1; }
.product-price-block__original { font-size: 1.125rem; color: var(--color-text-muted); text-decoration: line-through; }
.product-price-block__badge {
    display: inline-block;
    background: #e8f7f0; color: #1a7c4a;
    font-size: 0.8125rem; font-weight: 700;
    padding: 0.2em 0.65em;
    border-radius: var(--radius-full);
}
.product-price-block__member-note {
    font-size: 0.875rem; color: var(--color-text-muted);
    display: flex; align-items: center; gap: 0.5rem;
    margin-top: 0.4rem;
}
.badge-member {
    background: var(--color-primary-light); color: var(--color-primary);
    font-size: 0.75rem; font-weight: 700;
    padding: 0.2em 0.65em; border-radius: var(--radius-full);
}
.product-price-block__upsell {
    font-size: 0.875rem; color: var(--color-text-muted);
    margin-top: 0.4rem;
}
.product-price-block__upsell a { color: var(--color-primary); font-weight: 600; }

/* Short Description */
.product-info__short-desc {
    font-size: 1rem; line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1.5px solid var(--color-border-light);
}

/* Stock Badge */
.product-info__stock { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.stock-badge { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; font-weight: 600; }
.stock-badge__dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.stock-badge--in  { color: #1a7c4a; }
.stock-badge--in  .stock-badge__dot { background: #28a745; }
.stock-badge--out { color: var(--color-danger, #dc3545); }
.stock-badge--out .stock-badge__dot { background: var(--color-danger, #dc3545); }
.stock-badge__weight { font-size: 0.8125rem; color: var(--color-text-muted); }

/* Qty Selector */
.qty-selector { display: flex; align-items: center; border: 1.5px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; width: fit-content; }
.qty-btn { width: 44px; height: 48px; background: none; border: none; font-size: 1.25rem; color: var(--color-text); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.qty-btn:hover { background: var(--color-bg); }
.qty-input { width: 56px; height: 48px; border: none; border-left: 1.5px solid var(--color-border-light); border-right: 1.5px solid var(--color-border-light); text-align: center; font-size: 1rem; font-weight: 700; font-family: var(--font-body); outline: none; }
.qty-selector-sm { border-width: 1px; }
.qty-selector-sm .qty-btn { width: 30px; height: 34px; font-size: 1rem; }
.qty-selector-sm .qty-input { width: 40px; height: 34px; font-size: 0.9rem; }

/* Add to Cart Row */
.product-atc-form { margin-bottom: 1.5rem; }
.product-atc-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.btn-atc { flex: 1; min-width: 180px; height: 48px; font-size: 1rem; font-weight: 700; letter-spacing: 0.02em; display: flex; align-items: center; justify-content: center; }

/* Trust Bar */
.product-trust-bar {
    display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem;
    padding: 1rem 0;
    border-top: 1.5px solid var(--color-border-light);
    border-bottom: 1.5px solid var(--color-border-light);
    margin-bottom: 1rem;
}
.product-trust-bar__item {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.8125rem; font-weight: 600;
    color: var(--color-text-muted);
}
.product-trust-bar__item svg { color: var(--color-primary); flex-shrink: 0; }
.product-trust-bar__item a { color: var(--color-primary); }

/* SKU */
.product-info__sku { font-size: 0.8125rem; color: var(--color-text-muted); margin-top: 0.75rem; }
.product-info__sku span { font-weight: 600; color: var(--color-text); }

/* Purity Banner */
.product-purity-banner {
    background: var(--color-primary-light);
    border: 1.5px solid #c2dfe8;
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}
.product-purity-banner__inner {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #1a4a5c;
}
.product-purity-banner__inner strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--color-primary-dark);
}

/* Tabs */
.product-tabs { margin-top: 0; }
.product-tabs__nav {
    display: flex;
    border-bottom: 2px solid var(--color-border-light);
    margin-bottom: 2rem;
    gap: 0;
}
.tab-btn {
    flex: 1;
    padding: 1rem 0.75rem;
    background: none; border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-size: 0.875rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--color-text-muted);
    cursor: pointer;
    text-align: center;
    transition: all var(--transition);
}
.tab-btn:hover { color: var(--color-text); }
.tab-btn.active { color: var(--color-text); border-bottom-color: var(--color-text); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* Tab Content */
.product-description.prose, .research-info.prose { max-width: 820px; }

/* Prose tables — styled to match the COA/chemical profile table design */
.product-description.prose table,
.research-info.prose table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    margin: 1.25rem 0 1.75rem;
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.product-description.prose table thead th,
.research-info.prose table thead th {
    background: var(--color-bg);
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    padding: 0.875rem 1.25rem;
    border-bottom: 1.5px solid var(--color-border);
    border-right: 1px solid var(--color-border-light);
}
.product-description.prose table thead th:last-child,
.research-info.prose table thead th:last-child { border-right: none; }
.product-description.prose table tbody td,
.research-info.prose table tbody td {
    padding: 0.8rem 1.25rem;
    border-bottom: 1px solid var(--color-border-light);
    border-right: 1px solid var(--color-border-light);
    color: var(--color-text);
    vertical-align: middle;
    font-weight: 400;
}
.product-description.prose table tbody td:last-child,
.research-info.prose table tbody td:last-child { border-right: none; }
.product-description.prose table tbody tr:last-child td,
.research-info.prose table tbody tr:last-child td { border-bottom: none; }
.product-description.prose table tbody tr:nth-child(even) td,
.research-info.prose table tbody tr:nth-child(even) td { background: var(--color-bg); }
.product-description.prose table tbody tr:nth-child(odd) td,
.research-info.prose table tbody tr:nth-child(odd) td { background: #fff; }

.research-disclaimer-box {
    background: #fffbf0;
    border: 1.5px solid #ffe4a0;
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.research-disclaimer-box strong { display: block; margin-bottom: 0.4rem; color: #7a5500; }

/* Reviews */
.ratings-summary { display: flex; gap: 2.5rem; align-items: flex-start; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1.5px solid var(--color-border-light); flex-wrap: wrap; }
.ratings-avg { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; }
.ratings-avg-number { font-size: 3rem; font-weight: 800; line-height: 1; color: var(--color-text); }
.ratings-total { font-size: 0.875rem; color: var(--color-text-muted); }
.ratings-breakdown { display: flex; flex-direction: column; gap: 0.4rem; flex: 1; min-width: 200px; }
.rating-bar-row { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; }
.rating-bar { flex: 1; height: 8px; background: var(--color-border-light); border-radius: var(--radius-full); overflow: hidden; }
.rating-bar-fill { height: 100%; background: #f5a623; border-radius: var(--radius-full); }
.review-list { display: flex; flex-direction: column; gap: 0; }
.review-item { padding: 1.5rem 0; border-bottom: 1px solid var(--color-border-light); }
.review-item__header { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
.review-item__author { font-weight: 700; font-size: 0.9375rem; }
.review-item__date   { font-size: 0.8125rem; color: var(--color-text-muted); }
.review-item__title  { font-weight: 700; margin-bottom: 0.35rem; font-size: 1rem; }
.review-item__body   { font-size: 0.9375rem; line-height: 1.6; color: var(--color-text); }
.review-item__stars  { display: flex; gap: 1px; }
.verified-badge { font-size: 0.75rem; font-weight: 700; color: #1a7c4a; background: #e8f7f0; padding: 0.2em 0.6em; border-radius: var(--radius-full); }
.reviews-empty { color: var(--color-text-muted); font-style: italic; }
.review-login-prompt { color: var(--color-text-muted); }
.review-form-wrap { margin-top: 2.5rem; padding-top: 2rem; border-top: 1.5px solid var(--color-border-light); }
.review-form-wrap h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.25rem; }
.star-picker { display: flex; gap: 0.25rem; margin-bottom: 0.25rem; }
.star-pick { background: none; border: none; font-size: 1.5rem; color: var(--color-border); cursor: pointer; padding: 0; transition: color var(--transition); }
.star-pick.hovered, .star-pick.selected { color: #f5a623; }

/* Related Products */
.related-products { margin-top: 3.5rem; }
.product-grid--related { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }


/* ── Cart ────────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start; }

/* ── Cart Page Items Column ───────────────────────────────────────────── */
.cart-items-col { background: #fff; border-radius: var(--radius-lg); border: 1.5px solid var(--color-border-light); overflow: hidden; }
.cart-items-header { display: grid; grid-template-columns: 1fr 100px 140px 100px 40px; align-items: center; padding: 0.75rem 1.25rem; background: var(--color-bg); border-bottom: 1.5px solid var(--color-border-light); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); }
.cart-item { display: grid; grid-template-columns: 1fr 100px 140px 100px 40px; align-items: center; padding: 1rem 1.25rem; border-bottom: 1px solid var(--color-border-light); gap: 0; }
.cart-item:last-child { border-bottom: none; }
.cart-item-product { display: flex; align-items: center; gap: 0.875rem; min-width: 0; }
.cart-item-img-link { display: block; flex-shrink: 0; width: 70px; height: 70px; border-radius: var(--radius-sm); border: 1px solid var(--color-border-light); overflow: hidden; background: var(--color-bg-soft); }
.cart-item-img-link img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item-img-placeholder { width: 70px; height: 70px; border-radius: var(--radius-sm); border: 1px solid var(--color-border-light); background: var(--color-bg-soft); flex-shrink: 0; }
.cart-item-info { min-width: 0; display: flex; flex-direction: column; gap: 0.2rem; }
.cart-item-name { font-size: 0.9375rem; font-weight: 600; color: var(--color-text); text-decoration: none; display: block; }
.cart-item-name:hover { color: var(--color-primary); }
.cart-item-sku { font-size: 0.8rem; color: var(--color-text-muted); }
.cart-item-price { font-size: 0.9375rem; color: var(--color-text); }
.cart-item-qty { display: flex; align-items: center; }
.cart-item-total { font-size: 0.9375rem; font-weight: 700; color: var(--color-text); }
.cart-item-remove { display: flex; align-items: center; justify-content: center; }
.cart-remove-btn { background: none; border: none; color: var(--color-text-muted); cursor: pointer; padding: 0.25rem; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; transition: color 0.15s; }
.cart-remove-btn:hover { color: var(--color-danger, #dc3545); }
.cart-actions { padding: 1rem 1.25rem; border-top: 1.5px solid var(--color-border-light); background: var(--color-bg); }

/* ── Cart Page Summary Column ─────────────────────────────────────────── */
.cart-summary-col { position: sticky; top: calc(var(--header-height, 72px) + 1rem); }
.cart-summary-box { background: #fff; border-radius: var(--radius-lg); border: 1.5px solid var(--color-border-light); padding: 1.5rem; }
.cart-summary-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.25rem; }
.cart-coupon-section { margin-bottom: 1.25rem; }
.coupon-input-group { display: flex; gap: 0.5rem; }
.coupon-input-group .form-input { flex: 1; padding: 0.5rem 0.75rem; border: 1.5px solid var(--color-border-light); border-radius: var(--radius-md); font-size: 0.9rem; outline: none; }
.coupon-input-group .form-input:focus { border-color: var(--color-primary); }
.coupon-remove-link { background: none; border: none; color: var(--color-danger, #dc3545); font-size: 0.875rem; cursor: pointer; text-decoration: underline; padding: 0; }
.cart-totals-table { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.5rem; }
.cart-total-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.9375rem; }
.cart-grand-total { font-weight: 700; font-size: 1.0625rem; padding-top: 0.75rem; border-top: 1.5px solid var(--color-border-light); margin-top: 0.375rem; }
.free-shipping-nudge { font-size: 0.8125rem; color: var(--color-text-muted); padding: 0.5rem 0.75rem; background: var(--color-bg-soft); border-radius: var(--radius-sm); text-align: center; }
.cart-summary-trust { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--color-border-light); font-size: 0.8rem; color: var(--color-text-muted); }
.cart-member-upsell { margin-top: 1rem; padding: 0.875rem; background: #fff8e1; border-radius: var(--radius-md); border: 1px solid #ffe082; font-size: 0.875rem; line-height: 1.5; }
.cart-member-upsell a { color: var(--color-primary); font-weight: 600; }
.cart-empty { text-align: center; padding: 4rem 1rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.cart-empty h2 { font-size: 1.5rem; font-weight: 700; }
.cart-empty p { color: var(--color-text-muted); }
.cart-table { width: 100%; background: #fff; border-radius: var(--radius-lg); border: 1.5px solid var(--color-border-light); overflow: hidden; }
.cart-table table { width: 100%; border-collapse: collapse; }
.cart-table th { padding: 1rem 1.25rem; font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); background: var(--color-bg); text-align: left; border-bottom: 1.5px solid var(--color-border-light); }
.cart-table td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--color-border-light); vertical-align: middle; }
.cart-table tr:last-child td { border-bottom: none; }
.cart-item__product { display: flex; align-items: center; gap: 1rem; }
.cart-item__image { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; border: 1px solid var(--color-border-light); }
.cart-summary { background: #fff; border-radius: var(--radius-lg); border: 1.5px solid var(--color-border-light); padding: 1.5rem; position: sticky; top: calc(var(--header-height) + 1rem); }
.order-total-lines { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.25rem; }
.order-total-line { display: flex; align-items: center; justify-content: space-between; font-size: 0.9375rem; }
.order-total-line--discount { color: var(--color-success); }
.order-total-line--total { font-weight: 700; font-size: 1.0625rem; padding-top: 0.625rem; border-top: 1.5px solid var(--color-border-light); }
.free-shipping-label { color: var(--color-success); font-weight: 600; }

/* Free shipping progress */
.free-shipping-progress { margin-bottom: 1.25rem; }
.free-shipping-progress__bar { height: 6px; background: var(--color-border-light); border-radius: 3px; overflow: hidden; margin: 0.375rem 0; }
.free-shipping-progress__fill { height: 100%; background: var(--color-primary); border-radius: 3px; transition: width 0.4s ease; }
.free-shipping-progress__text { font-size: 0.8125rem; color: var(--color-text-muted); }

/* Coupon */
.coupon-form { display: flex; gap: 0.5rem; margin-bottom: 1.25rem; }
.coupon-form .form-control { flex: 1; }
.coupon-applied { display: flex; align-items: center; justify-content: space-between; background: #d4edda; color: #155724; padding: 0.625rem 0.875rem; border-radius: var(--radius-md); font-size: 0.875rem; font-weight: 500; margin-bottom: 1.25rem; }

/* ── Checkout ─────────────────────────────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; }

/* ── Checkout Page ─────────────────────────────────────────────────────── */
.checkout-forms { min-width: 0; }
.checkout-section { background: #fff; border-radius: var(--radius-lg); border: 1.5px solid var(--color-border-light); padding: 1.5rem; margin-bottom: 1.5rem; }
.checkout-section-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.checkout-section-title .optional { font-size: 0.8125rem; font-weight: 400; color: var(--color-text-muted); }
.checkout-section-title .payment-powered-by { font-size: 0.8125rem; font-weight: 500; color: var(--color-text-muted); background: var(--color-bg); border: 1px solid var(--color-border-light); border-radius: var(--radius-sm); padding: 0.2rem 0.6rem; }
.checkout-agreement { padding: 0.5rem 0; }
.waave-payment-container { border: 1.5px solid var(--color-border-light); border-radius: var(--radius-md); overflow: hidden; min-height: 80px; background: var(--color-bg); padding: 1rem; }
.payment-secure-note { font-size: 0.8125rem; color: var(--color-text-muted); margin-top: 0.75rem; }
.checkout-submit { margin-top: 0.5rem; }
.checkout-fine-print { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 0.75rem; line-height: 1.6; text-align: center; }
.checkout-fine-print a { color: var(--color-primary); }

/* Checkout Summary */
.checkout-summary { position: sticky; top: calc(var(--header-height, 72px) + 1rem); }
.checkout-summary-box { background: #fff; border-radius: var(--radius-lg); border: 1.5px solid var(--color-border-light); padding: 1.5rem; }
.checkout-summary-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1.5px solid var(--color-border-light); }
.checkout-items-list { display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 1.25rem; }
.checkout-item { display: flex; align-items: center; gap: 0.875rem; }
.checkout-item-img { position: relative; flex-shrink: 0; width: 56px; height: 56px; border-radius: var(--radius-sm); border: 1px solid var(--color-border-light); overflow: hidden; background: var(--color-bg-soft); }
.checkout-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.checkout-item-img-placeholder { width: 100%; height: 100%; background: var(--color-bg-soft); }
.checkout-item-qty { position: absolute; top: -6px; right: -6px; background: var(--color-text); color: #fff; font-size: 0.7rem; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.checkout-item-info { flex: 1; min-width: 0; }
.checkout-item-name { font-size: 0.9rem; font-weight: 600; color: var(--color-text); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.checkout-item-price { font-size: 0.9375rem; font-weight: 700; color: var(--color-text); flex-shrink: 0; }
.checkout-coupon-applied { display: flex; align-items: center; justify-content: space-between; background: #d4edda; color: #155724; padding: 0.5rem 0.75rem; border-radius: var(--radius-sm); font-size: 0.875rem; margin-bottom: 1rem; }
.checkout-totals { display: flex; flex-direction: column; gap: 0.625rem; padding-top: 1rem; border-top: 1.5px solid var(--color-border-light); margin-top: 0.5rem; margin-bottom: 1.5rem; }
.checkout-total-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.9375rem; }
.checkout-grand-total { font-weight: 700; font-size: 1.0625rem; padding-top: 0.625rem; border-top: 1.5px solid var(--color-border-light); margin-top: 0.375rem; }

.checkout-card { background: #fff; border-radius: var(--radius-lg); border: 1.5px solid var(--color-border-light); margin-bottom: 1.5rem; overflow: hidden; }
.checkout-card__header { display: flex; align-items: center; gap: 0.75rem; padding: 1.125rem 1.5rem; border-bottom: 1.5px solid var(--color-border-light); background: var(--color-bg); }
.checkout-card__header h2 { font-size: 1rem; font-weight: 700; margin: 0; }
.checkout-card__body { padding: 1.5rem; }
.checkout-divider { border: none; border-top: 1.5px solid var(--color-border-light); margin: 1.25rem 0; }

/* Stripe card element */
.stripe-card-element {
    padding: 0.6875rem 0.875rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    transition: border-color var(--transition);
    min-height: 44px;
    display: block;
}
.stripe-card-element iframe {
    display: block !important;
    min-height: 20px;
}
.stripe-card-element.StripeElement--focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(12,110,138,.12); }
.stripe-card-element.StripeElement--invalid { border-color: var(--color-danger); }
.stripe-card-errors { color: var(--color-danger); font-size: 0.8125rem; margin-top: 0.375rem; min-height: 1.2em; }

/* WAAVE */
.waave-widget-container { border: 1.5px solid var(--color-border-light); border-radius: var(--radius-md); overflow: hidden; min-height: 80px; background: var(--color-bg); display: flex; align-items: center; justify-content: center; }
.payment-security { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--color-text-muted); margin: 0.875rem 0; }
.stripe-logo { height: 18px !important; width: auto !important; max-width: 48px !important; max-height: 18px !important; display: inline-block; vertical-align: middle; object-fit: contain; flex-shrink: 0; }
.checkout-legal { font-size: 0.8125rem; color: var(--color-text-muted); text-align: center; margin-top: 1rem; line-height: 1.6; }

/* Order Confirmation */
.confirmation-icon { text-align: center; margin-bottom: 1.5rem; }
.confirmation-icon__circle { display: inline-flex; align-items: center; justify-content: center; width: 80px; height: 80px; background: #d4edda; border-radius: 50%; }
.order-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start; }
.order-card { background: #fff; border-radius: var(--radius-lg); border: 1.5px solid var(--color-border-light); margin-bottom: 1.5rem; overflow: hidden; }
.order-card__header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1.5px solid var(--color-border-light); background: var(--color-bg); }
.order-card__header h2 { font-size: 0.9375rem; font-weight: 700; margin: 0; }

/* ── Auth Pages ───────────────────────────────────────────── */
.auth-layout { min-height: calc(100vh - var(--header-height)); display: flex; align-items: center; justify-content: center; padding: 3rem 1.5rem; background: var(--color-bg); }

/* ── Auth Page ────────────────────────────────────────────────────────── */
.auth-page { min-height: calc(100vh - var(--header-height, 130px)); background: var(--color-bg, #f8f9fa); display: flex; align-items: flex-start; padding: 3rem 0 4rem; }
.auth-page .container { display: flex; justify-content: center; width: 100%; }
.auth-box { background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); padding: 2.5rem 2rem; width: 100%; max-width: 460px; }
.auth-box-wide { max-width: 560px; }

/* Auth flat-name aliases */
.auth-header { text-align: center; margin-bottom: 2rem; }
.auth-logo { display: inline-block; margin-bottom: 1.25rem; }
.auth-logo img { max-height: 80px; width: auto; }
.auth-title { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.375rem; }
.auth-subtitle { color: var(--color-text-muted); font-size: 0.9375rem; }
.auth-form { margin-top: 1.5rem; }
.auth-divider { position: relative; text-align: center; margin: 1.25rem 0; color: var(--color-text-muted); font-size: 0.875rem; }
.auth-divider::before { content: ''; position: absolute; left: 0; top: 50%; width: 100%; height: 1px; background: var(--color-border-light); }
.auth-divider span { position: relative; background: #fff; padding: 0 0.75rem; }
.auth-membership-note { margin-top: 1.25rem; text-align: center; font-size: 0.875rem; }
.auth-membership-note a { color: var(--color-primary); font-weight: 500; text-decoration: none; }
.auth-membership-note a:hover { text-decoration: underline; }

/* Password field with toggle */
.input-password-wrap { position: relative; }
.input-password-wrap .form-input { padding-right: 3rem; }
.input-password-wrap .password-toggle { position: absolute; right: 0.875rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--color-text-muted); cursor: pointer; padding: 0; display: flex; align-items: center; }

/* Label with inline link (e.g. Password + Forgot password?) */
.form-group label { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; font-size: 0.875rem; font-weight: 600; color: var(--color-text); margin-bottom: 0.4rem; }
.form-group label .required { color: var(--color-danger, #dc3545); font-weight: 700; }
.label-link { font-weight: 400; font-size: 0.8125rem; color: var(--color-primary); text-decoration: none; }
.label-link:hover { text-decoration: underline; }

/* Field validation */
.field-error { display: block; font-size: 0.8125rem; color: var(--color-danger, #dc3545); margin-top: 0.3rem; }
.input-error { border-color: var(--color-danger, #dc3545) !important; }
.input-error:focus { box-shadow: 0 0 0 3px rgba(220,53,69,.12) !important; }
.form-group-inline { margin-bottom: 1.25rem; }

/* Alert boxes */
.alert { padding: 0.875rem 1rem; border-radius: var(--radius-md); font-size: 0.9rem; margin-bottom: 1.25rem; }
.alert-error { background: #fff0f0; border: 1px solid #f5c6cb; color: #721c24; }
.alert-success { background: #d4edda; border: 1px solid #c3e6cb; color: #155724; }
.alert-info { background: #d1ecf1; border: 1px solid #bee5eb; color: #0c5460; }
.alert-warning { background: #fff3cd; border: 1px solid #ffeeba; color: #856404; }

.auth-box__logo { text-align: center; margin-bottom: 1.75rem; }
.auth-box__logo a { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--color-primary); }
.auth-box__title { font-size: 1.5rem; font-weight: 800; text-align: center; margin-bottom: 0.375rem; }
.auth-box__subtitle { text-align: center; color: var(--color-text-muted); font-size: 0.9375rem; margin-bottom: 2rem; }
.auth-box__footer { margin-top: 1.5rem; text-align: center; font-size: 0.875rem; color: var(--color-text-muted); }

/* ── Account Layout ───────────────────────────────────────── */
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; max-width: var(--container-max); margin: 0 auto; padding: 2.5rem 1.5rem; align-items: start; }
.account-sidebar { position: sticky; top: calc(var(--header-height) + 1rem); }

/* ── Account Page – flat-name aliases & missing classes ─────────────────── */
.account-main { min-width: 0; }

/* Sidebar nav flat aliases */
.account-nav-link { display: flex; align-items: center; gap: 0.75rem; padding: 0.875rem 1.125rem; color: var(--color-text); font-size: 0.9375rem; font-weight: 500; border-bottom: 1px solid var(--color-border-light); transition: all var(--transition); text-decoration: none; }
.account-nav-link:last-child { border-bottom: none; }
.account-nav-link:hover, .account-nav-link.active { background: var(--color-primary-light); color: var(--color-primary); text-decoration: none; }
.account-nav-link.active { font-weight: 700; }
.account-nav-logout { color: var(--color-danger, #dc3545); }
.account-nav-logout:hover { background: #fff5f5; color: var(--color-danger, #dc3545); }

/* Membership badge in sidebar */
.account-membership-badge { display: inline-block; margin-top: 0.35rem; font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 999px; }
.account-badge-vip { background: #fff3cd; color: #856404; }
.account-badge-professional { background: #d4edda; color: #155724; }

/* Welcome banner */
.account-welcome-banner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; background: #fff; border-radius: var(--radius-lg); border: 1.5px solid var(--color-border-light); padding: 1.5rem; margin-bottom: 1.5rem; }
.account-welcome-banner h2 { font-size: 1.375rem; font-weight: 800; margin-bottom: 0.25rem; }
.account-welcome-banner p { color: var(--color-text-muted); font-size: 0.9375rem; margin: 0; }

/* Stats grid */
.account-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.account-stat { background: #fff; border-radius: var(--radius-lg); border: 1.5px solid var(--color-border-light); padding: 1.25rem; text-align: center; }
.account-stat-value { display: block; font-size: 1.75rem; font-weight: 800; color: var(--color-primary); line-height: 1; margin-bottom: 0.375rem; }
.account-stat-label { display: block; font-size: 0.8125rem; color: var(--color-text-muted); font-weight: 500; }

/* Section cards */
.account-section { background: #fff; border-radius: var(--radius-lg); border: 1.5px solid var(--color-border-light); padding: 1.5rem; margin-bottom: 1.5rem; overflow: hidden; }
.account-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; padding-bottom: 0.875rem; border-bottom: 1.5px solid var(--color-border-light); }
.account-section-header h3 { font-size: 1.0625rem; font-weight: 700; margin: 0; }
.account-section-link { font-size: 0.875rem; color: var(--color-primary); font-weight: 500; text-decoration: none; }
.account-section-link:hover { text-decoration: underline; }
.account-empty { text-align: center; padding: 2rem 1rem; color: var(--color-text-muted); }
.account-empty p { margin-bottom: 1rem; }

/* Orders table flat aliases */
.orders-table-wrap { overflow-x: auto; }
.order-number a, .order-number { font-weight: 600; color: var(--color-primary); }

/* Membership status/upgrade cards */
.membership-status-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; border-radius: var(--radius-md); }
.membership-status-vip { background: #fff8e1; border: 1px solid #ffe082; }
.membership-status-pro { background: #e8f5e9; border: 1px solid #a5d6a7; }
.membership-status-icon { font-size: 2rem; line-height: 1; }
.membership-status-card strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.membership-status-card p { margin: 0; font-size: 0.9rem; color: var(--color-text-muted); }
.membership-status-card small { font-size: 0.8rem; color: var(--color-text-muted); }
.membership-upgrade-card { padding: 0.5rem 0; }
.membership-upgrade-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.membership-upgrade-card p { color: var(--color-text-muted); font-size: 0.9375rem; margin-bottom: 1rem; }
.membership-upgrade-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.account-user-card { background: #fff; border: 1.5px solid var(--color-border-light); border-radius: var(--radius-lg); padding: 1.25rem; margin-bottom: 1rem; }
.account-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--color-primary); color: #fff; font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 0.625rem; }
.account-user-info strong { display: block; font-weight: 700; font-size: 0.9375rem; }
.account-user-info span { display: block; font-size: 0.8125rem; color: var(--color-text-muted); }
.account-nav { background: #fff; border: 1.5px solid var(--color-border-light); border-radius: var(--radius-lg); overflow: hidden; }
.account-nav__link { display: flex; align-items: center; gap: 0.75rem; padding: 0.875rem 1.125rem; color: var(--color-text); font-size: 0.9375rem; font-weight: 500; border-bottom: 1px solid var(--color-border-light); transition: all var(--transition); }
.account-nav__link:last-child { border-bottom: none; }
.account-nav__link:hover, .account-nav__link.active { background: var(--color-primary-light); color: var(--color-primary); text-decoration: none; }
.account-nav__link.active { font-weight: 700; }
.account-nav__link--danger { color: var(--color-danger); }
.account-nav__link--danger:hover { background: #fff5f5; color: var(--color-danger); }
.account-title    { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.25rem; }
.account-subtitle { color: var(--color-text-muted); margin-bottom: 2rem; }
.account-header   { margin-bottom: 2rem; }

/* Dashboard stats */
.dashboard-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.stat-card { background: #fff; border: 1.5px solid var(--color-border-light); border-radius: var(--radius-lg); padding: 1.25rem; text-align: center; }
.stat-card__value { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; color: var(--color-primary); }
.stat-card__label { font-size: 0.8125rem; color: var(--color-text-muted); margin-top: 0.25rem; }

/* Orders table */
.orders-table-wrapper { overflow-x: auto; }
.orders-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-lg); border: 1.5px solid var(--color-border-light); overflow: hidden; }
.orders-table th { padding: 0.875rem 1rem; font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); background: var(--color-bg); text-align: left; border-bottom: 1.5px solid var(--color-border-light); }
.orders-table td { padding: 1rem; border-bottom: 1px solid var(--color-border-light); font-size: 0.9375rem; vertical-align: middle; }
.orders-table tr:last-child td { border-bottom: none; }
.orders-table__row:hover td { background: var(--color-bg-hover, #f8f9fa); }
.orders-table__order-num { white-space: nowrap; }
.orders-table__date { white-space: nowrap; color: var(--color-text-muted); }
.orders-table__status { white-space: nowrap; }
.orders-table__items { white-space: nowrap; color: var(--color-text-muted); }
.orders-table__total { white-space: nowrap; font-weight: 600; }
.orders-table__actions { white-space: nowrap; text-align: right; }

/* Orders empty state */
.orders-empty { text-align: center; padding: 4rem 2rem; background: #fff; border-radius: var(--radius-lg); border: 1.5px solid var(--color-border-light); }
.orders-empty__icon { margin-bottom: 1.25rem; color: var(--color-primary); }
.orders-empty h2 { font-size: 1.375rem; font-weight: 700; margin-bottom: 0.5rem; }
.orders-empty p { color: var(--color-text-muted); margin-bottom: 1.5rem; }

.orders-table__order-num a { font-weight: 600; color: var(--color-primary); }

/* Order status badges */
.order-status { display: inline-flex; align-items: center; padding: 0.25rem 0.625rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; }
.order-status--pending    { background: #fff3cd; color: #856404; }
.order-status--processing { background: var(--color-primary-light); color: var(--color-primary-dark); }
.order-status--shipped    { background: #d1ecf1; color: #0c5460; }
.order-status--delivered  { background: #d4edda; color: #155724; }
.order-status--cancelled  { background: #f8d7da; color: #721c24; }
.order-status--lg         { font-size: 0.875rem; padding: 0.375rem 0.875rem; }

/* Profile cards */
.profile-card { background: #fff; border: 1.5px solid var(--color-border-light); border-radius: var(--radius-lg); margin-bottom: 1.5rem; overflow: hidden; }
.profile-card__header { display: flex; align-items: center; padding: 1.125rem 1.5rem; border-bottom: 1.5px solid var(--color-border-light); background: var(--color-bg); }
.profile-card__title-group { display: flex; align-items: center; gap: 0.625rem; }
.profile-card__title-group h2 { font-size: 1.0625rem; font-weight: 700; margin: 0; }
.profile-form { padding: 1.5rem; }
.profile-card--danger { border-color: var(--color-danger); }
.profile-card--danger .profile-card__header { background: #fff5f5; border-color: var(--color-danger); }
.danger-zone__item { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; padding: 1.25rem 1.5rem; }
.danger-zone__item strong { display: block; margin-bottom: 0.25rem; }
.danger-zone__item p { font-size: 0.875rem; color: var(--color-text-muted); margin: 0; }

/* ── Membership Pages ─────────────────────────────────────── */
.membership-hero { background: linear-gradient(135deg, #0a1628, var(--color-primary-dark), var(--color-primary)); padding: 5rem 0 4rem; color: #fff; text-align: center; }
.membership-hero__badge { display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius-full); padding: 0.3rem 1rem; font-size: 0.8125rem; font-weight: 600; margin-bottom: 1rem; color: #fff; }
.membership-hero__title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 0.75rem; color: #fff; }
.membership-hero__subtitle { font-size: 1.0625rem; color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto; }
.membership-status-bar { background: var(--color-primary); color: #fff; padding: 1rem 0; }
.membership-status-bar__inner { display: flex; align-items: center; gap: 1.5rem; }
.membership-status-bar__icon { font-size: 1.5rem; }
.membership-status-bar__text { flex: 1; }
.membership-status-bar__text strong { display: block; color: #fff; }
.membership-tiers { padding: 4rem 0; }
.membership-tiers__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 860px; margin: 0 auto; }
.membership-tier { background: #fff; border: 2px solid var(--color-border-light); border-radius: var(--radius-xl); overflow: hidden; transition: all var(--transition); }
.membership-tier:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.membership-tier--active { border-color: var(--color-primary); }
.membership-tier--vip .membership-tier__header { background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary)); }
.membership-tier--professional .membership-tier__header { background: linear-gradient(135deg, #1a2332, #2d4a5c); }
.membership-tier__header { padding: 2rem; color: #fff; text-align: center; position: relative; }
.membership-tier__icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.membership-tier__badge { display: inline-block; background: rgba(255,255,255,.25); border-radius: var(--radius-full); padding: 0.2rem 0.75rem; font-size: 0.75rem; font-weight: 700; margin-bottom: 0.5rem; color: #fff; }
.membership-tier__badge--free { background: rgba(40,167,69,.5); color: #fff; }
.membership-tier__name { font-size: 1.375rem; font-weight: 800; margin-bottom: 0.5rem; color: #fff; }
.membership-tier__price { margin-bottom: 0.5rem; }
.membership-tier__amount { font-size: 2.5rem; font-weight: 800; color: #fff; }
.membership-tier__period { font-size: 1rem; color: rgba(255,255,255,.85); }
.membership-tier__tagline { font-size: 0.875rem; color: rgba(255,255,255,.85); }
.membership-tier__body { padding: 2rem; }
.membership-tier__features { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.membership-tier__feature { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.9375rem; }
.membership-tier__cta { text-align: center; padding: 0.75rem; background: var(--color-primary-light); border-radius: var(--radius-md); color: var(--color-primary); font-weight: 600; }
.membership-tier__cta-btn { text-align: center; width: 100%; margin-bottom: 0.5rem; }
.membership-tier__signin { text-align: center; font-size: 0.875rem; color: var(--color-text-muted); margin: 0; }

/* Compare table */
.membership-compare { padding: 4rem 0; background: var(--color-bg); }
.compare-table-wrapper { overflow-x: auto; margin-top: 2rem; }
.compare-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare-table th, .compare-table td { padding: 1rem 1.25rem; text-align: center; border-bottom: 1px solid var(--color-border-light); font-size: 0.9375rem; }
.compare-table th { background: var(--color-bg); font-weight: 700; font-size: 0.875rem; }
.compare-table .compare-table__feature { text-align: left; font-weight: 500; }
.compare-table__tier--vip  { color: var(--color-primary); }
.compare-table__tier--pro  { color: var(--color-primary-dark); }
.compare-yes { color: var(--color-success); font-weight: 600; }
.compare-no  { color: var(--color-text-light); }

/* Professional portal */
.professional-portal { padding: 4rem 0; }
.professional-approved { text-align: center; padding: 3rem; background: #fff; border-radius: var(--radius-xl); border: 2px solid var(--color-success); }
.professional-approved__icon { font-size: 3rem; margin-bottom: 1rem; }
.professional-detail { display: flex; align-items: center; gap: 0.5rem; padding: 0.625rem; background: var(--color-bg); border-radius: var(--radius-sm); }
.professional-detail__label { font-size: 0.8125rem; color: var(--color-text-muted); min-width: 120px; }
.professional-approved__details { display: flex; flex-direction: column; gap: 0.5rem; margin: 1.5rem 0; }
.professional-how-it-works { background: var(--color-primary-light); border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 2rem; }
.how-steps { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.how-step { display: flex; gap: 1rem; align-items: flex-start; }
.how-step__num { width: 32px; height: 32px; background: var(--color-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.875rem; flex-shrink: 0; }
.how-step__content strong { display: block; margin-bottom: 0.25rem; }
.how-step__content p { font-size: 0.875rem; color: var(--color-text-muted); margin: 0; }
.professional-form-card { background: #fff; border: 1.5px solid var(--color-border-light); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; }
.professional-form-card__header { padding: 1.25rem 1.5rem; background: var(--color-bg); border-bottom: 1.5px solid var(--color-border-light); }
.professional-form-card__header h2 { margin: 0 0 0.25rem; }
.professional-form-card__header p { font-size: 0.875rem; color: var(--color-text-muted); margin: 0; }
.professional-form { padding: 1.5rem; }
.npi-input-wrapper { display: flex; gap: 0.5rem; }
.npi-input-wrapper .form-control { flex: 1; }
.npi-preview { margin-top: 0.75rem; }
.npi-preview__loading { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--color-text-muted); }
.npi-preview__card { padding: 0.875rem 1rem; border-radius: var(--radius-md); border: 1.5px solid; font-size: 0.875rem; }
.npi-preview__card--success { background: #d4edda; border-color: #28a745; }
.npi-preview__card--warning { background: #fff3cd; border-color: #ffc107; }
.npi-preview__card--error   { background: #f8d7da; border-color: #dc3545; color: #721c24; }
.npi-preview__status { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; margin-bottom: 0.5rem; }
.npi-preview__details { display: flex; flex-direction: column; gap: 0.25rem; }
.professional-trust { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; padding: 1.5rem; background: var(--color-primary-light); border-radius: var(--radius-lg); }
.professional-trust__item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.npi-lookup-tool { display: flex; flex-direction: column; gap: 0.75rem; }
.npi-lookup-tool__inputs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.npi-lookup-tool__inputs .form-control { flex: 1; min-width: 160px; }
.npi-lookup-results { background: #fff; border: 1.5px solid var(--color-border-light); border-radius: var(--radius-md); max-height: 280px; overflow-y: auto; }
.npi-lookup-item { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; border-bottom: 1px solid var(--color-border-light); gap: 1rem; }
.npi-lookup-item:last-child { border-bottom: none; }
.npi-lookup-item__info strong { display: block; font-size: 0.875rem; }
.npi-lookup-item__info span { display: block; font-size: 0.8125rem; color: var(--color-text-muted); }
.npi-number { font-family: monospace; font-size: 0.9375rem; font-weight: 600; }

/* VIP Checkout */
.vip-checkout { padding: 3rem 0; }
.vip-checkout__grid { display: grid; grid-template-columns: 1fr 400px; gap: 2.5rem; align-items: start; }
.vip-summary-line { display: flex; justify-content: space-between; padding: 0.625rem 0; font-size: 0.9375rem; }
.vip-summary-divider { border: none; border-top: 1.5px solid var(--color-border-light); margin: 0.5rem 0; }
.vip-summary-total { display: flex; justify-content: space-between; font-weight: 700; padding: 0.75rem 0; border-top: 2px solid var(--color-border); margin-top: 0.25rem; }
.vip-summary-total__amount { font-size: 1.375rem; color: var(--color-primary); }
.vip-summary-note { font-size: 0.8125rem; color: var(--color-text-muted); margin-top: 0.5rem; }
.vip-benefits-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.25rem; }
.vip-benefit { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.vip-account-summary { display: flex; align-items: center; gap: 0.875rem; padding: 0.875rem; background: var(--color-bg); border-radius: var(--radius-md); }
.vip-account-summary__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--color-primary); color: #fff; font-family: var(--font-heading); font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vip-account-summary__info { flex: 1; }
.vip-account-summary__info strong { display: block; font-size: 0.9375rem; }
.vip-account-summary__info span { font-size: 0.8125rem; color: var(--color-text-muted); }
.vip-account-summary__change { font-size: 0.8125rem; color: var(--color-text-muted); }
.value-slider { width: 100%; accent-color: var(--color-primary); margin: 0.75rem 0; }
.value-calc__display { display: flex; flex-direction: column; gap: 0.5rem; }
.value-calc__row { display: flex; justify-content: space-between; font-size: 0.9375rem; padding: 0.375rem 0; }
.value-calc__row--savings { color: var(--color-success); }
.value-calc__row--net { font-weight: 700; padding-top: 0.5rem; border-top: 1.5px solid var(--color-border-light); }
.value-calc__net--positive { color: var(--color-success); }
.value-calc__net--negative { color: var(--color-danger); }
.checkout-guarantee { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; background: var(--color-primary-light); border-radius: var(--radius-md); border: 1px solid rgba(12,110,138,.2); }
.checkout-guarantee strong { display: block; margin-bottom: 0.25rem; }
.checkout-guarantee p { font-size: 0.875rem; color: var(--color-text-muted); margin: 0; }

/* ── Static Pages ─────────────────────────────────────────── */
.policy-section { padding: 3.5rem 0; }
.policy-toc { background: var(--color-primary-light); border-left: 4px solid var(--color-primary); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 1.25rem 1.5rem; margin-bottom: 2.5rem; }
.policy-toc h3 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--color-primary); }
.policy-toc ol { padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.3rem; list-style: decimal; }
.policy-toc a { font-size: 0.875rem; color: var(--color-primary); }
.policy-content h2 { font-size: 1.25rem; font-weight: 700; color: var(--color-text); margin: 2.5rem 0 0.75rem; padding-top: 0.5rem; border-top: 1px solid var(--color-border-light); }
.policy-content h2:first-child { margin-top: 0; border-top: none; }
.policy-content h3 { font-size: 1.0625rem; font-weight: 600; margin: 1.5rem 0 0.5rem; }
.policy-content p { font-size: 0.9375rem; color: #374151; line-height: 1.8; }
.policy-content a { color: var(--color-primary); }
.policy-intro { font-size: 1.0625rem; color: var(--color-text-muted); padding: 1.25rem; background: var(--color-bg); border-radius: var(--radius-md); margin-bottom: 2.5rem; line-height: 1.7; }
.policy-address { font-style: normal; background: var(--color-bg); padding: 1.25rem; border-radius: var(--radius-md); border-left: 4px solid var(--color-primary); margin-top: 0.75rem; line-height: 2; }
.policy-related { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 2rem; border-top: 1.5px solid var(--color-border-light); }
.policy-related-link { display: flex; align-items: center; gap: 0.5rem; padding: 0.625rem 1.125rem; background: var(--color-bg); border: 1.5px solid var(--color-border-light); border-radius: var(--radius-md); font-size: 0.875rem; font-weight: 500; color: var(--color-text); transition: all var(--transition); }
.policy-related-link:hover { border-color: var(--color-primary); color: var(--color-primary); text-decoration: none; background: var(--color-primary-light); }

/* Shipping rates */
.shipping-rates-card { background: #fff; border: 1.5px solid var(--color-border-light); border-radius: var(--radius-lg); padding: 1.5rem 2rem; margin-bottom: 2.5rem; }
.shipping-rates-table { display: flex; flex-direction: column; border: 1.5px solid var(--color-border-light); border-radius: var(--radius-md); overflow: hidden; }
.shipping-rate-row { display: grid; grid-template-columns: 1fr 1fr 1fr; padding: 0.875rem 1rem; font-size: 0.9375rem; border-bottom: 1px solid var(--color-border-light); align-items: center; }
.shipping-rate-row:last-child { border-bottom: none; }
.shipping-rate-row--header { background: var(--color-bg); font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); }
.shipping-rate-row--free { background: #f0fdf4; }
.shipping-rate-row--expedited { background: var(--color-primary-light); }
.shipping-rate-free { color: var(--color-success); font-weight: 700; }
.shipping-rates-note { display: flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; color: var(--color-text-muted); margin-top: 0.875rem; }

/* Returns */
.policy-summary-card { background: #fff; border: 1.5px solid var(--color-border-light); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 2.5rem; }
.policy-summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.policy-summary-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.875rem; border-radius: var(--radius-md); }
.policy-summary-item--yes { background: #f0fdf4; border: 1px solid #86efac; }
.policy-summary-item--no  { background: #fff5f5; border: 1px solid #fca5a5; }
.policy-summary-item strong { display: block; margin-bottom: 0.2rem; font-size: 0.875rem; }
.policy-summary-item span { font-size: 0.8125rem; color: var(--color-text-muted); }

/* About */
.about-mission { padding: 5rem 0; }
.about-mission__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-mission__image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-mission__image-caption { text-align: center; font-size: 0.8125rem; color: var(--color-text-muted); margin-top: 0.5rem; }
.about-stats { background: var(--color-primary); padding: 3rem 0; }
.about-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.about-stat__number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: #fff; }
.about-stat__label  { color: rgba(255,255,255,.75); font-size: 0.875rem; margin-top: 0.25rem; }
.about-values { padding: 5rem 0; }
.about-values__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.about-value-card { background: #fff; border: 1.5px solid var(--color-border-light); border-radius: var(--radius-lg); padding: 1.75rem; }
.about-value-card__icon { margin-bottom: 1rem; }
.about-value-card h3 { margin-bottom: 0.5rem; }
.about-value-card p { font-size: 0.9375rem; color: var(--color-text-muted); margin: 0; }
.about-process { padding: 5rem 0; background: var(--color-bg); }
.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }
.process-step { display: flex; gap: 2rem; align-items: flex-start; padding: 2rem 0; border-bottom: 1px solid var(--color-border-light); }
.process-step:last-child { border-bottom: none; }
.process-step__num { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--color-primary); opacity: 0.25; line-height: 1; flex-shrink: 0; min-width: 60px; }
.process-step__content h3 { margin-bottom: 0.5rem; }
.process-step__content p { color: var(--color-text-muted); margin: 0; }
.about-disclaimer { padding: 3rem 0; }
.disclaimer-box { display: flex; gap: 1.5rem; align-items: flex-start; background: var(--color-primary-light); border: 1.5px solid var(--color-primary); border-radius: var(--radius-lg); padding: 2rem; }
.disclaimer-box h3 { margin-bottom: 0.5rem; }
.disclaimer-box p { font-size: 0.9375rem; color: var(--color-text-muted); margin: 0; line-height: 1.7; }
.about-cta { padding: 4rem 0; }
.cta-band { background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary)); border-radius: var(--radius-xl); padding: 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band__content h2 { color: #fff; margin-bottom: 0.375rem; }
.cta-band__content p  { color: rgba(255,255,255,.8); margin: 0; }
.cta-band__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Contact */
.contact-section { padding: 3.5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; }
.contact-form-card { background: #fff; border: 1.5px solid var(--color-border-light); border-radius: var(--radius-lg); padding: 2rem; }
.contact-form-card h2 { margin-bottom: 0.5rem; }
.contact-form-card__intro { font-size: 0.9375rem; color: var(--color-text-muted); margin-bottom: 1.75rem; }
.contact-info-card { background: #fff; border: 1.5px solid var(--color-border-light); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.25rem; }
.contact-info-items { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-item__icon { flex-shrink: 0; }
.contact-info-item__content strong { display: block; font-weight: 600; margin-bottom: 0.2rem; }
.contact-info-item__content a { color: var(--color-primary); font-size: 0.9375rem; }
.contact-info-item__content span { display: block; font-size: 0.875rem; color: var(--color-text-muted); }
.contact-quick-answers h3 { margin-bottom: 0.75rem; }
.contact-quick-list { display: flex; flex-direction: column; gap: 0; background: #fff; border: 1.5px solid var(--color-border-light); border-radius: var(--radius-lg); overflow: hidden; }
.contact-quick-item { display: flex; align-items: center; gap: 0.625rem; padding: 0.875rem 1rem; color: var(--color-text); font-size: 0.9rem; border-bottom: 1px solid var(--color-border-light); transition: background var(--transition); }
.contact-quick-item:last-child { border-bottom: none; }
.contact-quick-item:hover { background: var(--color-primary-light); color: var(--color-primary); text-decoration: none; }
.contact-quick-item svg:last-child { margin-left: auto; }
.contact-disclaimer { display: flex; align-items: flex-start; gap: 0.5rem; background: #fff3cd; border-radius: var(--radius-md); padding: 0.875rem 1rem; margin-top: 1.25rem; font-size: 0.8125rem; color: #856404; }

/* FAQ */
.faq-section { padding: 3rem 0; }
.faq-search { margin-bottom: 2rem; }
.faq-search__input-wrapper { position: relative; }
.faq-search__input-wrapper svg { position: absolute; left: 0.875rem; top: 50%; transform: translateY(-50%); }
.faq-search__input { width: 100%; padding: 0.75rem 1rem 0.75rem 2.75rem; border: 1.5px solid var(--color-border); border-radius: var(--radius-full); font-size: 1rem; font-family: var(--font-body); outline: none; }
.faq-search__input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(12,110,138,.1); }
.faq-categories { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.faq-cat-btn { padding: 0.4375rem 1rem; border: 1.5px solid var(--color-border); border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500; background: none; cursor: pointer; color: var(--color-text-muted); transition: all var(--transition); }
.faq-cat-btn:hover, .faq-cat-btn.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.faq-group { margin-bottom: 2.5rem; }
.faq-group__title { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--color-primary); color: var(--color-primary); }
.faq-item { border-bottom: 1px solid var(--color-border-light); }
.faq-item__question {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1rem 0; background: none; border: none; text-align: left;
    font-size: 0.9375rem; font-weight: 600; color: var(--color-text); cursor: pointer;
    transition: color var(--transition);
}
.faq-item__question:hover { color: var(--color-primary); }
.faq-item__question svg { flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item.open .faq-item__question { color: var(--color-primary); }
.faq-item.open .faq-item__question svg { transform: rotate(180deg); }
.faq-item__answer { display: none; padding: 0 0 1.25rem; font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.7; }
.faq-item.open .faq-item__answer { display: block; }
.faq-contact-cta { text-align: center; background: var(--color-primary-light); border-radius: var(--radius-xl); padding: 2.5rem 2rem; margin-top: 2rem; }
.faq-contact-cta__icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.faq-contact-cta h3 { margin-bottom: 0.5rem; }
.faq-contact-cta p { color: var(--color-text-muted); margin-bottom: 1.25rem; }

/* COA */
.coa-trust-banner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; background: #fff; border: 1.5px solid var(--color-border-light); border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 2.5rem; }
.coa-trust-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.coa-trust-item strong { display: block; font-size: 0.9375rem; margin-bottom: 0.2rem; }
.coa-trust-item span { font-size: 0.8125rem; color: var(--color-text-muted); }
.coa-toolbar { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.coa-search { flex: 1; position: relative; min-width: 240px; }
.coa-search svg { position: absolute; left: 0.875rem; top: 50%; transform: translateY(-50%); }
.coa-search__input { width: 100%; padding: 0.625rem 1rem 0.625rem 2.75rem; border: 1.5px solid var(--color-border); border-radius: var(--radius-full); font-size: 0.9375rem; font-family: var(--font-body); outline: none; }
.coa-search__input:focus { border-color: var(--color-primary); }
.coa-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.coa-card { background: #fff; border: 1.5px solid var(--color-border-light); border-radius: var(--radius-lg); padding: 1.25rem; display: flex; flex-direction: column; gap: 0.875rem; transition: all var(--transition); }
.coa-card:hover { box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.coa-card__name { font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.25rem; }
.coa-card__batch { font-size: 0.8125rem; color: var(--color-text-muted); }
.coa-card__batch-label { margin-right: 0.25rem; }
.purity-badge { display: inline-block; padding: 0.2rem 0.625rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700; }
.purity-badge--high   { background: #d4edda; color: #155724; }
.purity-badge--pass   { background: var(--color-primary-light); color: var(--color-primary-dark); }
.purity-badge--review { background: #fff3cd; color: #856404; }
.coa-card__date { font-size: 0.8125rem; color: var(--color-text-muted); }
.coa-card__actions { display: flex; gap: 0.5rem; margin-top: auto; }
.coa-empty { text-align: center; padding: 4rem 2rem; background: #fff; border: 1.5px dashed var(--color-border-light); border-radius: var(--radius-xl); margin-bottom: 2.5rem; }
.coa-empty h2 { margin: 1rem 0 0.5rem; }
.coa-empty p { color: var(--color-text-muted); margin-bottom: 1.5rem; }
.coa-request-banner { background: var(--color-primary-light); border: 1.5px solid var(--color-primary); border-radius: var(--radius-lg); padding: 1.75rem 2rem; display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.coa-request-banner__content { display: flex; align-items: flex-start; gap: 1rem; flex: 1; }
.coa-request-banner__content strong { display: block; margin-bottom: 0.25rem; }
.coa-request-banner__content p { font-size: 0.875rem; color: var(--color-text-muted); margin: 0; }
.coa-request-banner__actions { display: flex; gap: 0.75rem; align-items: center; flex-shrink: 0; }

/* ── Membership FAQ ───────────────────────────────────────── */
.membership-faq { padding: 4rem 0; background: var(--color-bg); }
.membership-cta-section { padding: 4rem 0; background: var(--color-primary); }
.membership-cta-box { text-align: center; }
.membership-cta-box h2 { color: #fff; font-size: 2rem; margin-bottom: 0.5rem; }
.membership-cta-box p { color: rgba(255,255,255,.8); margin-bottom: 2rem; }
.membership-cta-box__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.membership-testimonials { padding: 4rem 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.testimonial-card { background: #fff; border: 1.5px solid var(--color-border-light); border-radius: var(--radius-lg); padding: 1.5rem; }
.testimonial-card__stars { color: #ffc107; font-size: 1.125rem; margin-bottom: 0.75rem; }
.testimonial-card__text { font-size: 0.9375rem; color: var(--color-text-muted); margin-bottom: 1rem; line-height: 1.7; font-style: italic; }
.testimonial-card__author strong { display: block; font-size: 0.9375rem; }
.testimonial-card__author span { font-size: 0.8125rem; color: var(--color-text-muted); }
.break-even-calc { background: var(--color-primary-light); border-radius: var(--radius-md); padding: 1rem; margin-bottom: 1.5rem; }
.break-even-calc__header { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 0.875rem; margin-bottom: 0.5rem; color: var(--color-primary); }
.break-even-calc__text { font-size: 0.875rem; color: var(--color-text-muted); margin: 0; }
.professional-who { background: var(--color-bg); border-radius: var(--radius-md); padding: 1rem; margin-bottom: 1.5rem; }
.professional-who__header { font-weight: 700; font-size: 0.875rem; margin-bottom: 0.625rem; }
.professional-who__list { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.professional-who__list span { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-full); padding: 0.2rem 0.625rem; font-size: 0.75rem; }

/* ── Utility ──────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.spin { animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.research-notice { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.8125rem; color: var(--color-text-muted); background: var(--color-bg); border-radius: var(--radius-md); padding: 0.75rem 1rem; margin-top: 2rem; }
.research-notice--subtle { border: 1px solid var(--color-border-light); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .newsletter-inner { flex-direction: column; align-items: flex-start; }
    .newsletter-form { max-width: 100%; width: 100%; }
    .coa-grid { grid-template-columns: repeat(3, 1fr); }
    .about-stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
    .hero__image { display: none; }
    .hero-inner  { grid-template-columns: 1fr; gap: 2rem; }
    .hero-image-col { display: none; }
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }
    .product-detail, .product-layout { grid-template-columns: 1fr; gap: 2rem; }
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
    .checkout-layout { grid-template-columns: 1fr; }
    .order-detail-grid { grid-template-columns: 1fr; }
    .membership-tiers__grid { grid-template-columns: 1fr; max-width: 480px; }
    .vip-checkout__grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-mission__grid { grid-template-columns: 1fr; }
    .about-values__grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .coa-trust-banner { grid-template-columns: 1fr 1fr; }
    .account-layout { grid-template-columns: 1fr; }
    .account-sidebar { position: static; }
    .account-stats { grid-template-columns: repeat(2, 1fr); }
    .account-welcome-banner { flex-direction: column; align-items: flex-start; }
    .policy-summary-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-row--3 { grid-template-columns: 1fr 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
    .form-row-3 { grid-template-columns: 1fr 1fr; }
    .dashboard-stats { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 640px) {
    section { padding: 2.5rem 0; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
    .coa-grid { grid-template-columns: 1fr 1fr; }
    .about-stats__grid { grid-template-columns: 1fr 1fr; }
    .coa-trust-banner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .site-header__inner .site-search { display: none; }
    .header-mobile-toggle { display: flex; }
    .site-nav { display: none; }
    .newsletter-inner { flex-direction: column; align-items: flex-start; }
    .newsletter-form { max-width: 100%; width: 100%; }
    .footer-bottom-inner { flex-direction: column; gap: 1rem; }
    .membership-tiers__grid { grid-template-columns: 1fr; }
    .dashboard-stats { grid-template-columns: 1fr; }
    .orders-table__date, .orders-table__items { display: none; }
    .shipping-rate-row { grid-template-columns: 1fr 1fr; }
    .shipping-rate-row > span:last-child { display: none; }
    .compare-table th, .compare-table td { padding: 0.625rem 0.5rem; font-size: 0.8125rem; }
}

@media (max-width: 400px) {
    .products-grid { grid-template-columns: 1fr; }
    .coa-grid { grid-template-columns: 1fr; }
    .membership-tiers__grid { grid-template-columns: 1fr; }
    .auth-box { padding: 1.75rem 1.25rem; }
}

/* ── Print ────────────────────────────────────────────────── */
@media print {
    .site-header, .site-nav, .site-topbar, .site-footer, .cart-drawer-overlay, .age-gate-overlay, .flash-messages { display: none !important; }
    body { background: #fff; }
    .container { max-width: 100%; }
    .order-card, .checkout-card, .profile-card { border: 1px solid #ccc !important; break-inside: avoid; }
}
/* ── Button class aliases (views use single-dash, CSS uses double-dash BEM) ── */
.btn-primary        { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn-primary:hover  { background: var(--color-primary-dark); border-color: var(--color-primary-dark); color: #fff; text-decoration: none; }
.btn-outline        { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline:hover  { background: var(--color-primary-light); text-decoration: none; }
.btn-outline-light  { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; text-decoration: none; }
.btn-outline-white  { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,.15); text-decoration: none; }
.btn-white          { background: #fff; color: var(--color-primary); border-color: #fff; }
.btn-white:hover    { background: #f0fbff; text-decoration: none; }
.btn-danger         { background: var(--color-danger); color: #fff; border-color: var(--color-danger); }
.btn-danger:hover   { background: #b02a37; text-decoration: none; }
.btn-lg             { padding: 0.875rem 2rem; font-size: 1.0625rem; }
.btn-sm             { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-xs             { padding: 0.3rem 0.6rem; font-size: 0.8125rem; }
.btn-xl             { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn-full           { width: 100%; display: block; text-align: center; }
.btn-add-to-cart    { cursor: pointer; }

/* header-action-btn (account/login icon button in header) */
.header-action-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: var(--radius-md);
    background: none; border: none;
    color: var(--color-text); transition: all var(--transition); cursor: pointer;
    text-decoration: none;
}
.header-action-btn:hover { color: var(--color-primary); background: var(--color-primary-light); }

/* ── Product grid / card aliases (HTML uses flat names, CSS uses BEM) ────── */
.product-grid  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* product-card sub-element aliases */
.product-card-img-link  { display: block; text-decoration: none; }
.product-card-img       { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--color-bg); }
.product-card-img img   { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-img-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: var(--color-bg); min-height: 200px;
}
.product-card-body      { padding: 1rem 1.125rem; flex: 1; display: flex; flex-direction: column; }
.product-card-category  { font-size: 0.75rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.product-card-title     { font-size: 0.9375rem; font-weight: 600; color: var(--color-text); margin-bottom: 0.5rem; line-height: 1.3; }
.product-card-title a   { color: inherit; text-decoration: none; }
.product-card-title a:hover { color: var(--color-primary); }
.product-card-desc      { font-size: 0.8125rem; color: var(--color-text-muted); margin-bottom: 0.75rem; flex: 1; line-height: 1.5; }
.product-card-price     { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; flex-wrap: wrap; }

/* badge aliases */
.product-badge          { position: absolute; font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: var(--radius-sm); }
.product-badge:first-child { top: 0.625rem; left: 0.625rem; }
.product-badge + .product-badge { top: 2rem; left: 0.625rem; }
.badge-sale             { background: #dc3545; color: #fff; }
.badge-featured         { background: var(--color-primary); color: #fff; }
.badge-new              { background: var(--color-primary); color: #fff; }

/* ── Category grid ───────────────────────────────────────────────────────── */
.category-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.category-card {
    display: flex; flex-direction: column; border-radius: var(--radius-lg);
    overflow: hidden; background: #fff; border: 1.5px solid var(--color-border-light);
    text-decoration: none; color: var(--color-text);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--color-primary); text-decoration: none; }
.category-card-img  { height: 160px; background-size: cover; background-position: center; background-color: var(--color-primary-light); }
.category-card-body { padding: 1rem 1.125rem; flex: 1; }
.category-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--color-text); }
.category-card-body p  { font-size: 0.8125rem; color: var(--color-text-muted); margin: 0; }
.category-card-arrow   { position: absolute; bottom: 1rem; right: 1rem; font-size: 1.25rem; color: var(--color-primary); }

/* ── Trust grid ──────────────────────────────────────────────────────────── */
.trust-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.trust-card {
    background: #fff; border: 1.5px solid var(--color-border-light);
    border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; text-align: center;
}
.trust-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.trust-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.trust-card p  { font-size: 0.875rem; color: var(--color-text-muted); margin: 0; line-height: 1.6; }

/* ── Bundle grid ─────────────────────────────────────────────────────────── */
.bundle-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.bundle-card {
    background: #fff; border: 1.5px solid var(--color-border-light);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bundle-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.bundle-card-img   { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--color-bg); }
.bundle-card-img img { width: 100%; height: 100%; object-fit: cover; }
.bundle-badge      { position: absolute; top: 0.625rem; left: 0.625rem; background: #6f42c1; color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: var(--radius-sm); }
.bundle-card-body  { padding: 1.25rem; }
.bundle-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.bundle-card-desc  { font-size: 0.875rem; color: var(--color-text-muted); margin-bottom: 0.75rem; line-height: 1.5; }
.bundle-card-price { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.bundle-card-actions { display: flex; flex-direction: column; gap: 0.5rem; }
.bundle-card-actions .btn { width: 100%; justify-content: center; }

/* ── Membership banner ───────────────────────────────────────────────────── */
.section-membership-banner { background: var(--color-primary); color: #fff; }
.membership-banner { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding: 2.5rem 0; }
.membership-banner-content { display: flex; align-items: flex-start; gap: 1.5rem; }
.membership-banner-icon { font-size: 2.5rem; flex-shrink: 0; }
.membership-banner-text h2 { color: #fff; margin-bottom: 0.5rem; font-size: 1.375rem; }
.membership-banner-text p  { color: rgba(255,255,255,.85); font-size: 0.9375rem; line-height: 1.6; margin: 0; }
.membership-banner-actions { display: flex; flex-direction: column; gap: 0.625rem; flex-shrink: 0; }
.membership-banner-features { display: flex; flex-direction: column; gap: 0.625rem; flex-shrink: 0; }
.mb-feature { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,.9); font-size: 0.9375rem; }
.mb-feature-icon { color: #ffd700; font-weight: 700; }

/* ── Announcement bar ────────────────────────────────────────────────────── */
.announcement-bar { background: var(--color-bg); border-bottom: 1px solid var(--color-border-light); padding: 0.625rem 0; font-size: 0.875rem; }
.announcement-inner { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.announcement-sep { color: var(--color-border); }
.announcement-bar a { color: var(--color-primary); font-weight: 600; }

/* ── Research disclaimer bar ─────────────────────────────────────────────── */
.research-disclaimer-bar { background: #fff8e1; border-top: 1px solid #ffe082; padding: 1rem 0; font-size: 0.8125rem; color: #5d4037; text-align: center; line-height: 1.6; }

/* ── Section view-all link ───────────────────────────────────────────────── */
.section-view-all { display: inline-block; color: var(--color-primary); font-weight: 600; font-size: 0.9375rem; text-decoration: none; margin-top: 0.5rem; }
.section-view-all:hover { text-decoration: underline; }

/* ── Price display ───────────────────────────────────────────────────────── */
.price-regular { font-size: 1.0625rem; font-weight: 700; color: var(--color-primary); }
.price-sale    { font-size: 1.0625rem; font-weight: 700; color: var(--color-danger); }
.price-original { font-size: 0.875rem; color: var(--color-text-muted); text-decoration: line-through; }
.price-badge   { font-size: 0.75rem; font-weight: 700; background: var(--color-danger); color: #fff; padding: 0.15rem 0.4rem; border-radius: var(--radius-sm); }

/* ── Responsive grid adjustments ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .product-grid   { grid-template-columns: repeat(3, 1fr); }
    .category-grid  { grid-template-columns: repeat(2, 1fr); }
    .trust-grid     { grid-template-columns: repeat(2, 1fr); }
    .bundle-grid    { grid-template-columns: repeat(2, 1fr); }
    .membership-banner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .product-grid   { grid-template-columns: repeat(2, 1fr); }
    .category-grid  { grid-template-columns: repeat(2, 1fr); }
    .trust-grid     { grid-template-columns: 1fr; }
    .bundle-grid    { grid-template-columns: 1fr; }
    .membership-banner-content { flex-direction: column; }
    .announcement-inner { flex-direction: column; gap: 0.25rem; text-align: center; }
}

/* ── Hero section aliases (HTML uses flat names, CSS uses BEM __) ─────────── */
.hero-bg      { display: none; } /* decorative bg element not needed */
.hero-inner   {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 480px;
    gap: 3rem; align-items: center;
}
.hero-content { }
.hero-image-col {
    display: flex; align-items: center; justify-content: center;
}
@media (max-width: 900px) {
    .hero-image-col { display: none; }
}
.hero-img {
    width: 100%; max-width: 480px; height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 64px rgba(0,0,0,.4);
    object-fit: cover;
}
.hero-badge   {
    display: inline-block; background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius-full);
    padding: 0.3rem 0.875rem; font-size: 0.8125rem; font-weight: 600;
    color: rgba(255,255,255,.9); margin-bottom: 1.25rem;
}
.hero-title   { font-size: clamp(2.25rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; color: #fff; }
.hero-title-accent { color: #7de8ff; }
.hero-subtitle { font-size: 1.0625rem; color: rgba(255,255,255,.8); margin-bottom: 2rem; line-height: 1.7; }
.hero-actions  { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust    { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-trust-item { display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; color: rgba(255,255,255,.8); }
.hero-trust-icon { color: #7de8ff; font-weight: 700; }

/* ── Section utility classes ─────────────────────────────────────────────── */
.section        { padding: 4rem 0; }
.section-title  { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--color-text); margin-bottom: 0.5rem; }
.section-subtitle { font-size: 1.0625rem; color: var(--color-text-muted); margin-bottom: 0; }
.bg-light       { background: var(--color-bg) !important; }
.section-categories { padding: 3.5rem 0; }
.section-featured   { padding: 3.5rem 0; }
.section-bundles    { padding: 3.5rem 0; }
.section-trust      { padding: 3.5rem 0; }

/* ── Page Hero aliases (flat names → BEM) ─────────────────────────────────── */
.page-hero-sm { padding: 2.5rem 0 2rem; }
.page-hero-title { color: #fff; margin-bottom: 0.5rem; }
.page-hero-subtitle { color: rgba(255,255,255,.75); font-size: 1.0625rem; }
.breadcrumb {
    display: flex; align-items: center; gap: 0.375rem;
    font-size: 0.8125rem; color: rgba(255,255,255,.6);
    margin-bottom: 0.75rem; list-style: none; padding: 0;
}
.breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.6); }

/* ── Shop sidebar aliases (flat names → BEM) ──────────────────────────────── */
.sidebar-section {
    background: #fff;
    border: 1.5px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}
.sidebar-title {
    font-size: 0.875rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--color-text-muted); margin-bottom: 1rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid var(--color-border-light);
}
.sidebar-category-list {
    display: flex; flex-direction: column; gap: 0.25rem;
    list-style: none; padding: 0; margin: 0;
}
.sidebar-category-link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.5rem 0.625rem; border-radius: var(--radius-sm);
    color: var(--color-text); font-size: 0.9rem;
    text-decoration: none; transition: all var(--transition);
}
.sidebar-category-link:hover,
.sidebar-category-link.active {
    background: var(--color-primary-light);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}
.sidebar-cat-count {
    font-size: 0.75rem; color: var(--color-text-muted);
    background: var(--color-bg-alt);
    padding: 0.1rem 0.45rem; border-radius: 999px;
    min-width: 1.5rem; text-align: center;
}
.sidebar-category-link.active .sidebar-cat-count {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

/* Sidebar membership promo */
.sidebar-member-promo {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    border: none; color: #fff;
}
.sidebar-member-promo h4 { color: #fff; margin-bottom: 0.375rem; font-size: 1rem; }
.sidebar-member-promo p { color: rgba(255,255,255,.85); font-size: 0.85rem; margin-bottom: 1rem; }
.sidebar-promo-badge {
    display: inline-block; background: rgba(255,255,255,.2);
    color: #fff; font-size: 0.75rem; font-weight: 700;
    padding: 0.2rem 0.6rem; border-radius: 999px;
    margin-bottom: 0.625rem; letter-spacing: 0.05em;
}

/* Shop toolbar aliases */
.shop-results-info { font-size: 0.9rem; color: var(--color-text-muted); }
.clear-search { color: var(--color-primary); margin-left: 0.5rem; font-size: 0.85rem; }
.sort-label { font-size: 0.875rem; color: var(--color-text-muted); }
.sort-select {
    font-size: 0.875rem; padding: 0.375rem 0.625rem;
    border: 1.5px solid var(--color-border-light);
    border-radius: var(--radius-sm); background: #fff;
    color: var(--color-text); cursor: pointer;
}

