/* =====================================================
   Vaptro Atelier Frontend Theme
   Clean active theme CSS. Old theme is backed up in *_old files.
===================================================== */
:root {
    --color-deep-space: #150824;
    --color-royal-plum: #2b1748;
    --color-soft-magenta: #844d8d;
    --text-main: #ffffff;
    --text-muted: rgba(230, 218, 255, 0.76);
    --text-soft: rgba(230, 218, 255, 0.56);
    --accent-gold: #ead8b8;
    --accent-gold-deep: #c9a875;
    --accent-violet: #c548ff;
    --accent-violet-2: #e548dd;
    --glass: rgba(255, 255, 255, 0.055);
    --glass-strong: rgba(255, 255, 255, 0.09);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-border-strong: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 26px 80px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at 78% 18%, rgba(132, 77, 141, 0.34), transparent 34%),
        linear-gradient(180deg, var(--color-deep-space) 0%, var(--color-royal-plum) 48%, var(--color-soft-magenta) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}
body::before,
.grain-overlay {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.075;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}
main { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; }
button, input { font: inherit; }
.display { font-family: 'Fraunces', serif; font-weight: 400; letter-spacing: -0.02em; line-height: 1.02; }
.mono { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.site-container,
.container { max-width: 1400px; margin: 0 auto; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: linear-gradient(135deg, #bd47ff 0%, #e43fdd 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 38px rgba(197, 72, 255, 0.28);
}
.btn-ghost {
    background: var(--glass);
    color: var(--text-main);
    border-color: var(--glass-border-strong);
}
.btn-ghost:hover { color: var(--accent-gold); border-color: var(--accent-gold); }
.btn-block { width: 100%; }

/* Top warning */
.nicotine-banner {
    position: relative;
    z-index: 101;
    background: rgba(4, 3, 7, 0.96);
    color: var(--accent-gold);
    border-bottom: 1px solid rgba(234, 216, 184, 0.18);
}
.nicotine-banner__inner {
    max-width: 1536px;
    min-height: 54px;
    margin: 0 auto;
    padding: 0 44px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: left;
}
.nicotine-banner__viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.nicotine-banner__track {
    width: max-content;
    display: flex;
    animation: nicotine-ticker 28s linear infinite;
    will-change: transform;
}
.nicotine-banner__ticker-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding-right: 72px;
    white-space: nowrap;
}
.nicotine-banner__ticker-item i {
    flex: 0 0 auto;
}
.nicotine-banner:hover .nicotine-banner__track {
    animation-play-state: paused;
}
@keyframes nicotine-ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.nicotine-banner__close {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--accent-gold);
    cursor: pointer;
    margin-left: auto;
}

/* Header */
.main.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 3, 10, 0.82);
    backdrop-filter: blur(24px) saturate(140%);
    border-bottom: 1px solid rgba(197, 72, 255, 0.22);
}
.nav {
    max-width: 1536px;
    min-height: 84px;
    margin: 0 auto;
    padding: 0 44px;
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    align-items: center;
    gap: 28px;
}
.nav-links {
    display: flex;
    justify-content: center;
    gap: clamp(28px, 4vw, 54px);
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    position: relative;
    padding: 30px 0 22px;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.35s ease;
}
.nav-links a:hover,
.nav-links a.nav-active { color: var(--text-main); }
.nav-links a:hover::after,
.nav-links a.nav-active::after { width: 100%; }
.logo {
    font-family: 'Fraunces', serif;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-align: center;
    font-style: italic;
    color: var(--text-main);
    text-decoration: none;
    white-space: nowrap;
}
.logo span { color: var(--accent-gold); font-style: normal; }
.logo--brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 14px;
    font-style: normal;
    text-align: left;
}
.logo-image {
    width: 68px;
    height: 42px;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.36);
}
.logo-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo .logo-text {
    color: var(--text-main);
    font-family: 'Fraunces', serif;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.logo .logo-subtext {
    color: var(--text-soft);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    margin-top: 8px;
}
.nav-actions {
    display: flex;
    justify-content: flex-end;
    gap: 22px;
    align-items: center;
}
.icon-btn {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    transition: all 0.25s ease;
}
.icon-btn:hover {
    background: transparent;
    color: var(--accent-gold);
    border-color: transparent;
}
.cart-action { position: relative; }
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--accent-gold);
    color: var(--color-deep-space);
    font-size: 10px;
    font-weight: 800;
    display: inline-grid;
    place-items: center;
}
.site-nav__toggle { display: none; }
.mobile-nav {
    display: none;
    padding: 16px 28px 24px;
    border-top: 1px solid var(--glass-border);
    background: rgba(26, 11, 46, 0.94);
}
.mobile-nav a,
.mobile-nav__compliance {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    text-decoration: none;
    padding: 11px 0;
    margin: 0;
}
.mobile-nav__divider { height: 1px; background: var(--glass-border); margin: 8px 0; }

/* Age gate */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(12, 5, 24, 0.84);
    backdrop-filter: blur(20px);
    transition: opacity 0.45s ease;
}
.age-gate--out { opacity: 0; pointer-events: none; }
.age-gate__inner {
    width: min(560px, 100%);
    padding: 48px 40px;
    border-radius: 34px;
    background: linear-gradient(160deg, rgba(49, 27, 82, 0.94), rgba(26, 11, 46, 0.96));
    border: 1px solid rgba(232, 213, 181, 0.28);
    box-shadow: var(--shadow-soft);
    text-align: center;
}
.age-gate__logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}
.age-gate__logo img { width: 36px; height: 36px; object-fit: contain; }
.age-gate__logo span {
    font-family: 'Fraunces', serif;
    color: var(--accent-gold);
    font-size: 1.55rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.age-gate__eyebrow {
    color: var(--accent-gold);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.age-gate__title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.1rem, 5vw, 3.2rem);
    line-height: 1;
    margin: 14px 0 18px;
}
.age-gate__text,
.age-gate__disclaimer { color: var(--text-muted); }
.age-gate__text { line-height: 1.7; }
.age-gate__actions { display: grid; gap: 12px; margin: 28px 0 20px; }
.age-gate__btn { width: 100%; }
.age-gate__disclaimer { font-size: 12px; }
.age-gate__disclaimer i { color: var(--accent-gold); }

/* Search */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(12, 5, 24, 0.88);
    backdrop-filter: blur(20px);
}
.search-overlay.active { display: flex; }
.search-overlay__inner {
    width: min(760px, 100%);
    padding: 44px;
    border-radius: 30px;
    background: rgba(26, 11, 46, 0.94);
    border: 1px solid var(--glass-border);
    position: relative;
}
.search-overlay__close {
    position: absolute;
    top: 18px;
    right: 18px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
}
.search-overlay__label {
    color: var(--accent-gold);
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
}
.search-overlay__form { display: flex; gap: 12px; margin: 18px 0; }
.search-overlay__input {
    flex: 1;
    min-height: 56px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.22);
    color: #fff;
    padding: 0 20px;
    outline: none;
}
.search-overlay__hints { display: flex; flex-wrap: wrap; gap: 12px; color: var(--text-soft); }
.search-overlay__hints a { color: var(--accent-gold); text-decoration: none; }

/* Auth Modal */
.auth-overlay {
    position: fixed;
    inset: 0;
    z-index: 9001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: rgba(12, 5, 24, 0.82);
    backdrop-filter: blur(18px);
}
.auth-overlay.is-open { display: flex; }
.auth-modal {
    position: relative;
    width: min(460px, 100%);
    background: #ffffff;
    color: #111827;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}
.auth-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: #f3f4f6;
    color: #111827;
    cursor: pointer;
}
.auth-modal__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    text-align: center;
}
.auth-modal__brand img {
    width: 112px;
    height: 112px;
    object-fit: contain;
}
.auth-modal__brand span {
    font-family: 'Fraunces', serif;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.auth-step { display: none; }
.auth-step.auth-step--active { display: block; }
.auth-eyebrow {
    margin: 0 0 8px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
}
.auth-title {
    margin: 0 0 10px;
    font-family: 'Fraunces', serif;
    font-size: clamp(1.55rem, 3vw, 2rem);
    color: #111827;
}
.auth-subtitle {
    margin: 0 0 18px;
    color: #64748b;
    line-height: 1.7;
}
.auth-form { display: grid; gap: 14px; }
.auth-field { display: block; }
.auth-input {
    width: 100%;
    min-height: 54px;
    border: 1.5px solid #111111;
    border-radius: 12px;
    padding: 0 14px;
    font-size: 1rem;
    color: #111827;
    background: #fff;
}
.auth-input::placeholder { color: #6b7280; }
.auth-input:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.14);
}
.auth-input--code {
    font-size: 1.05rem;
    letter-spacing: 0.18em;
}
.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    font-size: 0.96rem;
}
.auth-checkbox input { width: 18px; height: 18px; accent-color: #7c3aed; }
.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    color: #64748b;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}
.auth-help {
    margin: 16px 0 0;
    color: #64748b;
    text-align: center;
}
.auth-card__actions {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}
.auth-link {
    display: inline-flex;
    margin-top: 18px;
    border: 0;
    background: transparent;
    color: #2563eb;
    font-size: 0.98rem;
    cursor: pointer;
    padding: 0;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Cart */
.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 8998;
    display: none;
    background: rgba(0, 0, 0, 0.54);
}
.cart-overlay.active { display: block; }
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 8999;
    width: min(420px, 100%);
    height: 100vh;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    background: rgba(26, 11, 46, 0.97);
    border-left: 1px solid var(--glass-border);
    color: #fff;
    display: flex;
    flex-direction: column;
}
.cart-drawer.active { transform: translateX(0); }
.cart-drawer__header,
.cart-drawer__footer {
    padding: 24px;
    border-bottom: 1px solid var(--glass-border);
}
.cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-drawer__header h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    margin: 0;
}
.cart-drawer__body {
    flex: 1;
    overflow: auto;
    padding: 24px;
}
.cart-empty {
    min-height: 360px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--text-muted);
}
.cart-empty__icon {
    font-size: 3.4rem;
    color: var(--accent-violet);
    margin-bottom: 16px;
}
.cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--glass-border);
}
.cart-item__img {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: var(--glass);
    color: var(--accent-gold);
}
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__name { margin: 0 0 4px; font-weight: 700; }
.cart-item__variant {
    margin: -1px 0 5px;
    color: var(--text-soft);
    font-size: 0.78rem;
    line-height: 1.35;
}
.cart-item__price { margin: 0; color: var(--text-muted); font-size: 0.9rem; }
.cart-qty-control {
    width: 112px;
    min-height: 36px;
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    align-items: center;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}
.cart-qty-btn {
    width: 34px;
    height: 36px;
    border: 0;
    background: transparent;
    color: var(--text-main);
    cursor: pointer;
    font-weight: 800;
}
.cart-qty-btn:hover {
    background: rgba(168, 85, 247, 0.14);
}
.cart-qty-btn:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}
.cart-qty-input {
    width: 100%;
    min-width: 0;
    height: 36px;
    border: 0;
    background: transparent;
    color: var(--text-main);
    text-align: center;
    font-weight: 700;
    outline: 0;
    appearance: textfield;
}
.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}
.checkout-qty-control {
    width: 104px;
    min-height: 32px;
    margin-top: 6px;
    grid-template-columns: 31px 1fr 31px;
}
.checkout-qty-control .cart-qty-btn,
.checkout-qty-control .cart-qty-input {
    height: 32px;
}
.cart-item__remove {
    border: 0;
    background: transparent;
    color: var(--text-soft);
    cursor: pointer;
}
.cart-total {
    display: flex;
    justify-content: space-between;
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    margin-bottom: 14px;
}
.cart-note { color: var(--text-muted); line-height: 1.55; }
.cart-checkout-btn.is-disabled {
    opacity: 0.45;
    pointer-events: none;
    filter: grayscale(0.2);
}

/* Homepage promo hero */
.promo-hero {
    padding: clamp(28px, 4vw, 54px) 40px clamp(42px, 6vw, 78px);
    background:
        radial-gradient(circle at 76% 24%, rgba(197, 72, 255, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
}
.promo-hero__grid {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 2.02fr) minmax(340px, 0.98fr);
    gap: 20px;
}
.promo-hero__side {
    display: grid;
    gap: 20px;
}
.promo-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 314px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    isolation: isolate;
    background: var(--color-royal-plum);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    transform: translateZ(0);
}
.promo-card--large {
    min-height: clamp(520px, 39vw, 640px);
}
.promo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(16, 7, 30, 0.42) 0%, rgba(16, 7, 30, 0.1) 48%, rgba(16, 7, 30, 0.02) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18));
    pointer-events: none;
}
.promo-card__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.promo-card:hover .promo-card__image {
    transform: scale(1.035);
}
.promo-card__content {
    position: relative;
    z-index: 2;
    max-width: 58%;
    padding: clamp(30px, 4vw, 58px);
}
.promo-card--small .promo-card__content {
    max-width: 62%;
    padding: clamp(24px, 2.6vw, 38px);
}
.promo-card__kicker {
    margin: 0 0 16px;
    font-size: clamp(14px, 1.15vw, 19px);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
.promo-card h1,
.promo-card h2 {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: -0.07em;
    text-transform: none;
}
.promo-card h1 {
    font-size: clamp(58px, 7.2vw, 104px);
}
.promo-card h2 {
    font-size: clamp(36px, 3.7vw, 58px);
}
.promo-card__copy {
    max-width: 620px;
    margin: 24px 0 0;
    font-size: clamp(18px, 1.7vw, 25px);
    font-weight: 850;
    line-height: 1.32;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
.promo-card__arrow {
    position: absolute;
    left: clamp(30px, 4vw, 58px);
    bottom: clamp(28px, 4vw, 52px);
    z-index: 3;
    width: 52px;
    height: 52px;
    display: inline-grid;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.62);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.promo-card--small .promo-card__arrow {
    left: clamp(24px, 2.6vw, 38px);
    bottom: clamp(22px, 2.6vw, 32px);
}
.promo-card:hover .promo-card__arrow {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.2);
}

/* Homepage hero */
.hero {
    position: relative;
    height: 86vh;
    min-height: 640px;
    overflow: hidden;
    isolation: isolate;
}
.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 213, 181, 0.18), transparent 70%);
    top: -100px;
    right: -150px;
    filter: blur(40px);
}
.hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(130, 77, 141, 0.38), transparent 70%);
    bottom: -100px;
    left: -100px;
    filter: blur(40px);
}
.hero-decor {
    position: absolute;
    right: -2vw;
    bottom: -1vw;
    font-size: clamp(8rem, 18vw, 19rem);
    color: rgba(255, 255, 255, 0.035);
    pointer-events: none;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 450ms ease;
    pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }
.hero-bg-banner {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
}
.hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* background:
        linear-gradient(90deg, rgba(5, 2, 10, 0.88) 0%, rgba(5, 2, 10, 0.62) 34%, rgba(5, 2, 10, 0.14) 66%, rgba(5, 2, 10, 0.32) 100%),
        linear-gradient(180deg, rgba(5, 2, 10, 0.38) 0%, transparent 42%, rgba(5, 2, 10, 0.86) 100%); */
    pointer-events: none;
}
.slide-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}
.slide-text .eyebrow {
    color: var(--accent-gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.slide-text .eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--accent-gold); }
.slide-text h1,
.slide-text h2 {
    font-size: clamp(54px, 7vw, 112px);
    margin: 0 0 28px;
    max-width: 790px;
}
.slide-text h2.h2-like { font-size: clamp(48px, 6vw, 92px); }
.slide-text h1 em,
.slide-text h2 em,
.section-head h2 em { color: var(--accent-gold); font-style: italic; }
.slide-text p {
    font-size: clamp(17px, 1.35vw, 21px);
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
    margin: 0 0 26px;
}
.price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.price-tag strong {
    font-family: 'Fraunces', serif;
    font-size: 42px;
    color: var(--accent-gold);
    font-weight: 500;
}
.strike { text-decoration: line-through; color: var(--text-soft); }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }
.slide-visual {
    position: relative;
    min-height: 480px;
    display: grid;
    place-items: center;
}
.visual-circle {
    position: absolute;
    width: min(560px, 42vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 213, 181, 0.18), rgba(130, 77, 141, 0.16) 50%, transparent 70%);
}
.hero-image {
    position: relative;
    z-index: 2;
    width: min(92%, 560px);
    height: min(58vh, 560px);
    object-fit: cover;
    border-radius: 34px;
    border: 1px solid var(--glass-border-strong);
    box-shadow: var(--shadow-soft);
}
.slide-meta {
    position: absolute;
    left: max(40px, calc((100vw - 1400px) / 2 + 40px));
    bottom: 38px;
    color: var(--text-soft);
    z-index: 3;
}
.slide-meta strong { color: var(--accent-gold); }
.slide-controls {
    position: absolute;
    right: max(40px, calc((100vw - 1400px) / 2 + 40px));
    bottom: 38px;
    display: flex;
    gap: 12px;
    z-index: 4;
}
.dot {
    width: 42px;
    height: 3px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
    cursor: pointer;
}
.dot.active { background: var(--accent-gold); }

/* Shared sections */
section { padding: 110px 40px; position: relative; }
.section-head {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.45fr);
    gap: clamp(36px, 8vw, 120px);
    align-items: center;
    width: 100%;
    margin: 0 0 46px;
    text-align: left;
}
.section-head > div { min-width: 0; }
.section-head .label {
    color: var(--accent-gold);
    margin-bottom: 16px;
}
.section-head h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(42px, 5vw, 76px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.03em;
    max-width: 820px;
    margin: 0;
    text-wrap: balance;
}
.section-head p {
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 460px;
    margin: 0;
    justify-self: end;
}
.cat-grid,
.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

/* Categories */
.cat-card {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    text-decoration: none;
    background: var(--glass);
    transition: transform 0.45s ease, border-color 0.45s ease;
}
.cat-card:hover { transform: translateY(-8px); border-color: var(--accent-gold); }
.cat-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s ease; }
.cat-card:hover .cat-image { transform: scale(1.08); }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26, 11, 46, 0.94), rgba(49, 27, 82, 0.38) 55%, transparent); }
.cat-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid var(--glass-border);
    display: grid;
    place-items: center;
}
.cat-info { position: absolute; left: 24px; right: 24px; bottom: 24px; }
.cat-num { color: var(--accent-gold); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
.cat-info h3 { font-family: 'Fraunces', serif; font-size: 34px; font-weight: 500; margin: 0 0 8px; }
.cat-count { color: var(--text-muted); font-size: 14px; line-height: 1.5; }

/* Products */
.products::before {
    content: "COLLECTION";
    position: absolute;
    top: 68px;
    right: -18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(3rem, 9vw, 8rem);
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.035);
    pointer-events: none;
}
.prod-tabs {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}
.prod-tabs .tab {
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    background: var(--glass);
    border-radius: 999px;
    min-width: 92px;
    min-height: 48px;
    padding: 0 22px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.25s ease;
    text-decoration: none !important;
}
.prod-tabs .tab.active,
.prod-tabs .tab:hover {
    background: var(--accent-gold);
    color: var(--color-deep-space);
    border-color: var(--accent-gold);
    text-decoration: none !important;
}
.prod-card {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.45s ease, border-color 0.45s ease;
}
.prod-card:hover { transform: translateY(-6px); border-color: var(--accent-gold); }
.prod-card.is-hidden { display: none; }
.prod-image { position: relative; aspect-ratio: 1; overflow: hidden; background: rgba(0, 0, 0, 0.22); }
.prod-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s ease; }
.prod-card:hover .prod-image img { transform: scale(1.08); }
.prod-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(26, 11, 46, 0.72);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.prod-tag.sale {
    background: #d7193f;
    color: #fff;
    border-color: #ff5a72;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(215, 25, 63, 0.38);
}
.prod-tag.stock { background: rgba(10, 7, 16, 0.76); color: var(--accent-gold); border-color: rgba(232, 213, 181, 0.42); }
.prod-heart-action {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(26, 20, 36, 0.64);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
    transition: all 0.25s ease;
}
.prod-heart-action:hover {
    transform: translateY(-2px) scale(1.04);
    background: var(--accent-gold);
    color: var(--color-deep-space);
    border-color: var(--accent-gold);
}
.prod-info { padding: 22px; }
.prod-cat { color: var(--accent-gold); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; }
.prod-info h3 { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 500; line-height: 1.12; margin: 0 0 12px; }
.prod-info h3 a { text-decoration: none; }
.prod-desc { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin: 0 0 18px; }
.prod-meta { display: flex; justify-content: space-between; gap: 14px; align-items: end; }
.prod-price { font-family: 'Fraunces', serif; color: var(--accent-gold); font-size: 30px; font-weight: 600; white-space: nowrap; }
.prod-price .old { display: block; color: var(--text-soft); font-size: 16px; text-decoration: line-through; margin-bottom: 2px; }
.stars { color: var(--accent-gold); font-size: 12px; text-align: right; }
.rating-num { display: block; color: var(--text-soft); margin-top: 4px; }
.empty-state {
    grid-column: 1 / -1;
    padding: 48px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    text-align: center;
}

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
    padding: 34px;
    border-radius: 26px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.055);
    transition: transform 0.45s ease, border-color 0.45s ease;
}
.review-card:hover { transform: translateY(-6px); border-color: var(--accent-gold); }
.review-card.featured {
    background: linear-gradient(160deg, rgba(232, 213, 181, 0.18), rgba(232, 213, 181, 0.05));
    border-color: rgba(232, 213, 181, 0.3);
    transform: translateY(-20px);
}
.review-quote { font-family: 'Fraunces', serif; font-size: 70px; color: var(--accent-gold); line-height: 0.8; }
.review-stars { color: var(--accent-gold); margin: 18px 0; }
.review-text { color: var(--text-muted); line-height: 1.75; }
.review-divider { height: 1px; background: var(--glass-border); margin: 24px 0; }
.review-author { display: flex; gap: 14px; align-items: center; }
.review-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--accent-gold); color: var(--color-deep-space); display: grid; place-items: center; font-weight: 800; }
.review-name { font-weight: 700; }
.review-role { color: var(--text-soft); font-size: 13px; }

/* Blog preview */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}
.blog-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
        rgba(21, 8, 36, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    color: var(--text-main);
    text-decoration: none;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px) saturate(130%);
    transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}
.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(234, 216, 184, 0.45);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}
.blog-image {
    position: relative;
    height: 255px;
    flex: 0 0 255px;
    border-radius: 0;
    overflow: hidden;
    border: 0;
    margin-bottom: 0;
    background: rgba(0, 0, 0, 0.22);
}
.blog-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s ease; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 16%, rgba(197, 72, 255, 0.18), transparent 28%),
        linear-gradient(to top, rgba(10, 4, 18, 0.82), transparent 58%);
}
.blog-tag,
.blog-date { position: absolute; z-index: 2; left: 20px; }
.blog-tag {
    top: 20px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--accent-gold);
    color: var(--color-deep-space);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.blog-date { bottom: 20px; color: #fff; }
.blog-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 26px;
    background:
        radial-gradient(circle at 82% 0%, rgba(197, 72, 255, 0.1), transparent 34%),
        rgba(10, 4, 18, 0.14);
}
.blog-info h3 {
    font-family: 'Fraunces', serif;
    font-size: clamp(25px, 2vw, 32px);
    font-weight: 500;
    line-height: 1.16;
    margin: 0 0 14px;
    transition: color 0.25s ease;
}
.blog-card.featured .blog-info h3 { font-size: clamp(25px, 2vw, 32px); }
.blog-card:hover h3 { color: var(--accent-gold); }
.blog-excerpt {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 18px;
    max-width: none;
}
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    color: var(--text-soft);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: auto;
    margin-bottom: 18px;
}
.dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--text-soft); }
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    font-weight: 800;
}

/* Newsletter / Inner circle */
.inner-circle {
    min-height: 690px;
    display: grid;
    place-items: center;
    padding: 120px 40px 132px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 53%, rgba(197, 72, 255, 0.2), transparent 28%),
        radial-gradient(circle at 80% 72%, rgba(132, 77, 141, 0.32), transparent 34%),
        linear-gradient(180deg, #11071d 0%, #1a0b2e 54%, #2e1648 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.inner-circle-wrap {
    width: min(720px, 100%);
    margin: 0 auto;
}
.inner-kicker {
    color: #d9a6ff;
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}
.inner-kicker::before,
.inner-kicker::after {
    content: "";
    width: 32px;
    height: 1px;
    background: rgba(217, 166, 255, 0.58);
}
.inner-circle h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(58px, 7vw, 96px);
    font-weight: 400;
    line-height: 1;
    margin: 0 0 30px;
}
.inner-circle p {
    max-width: 640px;
    margin: 0 auto 48px;
    color: rgba(218, 203, 255, 0.86);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.48;
    font-weight: 600;
}
.inner-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    width: min(620px, 100%);
    margin: 0 auto;
    padding: 8px;
    border-radius: 999px;
    border: 1px solid rgba(197, 72, 255, 0.45);
    background: rgba(9, 4, 18, 0.74);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24), inset 0 0 28px rgba(197, 72, 255, 0.08);
}
.inner-form input {
    min-height: 58px;
    border: 0;
    background: transparent;
    color: var(--text-main);
    padding: 0 22px;
    outline: none;
    font-size: 1rem;
}
.inner-form input::placeholder { color: rgba(210, 197, 239, 0.56); }
.inner-form button {
    min-width: 180px;
    min-height: 58px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #bd47ff 0%, #e43fdd 100%);
    color: #fff;
    padding: 0 28px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(197, 72, 255, 0.32);
}
.inner-terms {
    color: rgba(220, 207, 255, 0.64);
    font-size: 14px;
    margin-top: 24px;
}
.inner-terms a { color: #d85cff; text-decoration: none; }
.newsletter-success {
    margin: 0;
    color: var(--accent-gold);
    font-weight: 700;
    grid-column: 1 / -1;
    padding: 14px 0;
}

/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(30px);
    border-top: 1px solid var(--glass-border);
    padding: 70px 40px 34px;
}
.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 44px;
}
.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    color: var(--text-main);
    text-decoration: none;
}
.footer-mark {
    width: 60px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: var(--color-deep-space);
    display: grid;
    place-items: center;
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 700;
}
.footer-brand h3 { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 600; margin: 0; }
.footer-tagline { color: var(--accent-gold); margin-top: 2px; }
.footer-brand p { font-size: 17px; color: var(--text-muted); line-height: 1.55; max-width: 380px; }
.footer-contact { display: grid; gap: 10px; margin-top: 20px; }
.footer-contact a,
.footer-contact span { display: flex; align-items: center; gap: 10px; color: var(--text-muted); text-decoration: none; }
.footer-contact i { color: var(--accent-gold); width: 16px; }
.footer-col h4 { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent-gold); margin: 0 0 20px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--text-muted); text-decoration: none; transition: color 0.25s ease, padding-left 0.25s ease; }
.footer-col a:hover { color: var(--accent-gold); padding-left: 6px; }
.payment-icons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pay-card,
.trust-pill { border: 1px solid var(--glass-border); border-radius: 999px; background: var(--glass); color: var(--text-muted); }
.pay-card { padding: 7px 11px; font-size: 11px; }
.footer-trust { max-width: 1400px; margin: 36px auto 0; padding: 26px 0; display: flex; gap: 12px; flex-wrap: wrap; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.trust-pill { padding: 8px 14px; font-size: 12px; }
.footer-bottom { max-width: 1400px; margin: 30px auto 0; display: flex; justify-content: space-between; gap: 24px; align-items: center; color: var(--text-soft); }
.footer-legal p { margin: 0 0 8px; max-width: 760px; line-height: 1.45; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--glass-border); background: var(--glass); display: grid; place-items: center; color: var(--text-main); text-decoration: none; transition: all 0.25s ease; }
.socials a:hover { background: var(--accent-gold); border-color: var(--accent-gold); color: var(--color-deep-space); }

/* Motion */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 1100px) {
    .promo-hero__grid {
        grid-template-columns: 1fr;
    }
    .promo-hero__side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .promo-card--large {
        min-height: 520px;
    }
    .cat-grid,
    .prod-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
    .nicotine-banner__inner {
        min-height: 44px;
        padding: 8px 20px;
        font-size: 9px;
        line-height: 1.4;
    }
    .nav {
        grid-template-columns: auto 1fr auto;
        padding: 18px 24px;
        gap: 18px;
        min-height: 74px;
    }
    .nav-links { display: none; }
    .logo { text-align: left; font-size: 23px; }
    .logo-image {
        width: 54px;
        height: 34px;
    }
    .logo .logo-text {
        font-size: 20px;
        letter-spacing: 0.12em;
    }
    .logo .logo-subtext {
        font-size: 9px;
        letter-spacing: 0.09em;
        margin-top: 6px;
    }
    .site-nav__toggle { display: inline-flex; }
    .site-shell.nav-open .mobile-nav { display: block; }
    .promo-hero {
        padding: 24px 20px 54px;
    }
    .promo-hero__side {
        grid-template-columns: 1fr;
    }
    .promo-card,
    .promo-card--large {
        min-height: 420px;
    }
    .promo-card--small {
        min-height: 300px;
    }
    .promo-card__content,
    .promo-card--small .promo-card__content {
        max-width: 72%;
        padding: 28px;
    }
    .promo-card__copy {
        font-size: 17px;
    }
    .slide-content {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 86px 24px 80px;
        text-align: center;
    }
    .slide-text .eyebrow,
    .btn-group { justify-content: center; }
    .slide-text .eyebrow::before { display: none; }
    .slide-visual { min-height: 240px; }
    .hero-image { height: 260px; width: min(100%, 420px); border-radius: 24px; }
    .slide-meta { left: 24px; bottom: 26px; }
    .slide-controls { right: 24px; bottom: 28px; }
    section { padding: 82px 24px; }
    .section-head {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        margin-bottom: 34px;
    }
    .section-head h2,
    .section-head p {
        text-align: center;
        justify-self: center;
    }
    .cat-grid,
    .prod-grid,
    .review-grid,
    .blog-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .blog-image {
        height: 240px;
        flex-basis: 240px;
    }
    .review-card.featured { transform: none; }
    .inner-circle { min-height: 620px; padding: 90px 24px; }
    .inner-form { border-radius: 28px; grid-template-columns: 1fr; }
    .inner-form input { text-align: center; }
    .inner-form button { min-width: 0; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-trust,
    .socials,
    .footer-logo-row,
    .footer-contact a,
    .footer-contact span { justify-content: center; }
    .footer-brand p { margin-left: auto; margin-right: auto; text-align: center; }
}
@media (max-width: 520px) {
    .nav-actions { gap: 8px; }
    .nav-actions .icon-btn:not(.cart-action):not(.site-nav__toggle) { display: none; }
    .logo--brand { gap: 10px; }
    .logo-image {
        width: 46px;
        height: 30px;
    }
    .logo .logo-text {
        font-size: 17px;
        letter-spacing: 0.09em;
    }
    .logo .logo-subtext { display: none; }
    .promo-card,
    .promo-card--large {
        min-height: 360px;
    }
    .promo-card--small {
        min-height: 260px;
    }
    .promo-card__content,
    .promo-card--small .promo-card__content {
        max-width: 82%;
        padding: 22px;
    }
    .promo-card h1 {
        font-size: 42px;
    }
    .promo-card h2 {
        font-size: 34px;
    }
    .promo-card__copy {
        display: none;
    }
    .promo-card__arrow,
    .promo-card--small .promo-card__arrow {
        left: 22px;
        bottom: 22px;
        width: 44px;
        height: 44px;
    }
    .hero { min-height: 720px; height: auto; }
    .slide-text h1,
    .slide-text h2 { font-size: 48px; }
    .prod-meta { display: block; }
    .stars { text-align: left; margin-top: 10px; }
    .cart-drawer { width: 100%; }
}

/* Shop Page */
.shop-page {
    position: relative;
    isolation: isolate;
}
.shop-page::before {
    content: "SHOP";
    position: absolute;
    top: 150px;
    right: -30px;
    z-index: -1;
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(5rem, 14vw, 14rem);
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.035);
    pointer-events: none;
}
.shop-hero {
    padding: 100px 40px 62px;
}
.shop-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
    gap: clamp(34px, 8vw, 120px);
    align-items: end;
}
.shop-hero__kicker {
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 18px;
}
.shop-hero__kicker::before {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--accent-gold);
}
.shop-hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(54px, 7vw, 108px);
}
.shop-hero__copy {
    margin: 0 0 10px;
    color: var(--text-muted);
    font-size: clamp(17px, 1.4vw, 21px);
    line-height: 1.65;
}
.shop-shell {
    padding: 0 40px 120px;
}
.shop-shell__grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}
.filters {
    position: sticky;
    top: 118px;
    padding: 28px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
        rgba(26, 11, 46, 0.62);
    border: 1px solid rgba(232, 213, 181, 0.18);
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px);
}
.filter-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.filter-head span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(197, 72, 255, 0.18);
    color: #d9a6ff;
}
.filter-head strong {
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
}
.filter-head a {
    margin-left: auto;
    color: var(--accent-gold);
    font-size: 0.86rem;
    text-decoration: none;
}
.shop-filter-form {
    display: grid;
    gap: 22px;
}
.filter-group {
    padding-top: 22px;
    border-top: 1px solid var(--glass-border);
}
.filter-title {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--accent-gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin-bottom: 15px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}
.filter-title span {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}
.filter-options {
    display: grid;
    gap: 13px;
}
.check-row {
    display: grid;
    grid-template-columns: 18px 1fr auto;
    align-items: center;
    gap: 13px;
    cursor: pointer;
    color: var(--text-muted);
}
.check-row input,
.chip-option input,
.color-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.check-row span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.34);
    position: relative;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.check-row span::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--accent-gold);
    transform: scale(0);
    transition: transform 0.25s ease;
}
.check-row input:checked + span {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 5px rgba(232, 213, 181, 0.11);
}
.check-row input:checked + span::after {
    transform: scale(1);
}
.check-row em {
    font-style: normal;
}
.check-row small {
    color: var(--text-soft);
}
.range-row {
    display: grid;
    gap: 16px;
}
.range-slider {
    position: relative;
    height: 34px;
    --range-left: 0%;
    --range-right: 0%;
}
.range-slider__track,
.range-slider__active {
    position: absolute;
    top: 15px;
    height: 5px;
    border-radius: 999px;
}
.range-slider__track {
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(8, 4, 15, 0.95), rgba(18, 11, 29, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.75);
}
.range-slider__active {
    left: var(--range-left);
    right: var(--range-right);
    background: linear-gradient(90deg, #ad6cff 0%, #ff4ee8 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 0 12px rgba(197, 72, 255, 0.42),
        0 0 24px rgba(229, 72, 221, 0.22);
}
.range-slider input[type="range"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 34px;
    margin: 0;
    background: transparent;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
}
.range-slider input[type="range"]::-webkit-slider-runnable-track {
    height: 5px;
    background: transparent;
}
.range-slider input[type="range"]::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
    margin-top: -10px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #f1dcff 0%, #b676ff 100%);
    box-shadow:
        0 0 0 5px rgba(197, 72, 255, 0.18),
        0 0 18px rgba(214, 164, 255, 0.52),
        inset 0 -2px 5px rgba(91, 33, 182, 0.2);
    cursor: pointer;
    pointer-events: auto;
    appearance: none;
    -webkit-appearance: none;
}
.range-slider input[type="range"]::-moz-range-track {
    height: 5px;
    background: transparent;
}
.range-slider input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #f1dcff 0%, #b676ff 100%);
    box-shadow:
        0 0 0 5px rgba(197, 72, 255, 0.18),
        0 0 18px rgba(214, 164, 255, 0.52),
        inset 0 -2px 5px rgba(91, 33, 182, 0.2);
    cursor: pointer;
    pointer-events: auto;
}
.range-slider input[type="range"]:focus-visible::-webkit-slider-thumb {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
}
.range-slider input[type="range"]:focus-visible::-moz-range-thumb {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
}
.range-row__values {
    display: flex;
    justify-content: space-between;
    color: var(--text-soft);
    font-size: 0.9rem;
}
.range-row__values strong {
    color: var(--accent-gold);
}
.shop-price-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 14px;
}
.shop-price-inputs label {
    display: grid;
    gap: 7px;
    color: var(--text-soft);
    font-size: 0.8rem;
}
.shop-price-inputs input,
.search-wrap input,
.sort-select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    background: rgba(10, 4, 20, 0.45);
    color: var(--text-main);
    outline: none;
}
.shop-price-inputs input {
    padding: 0 14px;
}
.chip-list,
.color-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.chip-option {
    position: relative;
    cursor: pointer;
}
.chip-option span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.045);
    transition: all 0.25s ease;
}
.chip-option--compact span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.78rem;
}
.chip-option input:checked + span,
.chip-option:hover span {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--color-deep-space);
}
.color-option {
    position: relative;
    cursor: pointer;
}
.color-option span {
    width: 32px;
    height: 32px;
    display: block;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.color-option input:checked + span {
    transform: scale(1.08);
    border-color: #fff;
    box-shadow: 0 0 0 5px rgba(232, 213, 181, 0.13);
}
.filter-actions {
    display: grid;
    gap: 10px;
}
.shop-content {
    min-width: 0;
}
.shop-results {
    position: relative;
    min-height: 360px;
}
.shop-results.is-loading [data-shop-products] {
    opacity: 0.34;
    pointer-events: none;
    filter: blur(1px);
}
.shop-loader {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 260px;
    color: var(--accent-gold);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    background: linear-gradient(180deg, rgba(21, 8, 36, 0.18), rgba(21, 8, 36, 0.56));
    border-radius: 28px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.shop-results.is-loading .shop-loader {
    opacity: 1;
    visibility: visible;
}
.shop-loader__spinner {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid rgba(232, 213, 181, 0.22);
    border-top-color: var(--accent-gold);
    animation: shopSpin 0.8s linear infinite;
}
@keyframes shopSpin {
    to { transform: rotate(360deg); }
}
.toolbar {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 210px auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
}
.toolbar-form {
    margin: 0;
}
.search-wrap {
    position: relative;
}
.search-wrap i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-soft);
}
.search-wrap input {
    padding: 0 18px 0 48px;
}
.sort-select {
    appearance: none;
    padding: 0 42px 0 16px;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--accent-gold) 50%),
        linear-gradient(135deg, var(--accent-gold) 50%, transparent 50%);
    background-position:
        calc(100% - 20px) 21px,
        calc(100% - 14px) 21px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}
.sort-select option {
    color: #150824;
}
.result-count {
    margin: 0;
    color: var(--text-muted);
    white-space: nowrap;
}
.result-count strong {
    color: var(--accent-gold);
}
.category-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}
.product-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}
.product-card:hover {
    transform: translateY(-7px);
    border-color: rgba(232, 213, 181, 0.55);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
}
.product-image {
    position: relative;
    aspect-ratio: 1 / 1.08;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.22);
}
.product-image img,
.product-image a {
    display: block;
    width: 100%;
    height: 100%;
}
.product-image img {
    object-fit: cover;
    transition: transform 0.7s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.07);
}
.product-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 44%;
    background: linear-gradient(to top, rgba(21, 8, 36, 0.82), transparent);
    pointer-events: none;
}
.product-image-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--accent-violet);
    font-size: 5rem;
    background:
        radial-gradient(circle at 50% 45%, rgba(197, 72, 255, 0.25), transparent 34%),
        rgba(0, 0, 0, 0.18);
}
.badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    max-width: calc(100% - 84px);
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(21, 8, 36, 0.72);
    border: 1px solid var(--glass-border-strong);
    color: var(--text-main);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.badge--sale {
    background: #d7193f;
    border-color: #ff5a72;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(215, 25, 63, 0.38);
}
.badge--stock {
    background: rgba(11, 6, 18, 0.78);
    border-color: rgba(232, 213, 181, 0.45);
    color: var(--accent-gold);
}
.wish {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(21, 8, 36, 0.62);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
    transition: all 0.25s ease;
}
.wish:hover {
    transform: translateY(-2px) scale(1.04);
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--color-deep-space);
}
.product-info {
    padding: 24px;
    display: flex;
    flex: 1;
    flex-direction: column;
}
.product-cat {
    margin: 0 0 8px;
    color: var(--accent-gold);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.product-info h2 {
    margin: 0 0 12px;
    font-family: 'Fraunces', serif;
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    font-weight: 500;
    line-height: 1.08;
}
.product-info h2 a {
    color: inherit;
    text-decoration: none;
}
.product-info h2 a:hover {
    color: var(--accent-gold);
}
.product-info p:not(.product-cat) {
    margin: 0 0 22px;
    color: var(--text-muted);
    line-height: 1.6;
}
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-top: auto;
}
.filter-group.is-collapsed .filter-options,
.filter-group.is-collapsed .range-row,
.filter-group.is-collapsed .shop-price-inputs,
.filter-group.is-collapsed .chip-list,
.filter-group.is-collapsed .color-list {
    display: none;
}
.price {
    color: var(--accent-gold);
    font-family: 'Fraunces', serif;
    font-size: 1.9rem;
    line-height: 1.05;
    font-weight: 700;
    white-space: nowrap;
}
.price .old {
    display: block;
    color: var(--text-soft);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: line-through;
    margin-bottom: 5px;
}
.stars {
    color: var(--text-soft);
    text-align: right;
    font-size: 0.9rem;
}
.rating-num {
    display: block;
    color: var(--text-soft);
}
.pagination-wrap {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}
.pagination,
.pagination-wrap nav > div:last-child {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.pagination a,
.pagination span,
.pagination-wrap nav a,
.pagination-wrap nav span {
    min-width: 42px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.055);
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.pagination .active span,
.pagination-wrap nav span[aria-current="page"] {
    background: var(--accent-gold);
    color: var(--color-deep-space);
    border-color: var(--accent-gold);
}
.shop-empty {
    min-height: 420px;
    padding: 56px 28px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.055);
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
}
.shop-empty__icon {
    color: var(--accent-violet);
    font-size: 4rem;
    margin-bottom: 18px;
}
.shop-empty h2 {
    margin: 0 0 10px;
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3rem);
}
.shop-empty p {
    max-width: 460px;
    margin: 0 0 24px;
    color: var(--text-muted);
}
@media (max-width: 1180px) {
    .shop-shell__grid {
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 28px;
    }
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 900px) {
    .shop-hero__inner,
    .shop-shell__grid,
    .toolbar {
        grid-template-columns: 1fr;
    }
    .shop-hero,
    .shop-shell {
        padding-left: 24px;
        padding-right: 24px;
    }
    .shop-hero {
        text-align: center;
        padding-top: 76px;
    }
    .shop-hero__kicker {
        justify-content: center;
    }
    .shop-hero__kicker::before {
        display: none;
    }
    .filters {
        position: static;
    }
    .result-count {
        white-space: normal;
    }
}
@media (max-width: 560px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .product-meta {
        display: block;
    }
    .stars {
        text-align: left;
        margin-top: 12px;
    }
}

/* Product Detail */
.detail-page {
    position: relative;
    isolation: isolate;
}
.detail-page::before {
    content: "PRODUCT";
    position: absolute;
    top: 92px;
    right: -22px;
    z-index: -1;
    font-family: 'Fraunces', serif;
    font-size: clamp(7rem, 14vw, 13rem);
    font-style: italic;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}
.detail-hero {
    padding: 92px 40px 96px;
}
.detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 42px;
    color: var(--text-soft);
}
.detail-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}
.detail-breadcrumb a:hover {
    color: var(--accent-gold);
}
.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.74fr);
    gap: 32px;
    align-items: start;
}
.detail-gallery-card,
.detail-summary,
.detail-tabs {
    border: 1px solid var(--glass-border);
    background: var(--glass);
    box-shadow: none;
    backdrop-filter: blur(24px);
}
.detail-gallery-card {
    position: sticky;
    top: 105px;
    overflow: hidden;
    border-radius: 8px;
    padding: 0;
}
.detail-gallery-top {
    position: absolute;
    inset: 22px 22px auto 22px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    pointer-events: none;
}
.detail-media {
    position: relative;
    min-height: clamp(520px, 54vw, 720px);
    border-radius: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 56% 44%, rgba(197, 72, 255, 0.22), transparent 34%),
        rgba(0, 0, 0, 0.22);
}
.detail-media img {
    width: 100%;
    height: 100%;
    min-height: clamp(520px, 54vw, 720px);
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.detail-gallery-card:hover .detail-media img {
    transform: scale(1.035);
}
.detail-media__fallback {
    width: 100%;
    min-height: clamp(520px, 54vw, 720px);
    display: grid;
    place-items: center;
    color: var(--accent-violet);
    font-size: 8rem;
}
.detail-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
    margin-top: 0;
    border-top: 1px solid var(--glass-border);
}
.detail-thumb {
    aspect-ratio: 1;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.055);
    padding: 0;
    cursor: pointer;
    transition: border-color 0.25s ease, transform 0.25s ease;
}
.detail-thumb:hover,
.detail-thumb.active {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}
.detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.detail-summary {
    border-radius: 8px;
    padding: clamp(28px, 4vw, 48px);
    min-height: clamp(520px, 54vw, 720px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.detail-kicker {
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 22px;
}
.detail-kicker::before {
    content: "";
    width: 38px;
    height: 1px;
    background: var(--accent-gold);
}
.detail-summary h1 {
    max-width: 680px;
    margin: 0 0 18px;
    font-size: clamp(52px, 7vw, 94px);
}
.detail-rating {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
    color: var(--accent-gold);
}
.detail-rating em {
    color: var(--text-muted);
    font-style: normal;
    font-size: 0.95rem;
}
.detail-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin: 0 0 18px;
}
.detail-price {
    display: grid;
    gap: 4px;
}
.detail-price strong {
    color: var(--text-main);
    font-family: 'Fraunces', serif;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1;
}
.detail-price__old {
    color: var(--text-soft);
    text-decoration: line-through;
    font-weight: 700;
}
.detail-stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    font-weight: 800;
    white-space: nowrap;
}
.detail-stock.is-in {
    color: #baf7d0;
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.32);
}
.detail-stock.is-out {
    color: var(--accent-gold);
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(232, 213, 181, 0.28);
}
.detail-offer {
    margin: 0 0 18px;
    color: var(--accent-gold);
    font-weight: 700;
}
.detail-description {
    margin: 0 0 26px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}
.detail-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}
.detail-facts div {
    min-height: 86px;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.045);
}
.detail-facts span {
    color: var(--text-soft);
    display: block;
    margin-bottom: 8px;
}
.detail-facts strong {
    color: var(--text-main);
    line-height: 1.25;
}
.detail-variants {
    margin: 0 0 24px;
}
.detail-variants p {
    margin: 0 0 12px;
    color: var(--accent-gold);
}
.detail-variants p span {
    color: var(--text-muted);
    margin-left: 8px;
}
.detail-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.detail-pill {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.055);
    color: var(--text-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
}
.detail-pill__icon,
.detail-pill__swatch {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: block;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06);
}
.detail-pill__icon {
    background:
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.9) 0 12%, transparent 13%),
        linear-gradient(135deg, var(--detail-accent, #f97316), #fef3c7);
}
.detail-pill:hover,
.detail-pill.active {
    background: rgba(232, 213, 181, 0.14);
    border-color: var(--accent-gold);
    color: var(--text-main);
    box-shadow: 0 12px 30px rgba(10, 7, 16, 0.22);
}
.detail-pill:hover .detail-pill__icon,
.detail-pill:hover .detail-pill__swatch,
.detail-pill.active .detail-pill__icon,
.detail-pill.active .detail-pill__swatch {
    transform: scale(1.05);
    border-color: #fff;
    box-shadow: 0 0 0 5px rgba(232, 213, 181, 0.13);
}
.detail-purchase {
    display: grid;
    grid-template-columns: 138px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin: 28px 0 26px;
}
.detail-qty {
    min-height: 56px;
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.22);
}
.qty-btn {
    border: 0;
    background: transparent;
    color: var(--text-main);
    cursor: pointer;
    font-weight: 800;
}
.qty-input {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text-main);
    text-align: center;
    outline: 0;
}
.detail-cart-btn {
    min-height: 56px;
}
.detail-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}
.detail-service-grid div {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.045);
    color: var(--text-muted);
    font-size: 0.9rem;
}
.detail-service-grid i {
    color: var(--accent-gold);
}
.detail-warning {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.6;
}
.detail-warning i {
    color: var(--accent-gold);
    margin-right: 8px;
}
.detail-tabs-section,
.detail-related {
    padding: 0 40px 110px;
}
.detail-related--showcase {
    padding: 0 0 120px;
}
.detail-related__inner {
    width: min(100%, 1900px);
    margin: 0 auto;
    padding: 0 64px;
}
.detail-related__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 54px;
}
.detail-related__label {
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 20px;
}
.detail-related__label::before {
    content: "";
    width: 36px;
    height: 1px;
    background: var(--accent-gold);
}
.detail-related__head h2 {
    margin: 0;
    font-size: clamp(48px, 6vw, 78px);
    color: var(--text-main);
}
.detail-related__head h2 em {
    color: var(--accent-gold);
    font-style: italic;
}
.detail-related__arrows {
    display: flex;
    gap: 12px;
    padding-bottom: 10px;
}
.detail-related__arrows button {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.055);
    color: var(--text-main);
}
.related-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}
.related-showcase-card {
    position: relative;
    overflow: hidden;
    min-height: 580px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(18px);
}
.related-showcase-card__media {
    position: relative;
    display: block;
    height: 420px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.055);
}
.related-showcase-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.65s ease;
}
.related-showcase-card:hover .related-showcase-card__media img {
    transform: scale(1.06);
}
.related-showcase-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--accent-gold);
    font-size: 5rem;
    background:
        radial-gradient(circle at 50% 45%, rgba(197, 72, 255, 0.24), transparent 34%),
        rgba(255, 255, 255, 0.045);
}
.related-showcase-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    border-radius: 999px;
    background: var(--accent-gold);
    color: var(--color-deep-space);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.related-showcase-badge--hot {
    background: #fff;
}
.related-showcase-badge--sale {
    background: #d7193f;
    color: #fff;
    border: 1px solid #ff5a72;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(215, 25, 63, 0.38);
}
.related-showcase-heart {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(21, 8, 36, 0.55);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.25s ease;
}
.related-showcase-heart:hover {
    background: var(--accent-gold);
    color: var(--color-deep-space);
    border-color: var(--accent-gold);
}
.related-showcase-info {
    padding: 24px 26px 26px;
    background: linear-gradient(180deg, rgba(132, 77, 141, 0.38), rgba(132, 77, 141, 0.22));
}
.related-showcase-info p {
    margin: 0 0 12px;
    color: var(--accent-gold);
}
.related-showcase-info h3 {
    margin: 0 0 22px;
    font-family: 'Fraunces', serif;
    font-size: clamp(24px, 2vw, 30px);
    font-weight: 650;
    line-height: 1.1;
}
.related-showcase-info h3 a {
    text-decoration: none;
}
.related-showcase-meta {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
}
.related-showcase-meta span {
    color: rgba(230, 218, 255, 0.5);
    text-decoration: line-through;
    font-weight: 800;
    margin-right: 8px;
}
.related-showcase-meta strong {
    color: #fff;
    font-family: 'Fraunces', serif;
    font-size: 2rem;
}
.related-showcase-meta em {
    color: var(--accent-gold);
    font-style: normal;
    font-size: 0.92rem;
    white-space: nowrap;
}
.related-showcase-meta em span {
    color: rgba(230, 218, 255, 0.82);
    text-decoration: none;
    margin-left: 4px;
    font-weight: 500;
}
.related-showcase-card--ghost {
    opacity: 0.72;
}
.detail-tabs {
    border-radius: 8px;
    overflow: hidden;
}
.detail-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
}
.detail-tab-btn {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.045);
    color: var(--text-muted);
    cursor: pointer;
}
.detail-tab-btn.active,
.detail-tab-btn:hover {
    background: var(--accent-gold);
    color: var(--color-deep-space);
    border-color: var(--accent-gold);
}
.detail-tab-panel {
    display: none;
    padding: clamp(26px, 4vw, 44px);
    color: var(--text-muted);
    line-height: 1.8;
}
.detail-tab-panel.active {
    display: block;
}
.detail-rich-text :is(h1, h2, h3, h4) {
    color: var(--text-main);
    font-family: 'Fraunces', serif;
    font-weight: 500;
}
.detail-rich-text :is(p, ul, ol) {
    color: var(--text-muted);
}
.detail-includes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.detail-includes li {
    display: flex;
    gap: 10px;
    align-items: center;
}
.detail-includes i {
    color: var(--accent-gold);
}

/* =====================================================
   Contact Page
===================================================== */
.page-top {
    position: relative;
    overflow: hidden;
    padding: clamp(110px, 12vw, 168px) 40px clamp(48px, 7vw, 86px);
    border-bottom: 1px solid var(--glass-border);
    background:
        radial-gradient(circle at 78% 18%, rgba(197, 72, 255, 0.24), transparent 32%),
        radial-gradient(circle at 16% 90%, rgba(234, 216, 184, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(21, 8, 36, 0.6), rgba(43, 23, 72, 0.34));
}
.page-top--contact {
    padding-top: clamp(72px, 7vw, 108px);
    padding-bottom: clamp(34px, 4vw, 56px);
}
.page-top::before {
    content: "";
    position: absolute;
    inset: 14% 8% auto auto;
    width: min(520px, 46vw);
    height: min(520px, 46vw);
    border-radius: 999px;
    background: rgba(132, 77, 141, 0.24);
    filter: blur(80px);
    pointer-events: none;
}
.page-top .site-container,
.contact-section .site-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
}
.breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--text-soft);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.breadcrumb a {
    color: var(--accent-gold);
    text-decoration: none;
}
.breadcrumb a:hover {
    color: var(--text-main);
}
.page-top__title {
    max-width: 780px;
    margin: 0;
    font-family: 'Fraunces', serif;
    font-size: clamp(56px, 7.2vw, 112px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.045em;
}
.page-top__sub {
    max-width: 640px;
    margin: 24px 0 0;
    color: var(--text-muted);
    font-size: clamp(17px, 1.35vw, 22px);
}
.contact-section {
    padding: clamp(38px, 5vw, 68px) 40px clamp(86px, 10vw, 140px);
}
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: start;
}
.contact-form-wrap,
.contact-info__card,
.contact-info__socials,
.contact-info__faq-link {
    border: 1px solid var(--glass-border);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
        rgba(21, 8, 36, 0.36);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(22px) saturate(135%);
}
.contact-form-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    padding: clamp(28px, 4vw, 54px);
}
.contact-form-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 100% 0%, rgba(197, 72, 255, 0.16), transparent 32%),
        radial-gradient(circle at 0% 100%, rgba(234, 216, 184, 0.08), transparent 36%);
    pointer-events: none;
}
.contact-form-wrap > * {
    position: relative;
    z-index: 1;
}
.contact-form-wrap__title {
    margin: 0 0 12px;
    font-family: 'Fraunces', serif;
    font-size: clamp(34px, 4.5vw, 66px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
}
.contact-form-wrap__sub {
    max-width: 600px;
    margin: 0 0 34px;
    color: var(--text-muted);
    font-size: 17px;
}
.contact-form {
    display: grid;
    gap: 20px;
}
.contact-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.contact-form .form-group {
    display: grid;
    gap: 9px;
}
.contact-form label {
    color: var(--accent-gold);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.contact-section .form-input {
    width: 100%;
    min-height: 56px;
    border: 1px solid rgba(234, 216, 184, 0.18);
    border-radius: 8px;
    background: rgba(13, 5, 24, 0.56);
    color: var(--text-main);
    padding: 15px 18px;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.contact-section .form-input:focus {
    border-color: rgba(234, 216, 184, 0.72);
    background: rgba(13, 5, 24, 0.72);
    box-shadow: 0 0 0 4px rgba(197, 72, 255, 0.14);
}
.contact-section .form-input::placeholder {
    color: rgba(230, 218, 255, 0.42);
}
.contact-section .form-select {
    appearance: none;
    cursor: pointer;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--accent-gold) 50%),
        linear-gradient(135deg, var(--accent-gold) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) 50%,
        calc(100% - 16px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}
.contact-section .form-textarea {
    min-height: 160px;
    resize: vertical;
}
.form-group--check .filter-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.6;
    text-transform: none;
}
.form-group--check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--accent-violet);
    flex: 0 0 auto;
}
.form-group--check .filter-checkbox a {
    color: var(--accent-gold);
}
.form-error {
    color: #fca5a5;
    font-size: 13px;
}
.contact-form__submit {
    width: fit-content;
    min-width: 210px;
    margin-top: 8px;
}
.contact-info {
    display: grid;
    gap: 20px;
}
.contact-info__card,
.contact-info__socials,
.contact-info__faq-link {
    border-radius: 8px;
    padding: 26px;
}
.contact-info__card {
    display: grid;
    gap: 22px;
}
.contact-info__item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}
.contact-info__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: rgba(234, 216, 184, 0.12);
    border: 1px solid rgba(234, 216, 184, 0.16);
    color: var(--accent-gold);
}
.contact-info__item h4 {
    margin: 0 0 6px;
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 550;
}
.contact-info__item p,
.contact-info__faq-link p {
    margin: 0;
    color: var(--text-muted);
}
.contact-info__socials-label {
    margin: 0 0 14px;
    color: var(--accent-gold);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--glass-border-strong);
    display: inline-grid;
    place-items: center;
    color: var(--text-main);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.socials a:hover {
    transform: translateY(-2px);
    background: var(--accent-gold);
    color: var(--color-deep-space);
}
.contact-info__faq-link {
    display: flex;
    gap: 14px;
    align-items: center;
}
.contact-info__faq-link i,
.contact-info__faq-link a {
    color: var(--accent-gold);
}

/* =====================================================
   FAQs Page
===================================================== */
.faqs-section {
    position: relative;
    padding: clamp(54px, 7vw, 96px) 40px clamp(86px, 10vw, 140px);
}
.faqs-section::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 50%;
    width: min(700px, 70vw);
    height: min(700px, 70vw);
    border-radius: 999px;
    background: rgba(197, 72, 255, 0.12);
    filter: blur(100px);
    pointer-events: none;
}
.faqs-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: clamp(26px, 4vw, 58px);
    align-items: start;
}
.faqs-main {
    min-width: 0;
}
.faq-accordion {
    display: grid;
    gap: 14px;
}
.faq-item {
    overflow: hidden;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
        rgba(21, 8, 36, 0.42);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(20px) saturate(130%);
}
.faq-trigger {
    width: 100%;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 26px;
    border: 0;
    background: transparent;
    color: var(--text-main);
    text-align: left;
    cursor: pointer;
    font-family: 'Fraunces', serif;
    font-size: clamp(21px, 1.75vw, 30px);
    font-weight: 560;
    line-height: 1.15;
    letter-spacing: -0.025em;
}
.faq-trigger span {
    min-width: 0;
}
.faq-trigger:hover,
.faq-trigger[aria-expanded="true"] {
    color: var(--accent-gold);
}
.faq-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(234, 216, 184, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: var(--accent-gold);
    font-size: 14px;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.faq-item.active .faq-icon,
.faq-trigger[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    background: var(--accent-gold);
    color: var(--color-deep-space);
}
.faq-body {
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-body__inner {
    padding: 0 26px 26px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}
.faq-body__inner p,
.faq-body__inner ul,
.faq-body__inner ol,
.prose-content p {
    color: var(--text-muted);
    margin: 0 0 14px;
}
.faq-body__inner :is(ul, ol) {
    padding-left: 22px;
}
.faq-body__inner :is(a, strong) {
    color: var(--accent-gold);
}
.faqs-sidebar {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 20px;
}
.faqs-sidebar__widget {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 28px;
    background:
        radial-gradient(circle at 100% 0%, rgba(197, 72, 255, 0.14), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
        rgba(21, 8, 36, 0.38);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(22px) saturate(135%);
}
.faqs-sidebar__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: rgba(234, 216, 184, 0.12);
    border: 1px solid rgba(234, 216, 184, 0.16);
    color: var(--accent-gold);
    font-size: 18px;
}
.faqs-sidebar__widget h3 {
    margin: 0 0 12px;
    font-family: 'Fraunces', serif;
    font-size: clamp(25px, 2vw, 34px);
    font-weight: 560;
    line-height: 1.08;
    letter-spacing: -0.025em;
}
.faqs-sidebar__widget p {
    margin: 0 0 22px;
    color: var(--text-muted);
    line-height: 1.7;
}
.faqs-sidebar__widget .btn {
    width: 100%;
}

/* =====================================================
   About Page
===================================================== */
.about-page {
    position: relative;
    isolation: isolate;
}
.about-page::before {
    content: "ABOUT";
    position: absolute;
    top: 140px;
    right: -24px;
    z-index: -1;
    color: rgba(255, 255, 255, 0.035);
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(5rem, 14vw, 14rem);
    font-weight: 700;
    letter-spacing: 0.16em;
    pointer-events: none;
}
.about-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(90px, 11vw, 150px) 40px clamp(64px, 8vw, 110px);
    border-bottom: 1px solid var(--glass-border);
    background:
        radial-gradient(circle at 78% 16%, rgba(197, 72, 255, 0.22), transparent 30%),
        radial-gradient(circle at 12% 88%, rgba(234, 216, 184, 0.12), transparent 32%);
}
.about-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.58fr);
    gap: clamp(32px, 7vw, 110px);
    align-items: center;
}
.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 18px;
    color: var(--accent-gold);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.about-kicker::before {
    content: "";
    width: 42px;
    height: 1px;
    background: var(--accent-gold);
}
.about-hero h1 {
    max-width: 850px;
    margin: 0;
    font-family: 'Fraunces', serif;
    font-size: clamp(62px, 8vw, 126px);
    font-weight: 520;
    line-height: 0.92;
    letter-spacing: -0.055em;
}
.about-hero__copy > p:not(.about-kicker) {
    max-width: 650px;
    margin: 28px 0 0;
    color: var(--text-muted);
    font-size: clamp(18px, 1.4vw, 23px);
    line-height: 1.65;
}
.about-hero__visual {
    position: relative;
    min-height: 430px;
    display: grid;
    place-items: center;
}
.about-orbit {
    position: absolute;
    border: 1px solid rgba(234, 216, 184, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.about-orbit--one {
    width: 330px;
    height: 330px;
}
.about-orbit--two {
    width: 230px;
    height: 230px;
    transform: rotate(28deg);
    border-color: rgba(197, 72, 255, 0.28);
}
.about-signature-card {
    position: relative;
    z-index: 1;
    width: min(310px, 100%);
    padding: 32px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        rgba(21, 8, 36, 0.58);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(24px);
}
.about-signature-card span {
    color: var(--accent-gold);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.about-signature-card strong {
    display: block;
    margin: 24px 0 14px;
    font-family: 'Fraunces', serif;
    font-size: 82px;
    font-weight: 600;
    line-height: 0.88;
}
.about-signature-card p {
    margin: 0;
    color: var(--text-muted);
}
.about-story-section,
.about-promise-section,
.about-compliance-section,
.about-cta {
    padding: clamp(70px, 9vw, 130px) 40px;
}
.about-story-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.88fr);
    gap: clamp(28px, 5vw, 80px);
    align-items: start;
}
.about-story-aside {
    position: sticky;
    top: 120px;
}
.about-story-aside h2,
.about-section-head h2,
.about-compliance-card h2,
.about-cta h2 {
    margin: 0;
    font-family: 'Fraunces', serif;
    font-size: clamp(44px, 5.6vw, 88px);
    font-weight: 520;
    line-height: 0.98;
    letter-spacing: -0.045em;
}
.about-story-panel {
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: clamp(28px, 4vw, 56px);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
        rgba(21, 8, 36, 0.42);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(22px) saturate(135%);
}
.about-rich-text {
    color: var(--text-muted);
    font-size: clamp(17px, 1.25vw, 21px);
    line-height: 1.85;
}
.about-rich-text :is(p, ul, ol) {
    margin-top: 0;
    margin-bottom: 22px;
    color: var(--text-muted);
}
.about-rich-text :is(h1, h2, h3, h4) {
    margin: 0 0 18px;
    color: var(--text-main);
    font-family: 'Fraunces', serif;
    font-weight: 520;
}
.about-rich-text a,
.about-rich-text strong {
    color: var(--accent-gold);
}
.about-rich-text ul,
.about-rich-text ol {
    padding-left: 24px;
}
.about-section-head {
    max-width: 780px;
    margin-bottom: clamp(34px, 5vw, 64px);
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.about-value-card {
    min-height: 280px;
    padding: 28px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
        rgba(21, 8, 36, 0.4);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.about-value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(234, 216, 184, 0.34);
}
.about-value-card__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 28px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: var(--accent-gold);
    background: rgba(234, 216, 184, 0.1);
    border: 1px solid rgba(234, 216, 184, 0.15);
}
.about-value-card h3 {
    margin: 0 0 12px;
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 560;
    line-height: 1.08;
}
.about-value-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}
.about-compliance-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
    gap: clamp(28px, 6vw, 90px);
    align-items: center;
    padding: clamp(32px, 5vw, 68px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background:
        radial-gradient(circle at 85% 20%, rgba(197, 72, 255, 0.2), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
        rgba(21, 8, 36, 0.42);
    box-shadow: var(--shadow-soft);
}
.about-compliance-list {
    display: grid;
    gap: 16px;
}
.about-compliance-list span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-weight: 650;
}
.about-compliance-list i {
    color: var(--accent-gold);
}
.about-cta {
    text-align: center;
}
.about-cta__inner {
    max-width: 820px;
}
.about-cta .about-kicker {
    justify-content: center;
}
.about-cta .about-kicker::after {
    content: "";
    width: 42px;
    height: 1px;
    background: var(--accent-gold);
}
.about-cta p:not(.about-kicker) {
    max-width: 620px;
    margin: 24px auto 32px;
    color: var(--text-muted);
    font-size: 18px;
}
.about-cta__btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* =====================================================
   Blog Listing / Journal Page
===================================================== */
.journal-page {
    position: relative;
    isolation: isolate;
}
.journal-page::before {
    content: "JOURNAL";
    position: absolute;
    top: 92px;
    right: -34px;
    z-index: -1;
    color: rgba(255, 255, 255, 0.045);
    font-family: 'Fraunces', serif;
    font-size: clamp(6rem, 14vw, 13rem);
    font-style: italic;
    letter-spacing: -0.035em;
    pointer-events: none;
}
.journal-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(72px, 8vw, 108px) 40px clamp(42px, 5vw, 64px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: 40px;
    align-items: end;
    position: relative;
    z-index: 1;
}
.journal-hero .label {
    color: var(--accent-gold);
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0 0 18px;
}
.journal-hero .label::before {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--accent-gold);
}
.journal-hero h1 {
    max-width: 840px;
    margin: 0;
    font-family: 'Fraunces', serif;
    font-size: clamp(52px, 7vw, 94px);
    font-weight: 420;
    line-height: 1.02;
    letter-spacing: -0.045em;
}
.journal-hero h1 em {
    color: var(--accent-gold);
    font-style: italic;
    font-weight: 320;
}
.journal-hero p {
    max-width: 430px;
    margin: 0 0 8px;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 16px;
}
.feature-strip {
    max-width: 1400px;
    margin: 0 auto clamp(44px, 5vw, 64px);
    padding: 0 40px;
    position: relative;
    z-index: 2;
}
.featured-article {
    min-height: 430px;
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
        rgba(26, 11, 46, 0.2);
    backdrop-filter: blur(24px);
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    box-shadow: var(--shadow-soft);
}
.featured-media {
    position: relative;
    min-height: 430px;
    display: block;
    background:
        linear-gradient(120deg, rgba(26, 11, 46, 0.16), rgba(26, 11, 46, 0.72)),
        var(--featured-image, linear-gradient(135deg, var(--color-royal-plum), var(--color-soft-magenta))) center/cover;
}
.featured-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(21, 8, 36, 0.34), transparent 56%);
}
.featured-media__fallback {
    min-height: inherit;
    display: grid;
    place-items: center;
    color: var(--accent-gold);
    font-size: clamp(3rem, 7vw, 7rem);
}
.featured-content {
    padding: clamp(32px, 4vw, 52px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.tag {
    display: inline-flex;
    align-self: flex-start;
    border-radius: 999px;
    padding: 7px 13px;
    background: var(--accent-gold);
    color: var(--color-deep-space);
    margin-bottom: 18px;
}
.featured-content h2 {
    margin: 0 0 18px;
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.035em;
}
.featured-content h2 a {
    text-decoration: none;
}
.featured-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 24px;
}
.article-meta {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    color: var(--text-soft);
    font-size: 12px;
}
.article-meta .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-soft);
}
.journal-shell {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px clamp(82px, 9vw, 126px);
    position: relative;
    z-index: 2;
}
.journal-content {
    min-width: 0;
}
.journal-page .toolbar {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}
.journal-page .toolbar-form {
    margin: 0;
}
.journal-page .search-wrap {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    padding: 0 8px 0 18px;
    background: var(--glass);
}
.journal-page .search-wrap i {
    position: static;
    transform: none;
    color: var(--text-soft);
}
.journal-page .search-wrap input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text-main);
    padding: 0;
}
.journal-page .search-wrap input::placeholder {
    color: var(--text-soft);
}
.journal-search-submit {
    min-height: 38px;
    border: 0;
    border-radius: 999px;
    padding: 0 18px;
    background: var(--accent-gold);
    color: var(--color-deep-space);
    font-weight: 800;
    cursor: pointer;
}
.journal-page .result-count {
    color: var(--text-muted);
    font-size: 13px;
    white-space: nowrap;
}
.topic-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--glass-border);
}
.tab {
    border: 1px solid var(--glass-border-strong);
    background: transparent;
    color: var(--text-muted);
    border-radius: 999px;
    padding: 11px 20px;
}
.tab.active {
    background: var(--accent-gold);
    color: var(--color-deep-space);
    border-color: var(--accent-gold);
}
.article-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 26px;
}
.journal-results {
    position: relative;
    min-height: 260px;
}
.journal-loader {
    position: absolute;
    inset: 0;
    z-index: 8;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(21, 8, 36, 0.42), rgba(21, 8, 36, 0.74));
    color: var(--accent-gold);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}
.journal-results.is-loading .journal-loader {
    opacity: 1;
    visibility: visible;
}
.journal-results.is-loading [data-blog-results-inner] {
    opacity: 0.34;
    pointer-events: none;
}
.journal-loader__spinner {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid rgba(234, 216, 184, 0.22);
    border-top-color: var(--accent-gold);
    animation: journalSpin 0.8s linear infinite;
}
@keyframes journalSpin {
    to { transform: rotate(360deg); }
}
.article-card {
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.045));
    backdrop-filter: blur(20px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.article-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-strong);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}
.article-image {
    min-height: 205px;
    display: block;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--tone-a), var(--tone-b));
}
.article-image::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.13);
    right: 22px;
    top: 24px;
    z-index: 1;
}
.article-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(26, 11, 46, 0.5), transparent 55%);
}
.article-image img,
.article-image__fallback {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: grid;
    place-items: center;
    object-fit: cover;
    color: var(--color-deep-space);
    font-size: 3rem;
    transition: transform 0.55s ease;
}
.article-card:hover .article-image img {
    transform: scale(1.05);
}
.article-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 3;
    border-radius: 999px;
    padding: 7px 13px;
    background: rgba(255, 250, 241, 0.92);
    color: #1f1d1a;
}
.article-info {
    padding: 24px;
}
.article-info .article-meta {
    margin-bottom: 14px;
}
.article-info h3 {
    margin: 0 0 13px;
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: -0.02em;
}
.article-info h3 a {
    text-decoration: none;
}
.article-info p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 18px;
}
.article-card:nth-of-type(1) {
    grid-column: span 2;
    grid-row: span 2;
}
.article-card:nth-of-type(1) .article-image {
    min-height: 390px;
}
.article-card:nth-of-type(1) .article-info {
    padding: 32px;
}
.article-card:nth-of-type(1) .article-info h3 {
    font-size: clamp(32px, 3vw, 40px);
    max-width: 620px;
}
.article-card:nth-of-type(4),
.article-card:nth-of-type(7) {
    grid-column: span 2;
}
.article-card:nth-of-type(4) .article-image,
.article-card:nth-of-type(7) .article-image {
    min-height: 260px;
}
.empty {
    grid-column: 1 / -1;
    display: none;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 42px;
    text-align: center;
    color: var(--text-muted);
    background: var(--glass);
}
.empty--visible {
    display: block;
}
.empty i {
    color: var(--accent-gold);
    font-size: 2.3rem;
    margin-bottom: 14px;
}
.empty h2 {
    margin: 0 0 10px;
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3rem);
}
.journal-pagination {
    margin-top: 42px;
}
.news-banner {
    padding: 0 40px clamp(86px, 10vw, 132px);
}
.news-banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 28px;
    align-items: center;
    padding: clamp(30px, 5vw, 62px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    background:
        radial-gradient(circle at 84% 18%, rgba(197, 72, 255, 0.18), transparent 30%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
        rgba(26, 11, 46, 0.28);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(24px);
}
.news-text .eyebrow {
    margin-bottom: 12px;
    color: var(--accent-gold);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.news-text h3 {
    max-width: 760px;
    margin: 0;
    font-family: 'Fraunces', serif;
    font-size: clamp(38px, 5vw, 70px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
}
.news-text h3 em {
    color: var(--accent-gold);
    font-weight: 320;
}
.news-text p {
    max-width: 650px;
    margin: 20px 0 0;
    color: var(--text-muted);
    line-height: 1.7;
}
.news-form {
    display: grid;
    gap: 12px;
}
.news-form input {
    min-height: 54px;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    background: rgba(21, 8, 36, 0.52);
    color: var(--text-main);
    outline: 0;
    padding: 0 20px;
}
.news-form button {
    min-height: 54px;
    border: 0;
    border-radius: 999px;
    background: var(--accent-gold);
    color: var(--color-deep-space);
    font-weight: 800;
    cursor: pointer;
}
.news-form .small {
    color: var(--text-soft);
    font-size: 13px;
}

/* =====================================================
   Blog Detail Page
===================================================== */
.journal-detail-page {
    position: relative;
    isolation: isolate;
}
.journal-detail-page::before {
    content: "JOURNAL";
    position: absolute;
    top: 110px;
    right: -36px;
    z-index: -1;
    color: rgba(255, 255, 255, 0.045);
    font-family: 'Fraunces', serif;
    font-size: clamp(6rem, 15vw, 13rem);
    font-style: italic;
    letter-spacing: -0.04em;
    pointer-events: none;
}
.journal-detail-hero {
    padding: clamp(86px, 10vw, 140px) 40px clamp(40px, 6vw, 78px);
    border-bottom: 1px solid var(--glass-border);
    background:
        radial-gradient(circle at 78% 14%, rgba(197, 72, 255, 0.2), transparent 30%),
        radial-gradient(circle at 10% 92%, rgba(234, 216, 184, 0.1), transparent 30%);
}
.journal-detail-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: clamp(32px, 7vw, 110px);
    align-items: end;
}
.journal-detail-label {
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 18px;
}
.journal-detail-label::before {
    content: "";
    width: 42px;
    height: 1px;
    background: var(--accent-gold);
}
.journal-detail-hero h1 {
    max-width: 1000px;
    margin: 0;
    font-family: 'Fraunces', serif;
    font-size: clamp(54px, 7vw, 108px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.052em;
}
.journal-detail-standfirst {
    max-width: 760px;
    margin: 26px 0 0;
    color: var(--text-muted);
    font-size: clamp(18px, 1.45vw, 23px);
    line-height: 1.7;
}
.journal-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 26px;
    color: var(--text-soft);
}
.journal-detail-meta .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--text-soft);
}
.journal-detail-note {
    padding: 28px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
        rgba(21, 8, 36, 0.45);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(22px) saturate(135%);
}
.journal-detail-note span {
    color: var(--accent-gold);
}
.journal-detail-note p {
    margin: 16px 0 0;
    color: var(--text-muted);
    line-height: 1.7;
}
.journal-detail-feature {
    padding: clamp(34px, 5vw, 64px) 40px 0;
}
.journal-detail-media {
    position: relative;
    overflow: hidden;
    min-height: clamp(340px, 52vw, 680px);
    margin: 0;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(21, 8, 36, 0.45);
    box-shadow: var(--shadow-soft);
}
.journal-detail-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(21, 8, 36, 0.64));
    pointer-events: none;
}
.journal-detail-media img,
.journal-detail-media__fallback {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
}
.journal-detail-media__fallback {
    display: grid;
    place-items: center;
    color: var(--accent-gold);
    font-size: clamp(3rem, 7vw, 7rem);
}
.journal-detail-media figcaption {
    position: absolute;
    left: 28px;
    bottom: 24px;
    z-index: 1;
    padding: 9px 14px;
    border-radius: 999px;
    background: var(--accent-gold);
    color: var(--color-deep-space);
}
.journal-detail-shell {
    padding: clamp(54px, 7vw, 96px) 40px clamp(70px, 10vw, 130px);
}
.journal-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(300px, 0.36fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}
.journal-article {
    min-width: 0;
}
.journal-article__content {
    padding: clamp(30px, 5vw, 70px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
        rgba(21, 8, 36, 0.43);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(22px) saturate(135%);
    color: var(--text-muted);
    font-size: clamp(17px, 1.25vw, 21px);
    line-height: 1.9;
}
.journal-article__content > *:first-child {
    margin-top: 0;
}
.journal-article__content :is(p, ul, ol, blockquote) {
    margin-top: 0;
    margin-bottom: 24px;
    color: var(--text-muted);
}
.journal-article__content :is(h1, h2, h3, h4) {
    margin: 44px 0 16px;
    color: var(--text-main);
    font-family: 'Fraunces', serif;
    font-weight: 520;
    line-height: 1.08;
    letter-spacing: -0.03em;
}
.journal-article__content h2 {
    font-size: clamp(34px, 3.6vw, 58px);
}
.journal-article__content h3 {
    font-size: clamp(28px, 2.6vw, 42px);
}
.journal-article__content :is(a, strong) {
    color: var(--accent-gold);
}
.journal-article__content :is(ul, ol) {
    padding-left: 24px;
}
.journal-article__content blockquote {
    padding: 24px;
    border-left: 2px solid var(--accent-gold);
    background: rgba(234, 216, 184, 0.07);
    border-radius: 0 8px 8px 0;
    color: var(--text-main);
}
.journal-share {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-top: 22px;
    padding: 22px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}
.journal-share p {
    margin: 0;
    color: var(--accent-gold);
}
.journal-share__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.journal-share__links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--glass-border-strong);
    border-radius: 999px;
    color: var(--text-main);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.055);
}
.journal-share__links a:hover {
    background: var(--accent-gold);
    color: var(--color-deep-space);
    border-color: var(--accent-gold);
}
.journal-sidebar {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 18px;
}
.journal-sidebar__card {
    padding: 26px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
        rgba(21, 8, 36, 0.43);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(22px) saturate(135%);
}
.journal-sidebar__card .mono {
    color: var(--accent-gold);
    margin: 0 0 14px;
}
.journal-sidebar__card h2 {
    margin: 0 0 14px;
    font-family: 'Fraunces', serif;
    font-size: 31px;
    font-weight: 560;
    line-height: 1.08;
}
.journal-sidebar__card p:not(.mono) {
    margin: 0 0 22px;
    color: var(--text-muted);
    line-height: 1.7;
}
.journal-sidebar__card--warning div {
    display: flex;
    gap: 12px;
    color: var(--accent-gold);
    line-height: 1.6;
}
.journal-sidebar__card--warning i {
    margin-top: 4px;
}
.journal-topic-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.journal-topic-list span {
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(234, 216, 184, 0.12);
    color: var(--accent-gold);
    font-size: 13px;
}
.journal-related {
    padding: clamp(70px, 9vw, 126px) 40px;
    border-top: 1px solid var(--glass-border);
}
.journal-related__head {
    margin-bottom: clamp(32px, 5vw, 58px);
}
.journal-related__head h2 {
    margin: 0;
    font-family: 'Fraunces', serif;
    font-size: clamp(46px, 6vw, 92px);
    font-weight: 520;
    line-height: 0.98;
    letter-spacing: -0.045em;
}
.journal-related__head h2 em,
.journal-detail-cta h2 em {
    color: var(--accent-gold);
    font-style: italic;
    font-weight: 330;
}
.journal-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.journal-related-card {
    overflow: hidden;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: rgba(21, 8, 36, 0.44);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
}
.journal-related-card__media {
    position: relative;
    display: block;
    min-height: 260px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--color-royal-plum), var(--color-soft-magenta));
}
.journal-related-card__media img,
.journal-related-card__media > span {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: grid;
    place-items: center;
    color: var(--accent-gold);
    font-size: 3rem;
    transition: transform 0.5s ease;
}
.journal-related-card:hover .journal-related-card__media img {
    transform: scale(1.05);
}
.journal-related-card__media em {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--accent-gold);
    color: var(--color-deep-space);
    font-style: normal;
}
.journal-related-card__body {
    padding: 24px;
}
.journal-related-card__body .journal-detail-meta {
    margin-top: 0;
    margin-bottom: 16px;
}
.journal-related-card__body h3 {
    margin: 0 0 12px;
    font-family: 'Fraunces', serif;
    font-size: clamp(25px, 2vw, 34px);
    font-weight: 560;
    line-height: 1.1;
}
.journal-related-card__body h3 a {
    text-decoration: none;
}
.journal-related-card__body p {
    margin: 0 0 18px;
    color: var(--text-muted);
    line-height: 1.7;
}
.read-link {
    color: var(--accent-gold);
    display: inline-flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
}
.journal-detail-cta {
    padding: clamp(70px, 9vw, 126px) 40px;
    border-top: 1px solid var(--glass-border);
}
.journal-detail-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: clamp(30px, 5vw, 64px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background:
        radial-gradient(circle at 86% 18%, rgba(197, 72, 255, 0.2), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
        rgba(21, 8, 36, 0.43);
    box-shadow: var(--shadow-soft);
}
.journal-detail-cta h2 {
    margin: 0;
    max-width: 850px;
    font-family: 'Fraunces', serif;
    font-size: clamp(42px, 5vw, 78px);
    font-weight: 520;
    line-height: 1;
    letter-spacing: -0.04em;
}
.journal-detail-cta p:not(.mono) {
    margin: 20px 0 0;
    max-width: 620px;
    color: var(--text-muted);
    font-size: 18px;
}
@media (max-width: 1060px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }
    .detail-gallery-card {
        position: relative;
        top: auto;
    }
    .related-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .faqs-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
    }
    .about-hero__inner,
    .about-story-grid,
    .about-compliance-card {
        grid-template-columns: 1fr;
    }
    .about-story-aside {
        position: static;
    }
    .about-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .featured-article,
    .news-banner-inner {
        grid-template-columns: 1fr;
    }
    .article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .article-card:nth-of-type(1),
    .article-card:nth-of-type(4),
    .article-card:nth-of-type(7) {
        grid-column: span 1;
        grid-row: span 1;
    }
    .article-card:nth-of-type(1) .article-image,
    .article-card:nth-of-type(4) .article-image,
    .article-card:nth-of-type(7) .article-image {
        min-height: 260px;
    }
    .journal-detail-hero__inner,
    .journal-detail-grid,
    .journal-detail-cta__inner {
        grid-template-columns: 1fr;
    }
    .journal-sidebar {
        position: static;
    }
    .journal-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 760px) {
    .detail-hero,
    .detail-tabs-section,
    .detail-related {
        padding-left: 24px;
        padding-right: 24px;
    }
    .detail-hero {
        padding-top: 42px;
    }
    .detail-price-row,
    .detail-purchase {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
    .detail-price-row {
        display: grid;
    }
    .detail-facts,
    .detail-service-grid {
        grid-template-columns: 1fr;
    }
    .detail-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .detail-related__inner {
        padding: 0 24px;
    }
    .detail-related__head {
        align-items: start;
        flex-direction: column;
        margin-bottom: 34px;
    }
    .detail-related__arrows {
        display: none;
    }
    .related-showcase-grid {
        grid-template-columns: 1fr;
    }
    .related-showcase-card {
        min-height: auto;
    }
    .related-showcase-card__media {
        height: 340px;
    }
    .page-top,
    .contact-section {
        padding-left: 22px;
        padding-right: 22px;
    }
    .page-top--contact {
        padding-top: 54px;
        padding-bottom: 34px;
    }
    .contact-form__row {
        grid-template-columns: 1fr;
    }
    .contact-form__submit {
        width: 100%;
    }
    .faqs-section {
        padding-left: 22px;
        padding-right: 22px;
    }
    .faqs-layout {
        grid-template-columns: 1fr;
    }
    .faqs-sidebar {
        position: static;
    }
    .faq-trigger {
        padding: 18px;
        min-height: 68px;
    }
    .faq-body__inner {
        padding: 0 18px 22px;
    }
    .about-hero,
    .about-story-section,
    .about-promise-section,
    .about-compliance-section,
    .about-cta {
        padding-left: 22px;
        padding-right: 22px;
    }
    .about-hero__visual {
        min-height: 300px;
    }
    .about-values-grid {
        grid-template-columns: 1fr;
    }
    .about-value-card {
        min-height: auto;
    }
    .about-cta__btns .btn {
        width: 100%;
    }
    .journal-hero,
    .feature-strip,
    .journal-shell,
    .news-banner {
        padding-left: 22px;
        padding-right: 22px;
    }
    .journal-hero {
        grid-template-columns: 1fr;
        padding-top: 54px;
    }
    .journal-page .toolbar {
        grid-template-columns: 1fr;
    }
    .article-grid {
        grid-template-columns: 1fr;
    }
    .featured-media {
        min-height: 300px;
    }
    .article-card:nth-of-type(1) .article-info {
        padding: 24px;
    }
    .article-card:nth-of-type(1) .article-info h3 {
        font-size: 30px;
    }
    .news-banner-inner {
        padding: 26px;
    }
    .news-form input,
    .news-form button,
    .journal-search-submit {
        width: 100%;
    }
    .journal-page .search-wrap {
        flex-wrap: wrap;
        padding: 12px 14px;
        border-radius: 18px;
    }
    .journal-page .search-wrap input {
        flex: 1 1 180px;
    }
    .journal-detail-hero,
    .journal-detail-feature,
    .journal-detail-shell,
    .journal-related,
    .journal-detail-cta {
        padding-left: 22px;
        padding-right: 22px;
    }
    .journal-detail-hero {
        padding-top: 54px;
    }
    .journal-detail-media {
        min-height: 330px;
    }
    .journal-article__content {
        padding: 24px;
    }
    .journal-share {
        align-items: flex-start;
        flex-direction: column;
    }
    .journal-related-grid {
        grid-template-columns: 1fr;
    }
    .journal-detail-cta__inner .btn {
        width: 100%;
    }
}
@media (max-width: 520px) {
    .detail-gallery-card,
    .detail-summary {
        border-radius: 8px;
        padding: 18px;
    }
    .detail-gallery-card {
        padding: 0;
    }
    .detail-media,
    .detail-media img,
    .detail-media__fallback {
        min-height: 340px;
    }
    .detail-summary h1 {
        font-size: 44px;
    }
}

/* ----- Customer Account Area ----- */
.account-shell {
    margin: 0;
    background: #fff;
    color: #111827;
    font-family: 'Inter', sans-serif;
}

.account-header {
    border-bottom: 1px solid #ececf1;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 40;
}

.account-header__inner {
    max-width: 1180px;
    margin: 0 auto;
    min-height: 72px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.account-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #111827;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.account-brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.account-nav {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: center;
}

.account-nav a {
    color: #111827;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
}

.account-nav a.is-active {
    border-bottom-color: currentColor;
}

.account-avatar {
    width: 40px;
    height: 40px;
    border: 1px solid #d9dbe4;
    border-radius: 999px;
    background: #fff;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.04);
}

.account-main {
    min-height: calc(100vh - 72px);
    padding: 44px 24px 64px;
}

.account-page__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.account-page__title {
    margin: 0 0 24px;
    font-family: 'Fraunces', serif;
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 500;
    color: #111827;
}

.account-panel {
    background: #fff;
    border: 1px solid #ececf1;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.account-empty-state {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 36px 20px;
}

.account-empty-state__title {
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
}

.account-empty-state__text {
    margin: 0;
    color: #475569;
}

.account-orders-list {
    padding: 12px 0;
}

.account-order {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 24px;
    border-top: 1px solid #f1f2f6;
}

.account-order:first-child {
    border-top: 0;
}

.account-order__number {
    margin: 0 0 4px;
    font-weight: 600;
    color: #111827;
}

.account-order__meta {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
}

.account-order__summary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #111827;
    white-space: nowrap;
}

.account-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f5f3ff;
    color: #6d28d9;
    font-size: 0.82rem;
    font-weight: 600;
}

.account-profile {
    padding: 24px;
    display: grid;
    gap: 16px;
    max-width: 560px;
}

.account-profile__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f2f6;
}

.account-profile__row span {
    color: #64748b;
}

.account-profile__row strong {
    color: #111827;
    text-align: right;
}

.account-profile__btn {
    justify-self: start;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .account-header__inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px 18px;
    }

    .account-nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .account-main {
        padding: 28px 16px 56px;
    }

    .account-order,
    .account-profile__row {
        flex-direction: column;
        align-items: flex-start;
    }

    .account-order__summary,
    .account-profile__row strong {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
    }
}

/* Contact page compact hero override */
.page-top.page-top--contact {
    padding-top: 46px !important;
    padding-bottom: 34px !important;
}

.page-top--contact .breadcrumb {
    margin-bottom: 14px;
}

.page-top--contact .page-top__title {
    font-size: clamp(46px, 5.6vw, 82px);
}

.page-top--contact .page-top__sub {
    margin-top: 16px;
}

.contact-section {
    padding-top: 34px !important;
}

@media (max-width: 760px) {
    .page-top.page-top--contact {
        padding-top: 34px !important;
        padding-bottom: 28px !important;
    }

    .contact-section {
        padding-top: 26px !important;
    }
}
