/* Generated storefront bundle. Edit source CSS files, then run: npm run build:storefront-css */

/* === app.css === */
:root {
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --gold-dark: #a07b2c;
    --gold-glow: rgba(201, 168, 76, 0.18);
    --shadow-soft: 0 4px 40px rgba(60, 40, 10, 0.07), 0 1px 4px rgba(60, 40, 10, 0.04);
    --shadow-strong: 0 16px 64px rgba(60, 40, 10, 0.13), 0 4px 16px rgba(60, 40, 10, 0.07);
    --radius-card: 0;
    --radius-pill: 999px;
    --container: 1320px;
    --transition: 0.5s cubic-bezier(.4, 0, .2, 1);
    --control-height: 2.75rem;
    --control-height-sm: 2.5rem;
    --control-padding-x: 0.85rem;
    --control-font-size: 0.88rem;
    --btn-height: 2.75rem;
    --btn-height-sm: 2.5rem;
    --btn-padding-x: 1.25rem;
    --btn-font-size: 0.68rem;
    --btn-letter-spacing: 0.16em;
}

[data-theme="light"] {
    --bg: #fafaf7;
    --bg2: #f4f1eb;
    --bg3: #ede8df;
    --bg-alt: #f4f1eb;
    --bg-strong: #ede8df;
    --surface: #ffffff;
    --surface2: #f9f7f3;
    --surface-strong: #ffffff;
    --text: #1a1612;
    --text2: #4a4035;
    --text3: #7a7060;
    --text-soft: #4a4035;
    --text-muted: #a09080;
    --border: rgba(180, 155, 100, 0.2);
    --border2: rgba(180, 155, 100, 0.35);
    --border-strong: rgba(180, 155, 100, 0.35);
    --overlay: linear-gradient(125deg, rgba(250, 250, 247, 0.94) 0%, rgba(250, 250, 247, 0.62) 46%, rgba(250, 250, 247, 0.1) 100%);
    --hero-overlay: linear-gradient(160deg, rgba(250, 250, 247, 0.85) 0%, rgba(250, 250, 247, 0.35) 60%, rgba(250, 250, 247, 0.05) 100%);
    --nav-bg: rgba(250, 250, 247, 0.92);
    --card-bg: #ffffff;
    --card-shadow: 0 4px 40px rgba(60, 40, 10, 0.07), 0 1px 4px rgba(60, 40, 10, 0.04);
    --card-hover-shadow: 0 16px 64px rgba(60, 40, 10, 0.13), 0 4px 16px rgba(60, 40, 10, 0.07);
    --footer-bg: #1a1612;
    --footer-text: #f2e8d0;
}

[data-theme="dark"] {
    --bg: #0c0b09;
    --bg2: #111009;
    --bg3: #18160e;
    --bg-alt: #111009;
    --bg-strong: #18160e;
    --surface: #161410;
    --surface2: #1e1c16;
    --surface-strong: #161410;
    --text: #f0e8d5;
    --text2: #d4c9a8;
    --text3: #9a8f70;
    --text-soft: #d4c9a8;
    --text-muted: #6a6050;
    --border: rgba(201, 168, 76, 0.15);
    --border2: rgba(201, 168, 76, 0.28);
    --border-strong: rgba(201, 168, 76, 0.28);
    --overlay: linear-gradient(125deg, rgba(12, 11, 9, 0.95) 0%, rgba(12, 11, 9, 0.66) 46%, rgba(12, 11, 9, 0.14) 100%);
    --hero-overlay: linear-gradient(160deg, rgba(12, 11, 9, 0.92) 0%, rgba(12, 11, 9, 0.55) 55%, rgba(12, 11, 9, 0.1) 100%);
    --nav-bg: rgba(12, 11, 9, 0.94);
    --card-bg: #161410;
    --card-shadow: 0 4px 40px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3);
    --card-hover-shadow: 0 16px 64px rgba(0, 0, 0, 0.6), 0 4px 16px rgba(201, 168, 76, 0.08);
    --footer-bg: #060504;
    --footer-text: #f0e8d5;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Jost", sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: background 0.6s, color 0.6s;
    overflow-x: hidden;
}

a,
button,
input {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

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

main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

main > .section:last-of-type {
    flex: 1 0 auto;
}

::selection {
    background: var(--gold);
    color: #0c0b09;
}

::-webkit-scrollbar {
    width: 0.45rem;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: var(--radius-pill);
}

/* === components.css === */
.site-header-stack {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--nav-bg, rgba(12, 11, 9, 0.94));
}

.announcement {
    --announcement-bg: var(--gold);
    --announcement-text: #0a0908;
    --announcement-border: rgba(10, 9, 8, 0.14);
    background: var(--announcement-bg);
    color: var(--announcement-text);
    text-align: center;
    padding: 0.34rem 1rem;
    min-height: 1.35rem;
    font-family: "Jost", sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--announcement-border);
    overflow: hidden;
    max-height: 2.75rem;
    opacity: 1;
    transition:
        max-height 0.34s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.28s ease,
        padding 0.34s cubic-bezier(0.4, 0, 0.2, 1),
        min-height 0.34s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.28s ease;
}

[data-theme="light"] .announcement {
    --announcement-bg: #1a1612;
    --announcement-text: var(--gold-light);
    --announcement-border: rgba(201, 168, 76, 0.22);
}

.site-header-stack.is-announcement-hidden .announcement {
    max-height: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

.site-header-stack.is-announcement-hidden .announcement-inner {
    min-height: 0;
    padding: 0;
}

.announcement-text--short {
    display: none;
}

.nav-shell {
    position: relative;
    z-index: 1;
}

.nav {
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.35s ease, background var(--transition);
}

body.home-page .site-header-stack {
    position: fixed;
    inset: 0 0 auto 0;
    background: #070707;
}

body.home-page .nav-shell {
    position: relative;
}

body.home-page .nav {
    background: linear-gradient(180deg, rgba(7, 7, 7, 0.56) 0%, rgba(7, 7, 7, 0.22) 100%);
    border-bottom-color: rgba(232, 213, 163, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

body.home-page .nav-shell.nav-shell-scrolled .nav {
    background: rgba(11, 10, 9, 0.82);
    border-bottom-color: rgba(232, 213, 163, 0.16);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
}

body.home-page .nav-left a,
body.home-page .nav-right a,
body.home-page .nav-text-button,
body.home-page .nav-logo,
body.home-page .nav-bag-link,
body.home-page .theme-toggle {
    color: #f6efdf;
    text-shadow: none;
}

body.home-page .nav-bag-link {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(233, 216, 177, 0.22);
}

body.home-page .nav-shell.nav-shell-scrolled .nav-bag-link {
    background: rgba(255, 255, 255, 0.03);
}

[data-theme="light"] body.home-page .nav {
    background: linear-gradient(180deg, rgba(255, 250, 238, 0.74) 0%, rgba(255, 250, 238, 0.34) 100%);
    border-bottom-color: rgba(157, 119, 42, 0.18);
    box-shadow: 0 18px 40px rgba(108, 78, 30, 0.1);
}

[data-theme="light"] body.home-page .nav-shell.nav-shell-scrolled .nav {
    background: rgba(255, 250, 238, 0.88);
    border-bottom-color: rgba(157, 119, 42, 0.24);
    box-shadow: 0 22px 52px rgba(108, 78, 30, 0.14);
}

[data-theme="light"] body.home-page .nav-shell .nav-left a,
[data-theme="light"] body.home-page .nav-shell .nav-right a,
[data-theme="light"] body.home-page .nav-shell .nav-text-button,
[data-theme="light"] body.home-page .nav-shell .nav-logo,
[data-theme="light"] body.home-page .nav-shell .nav-bag-link,
[data-theme="light"] body.home-page .nav-shell .theme-toggle {
    color: #2c2419;
}

[data-theme="light"] body.home-page .nav-shell .nav-bag-link {
    background: rgba(255, 255, 255, 0.58);
    border-color: rgba(157, 119, 42, 0.28);
}

[data-theme="light"] body.home-page .nav-shell.nav-shell-scrolled .nav-bag-link {
    background: rgba(255, 255, 255, 0.74);
}

[data-theme="dark"] body.home-page .nav {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.28) 0%, rgba(10, 10, 10, 0.14) 100%);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] body.home-page .nav-shell.nav-shell-scrolled .nav {
    background: rgba(14, 13, 11, 0.74);
    border-bottom-color: rgba(232, 213, 163, 0.16);
    box-shadow: 0 22px 56px rgba(3, 3, 3, 0.22);
}

[data-theme="dark"] body.home-page .nav-shell .nav-left a,
[data-theme="dark"] body.home-page .nav-shell .nav-right a,
[data-theme="dark"] body.home-page .nav-shell .nav-text-button,
[data-theme="dark"] body.home-page .nav-shell .nav-logo,
[data-theme="dark"] body.home-page .nav-shell .nav-bag-link,
[data-theme="dark"] body.home-page .nav-shell .theme-toggle {
    color: #f6efdf;
}

[data-theme="dark"] body.home-page .nav-shell .nav-bag-link {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(233, 216, 177, 0.25);
}

[data-theme="dark"] body.home-page .nav-shell.nav-shell-scrolled .nav-bag-link {
    background: rgba(255, 255, 255, 0.02);
}

[data-theme="light"] .public-nav-drawer {
    background:
        linear-gradient(180deg, #fffaf0 0%, #f7f1e4 100%);
    border-left-color: rgba(157, 119, 42, 0.22);
    color: #2c2419;
    box-shadow: -18px 0 48px rgba(108, 78, 30, 0.14);
}

[data-theme="light"] .public-nav-drawer .public-nav-close {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(157, 119, 42, 0.22);
    color: #2c2419;
}

[data-theme="light"] body.home-page .public-nav-drawer {
    background:
        linear-gradient(180deg, #fffaf0 0%, #f7f1e4 100%);
    border-left-color: rgba(157, 119, 42, 0.22);
    box-shadow: -18px 0 48px rgba(108, 78, 30, 0.14);
}

[data-theme="dark"] body.home-page .public-nav-drawer {
    background:
        linear-gradient(180deg, #16130f 0%, #100e0c 52%, #0c0b09 100%);
    border-left-color: rgba(201, 168, 76, 0.18);
    box-shadow: -22px 0 56px rgba(0, 0, 0, 0.42);
}

body.home-page .nav-inner {
    min-height: 2.72rem;
    padding-block: 0.24rem;
}

body.home-page .nav-logo-image {
    width: 9.55rem;
}

.nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    min-height: 2.72rem;
    padding: 0.24rem 1.8rem;
    gap: 0.8rem;
}

.nav-logo-image {
    display: block;
    width: 9.55rem;
    max-width: 100%;
    max-height: 2.85rem;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1480px) {
    .nav-inner,
    body.home-page .nav-inner {
        min-height: 2.42rem;
        padding: 0.22rem 1.15rem;
        gap: 0.8rem;
    }

    .nav-left,
    .nav-right,
    .nav-right-links,
    .nav-tools,
    body.home-page .nav-left,
    body.home-page .nav-right,
    body.home-page .nav-right-links,
    body.home-page .nav-tools {
        gap: 0.75rem;
    }

    .nav-left a,
    .nav-right a,
    .nav-text-button,
    body.home-page .nav-left a,
    body.home-page .nav-right a,
    body.home-page .nav-text-button {
        font-size: 0.61rem;
        letter-spacing: 0.14em;
    }

    .nav-logo-image,
    body.home-page .nav-logo-image {
        width: 7.9rem;
        max-height: 2.55rem;
    }
}

@media (max-width: 1240px) {
    .nav-inner,
    body.home-page .nav-inner {
        min-height: 2.35rem;
        padding: 0.2rem 1rem;
    }

    .nav-logo-image,
    body.home-page .nav-logo-image {
        width: 7.1rem;
        max-height: 2.35rem;
    }

    .nav-left,
    .nav-right,
    .nav-right-links,
    .nav-tools,
    body.home-page .nav-left,
    body.home-page .nav-right,
    body.home-page .nav-right-links,
    body.home-page .nav-tools {
        gap: 0.58rem;
    }
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-right {
    justify-content: flex-end;
}

.nav-right-links,
.nav-tools {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-left a,
.nav-right a,
.nav-text-button {
    font-family: "Cinzel", serif;
    font-size: 0.61rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-soft);
    transition: color var(--transition);
    position: relative;
}

.nav-bag-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgba(201, 168, 76, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.nav-bag-link::after {
    display: none;
}

.nav-bag-link:hover {
    color: var(--gold);
    border-color: rgba(201, 168, 76, 0.48);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.16);
    transform: translateY(-1px);
}

.nav-bag-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.05rem;
    height: 1.05rem;
}

.nav-bag-icon svg {
    width: 100%;
    height: 100%;
}

.nav-bag-badge {
    position: absolute;
    top: -0.22rem;
    right: -0.22rem;
    min-width: 1.08rem;
    height: 1.08rem;
    padding: 0 0.28rem;
    border-radius: 999px;
    background: #d43b3b;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Jost", sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    box-shadow: 0 0 0 2px var(--nav-bg);
}

.nav-bag-badge.is-hidden {
    display: none;
}

.nav-left a::after,
.nav-right a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.22rem;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-left a:hover,
.nav-right a:hover,
.nav-text-button:hover,
.footer-links a:hover,
.footer-legal a:hover {
    color: var(--gold);
}

.nav-left a:hover::after,
.nav-right a:hover::after {
    width: 100%;
}

.nav-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    text-align: center;
    line-height: 1;
    flex-shrink: 0;
}

.nav-logo-wordmark {
    font-family: "Cinzel", serif;
    font-size: 1.28rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    color: var(--text);
}

.site-logo-pair {
    position: relative;
    display: inline-grid;
    place-items: center;
}

.site-logo-pair .site-logo-image {
    grid-area: 1 / 1;
}

.site-logo-light {
    display: none;
}

.site-logo-dark {
    display: none;
}

[data-theme="light"] .site-logo-light {
    display: block;
}

[data-theme="dark"] .site-logo-dark {
    display: block;
}

.footer-logo .nav-logo-wordmark {
    color: var(--footer-text);
}

.nav-logo small {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.44rem;
    font-weight: 400;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--text3);
}

.footer-logo small {
    color: rgba(240, 232, 213, 0.72);
}

.theme-toggle {
    --toggle-padding-x: 0.22rem;
    --toggle-padding-y: 0.14rem;
    --toggle-thumb-size: 1.54rem;
    --toggle-thumb-offset: 0.34rem;
    --toggle-thumb-travel: 1.82rem;
    width: 4.1rem;
    height: 1.88rem;
    padding: var(--toggle-padding-y) var(--toggle-padding-x);
    border-radius: var(--radius-pill);
    border: 1px solid var(--border2);
    background: var(--surface2);
    color: var(--text);
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.nav-tools {
    justify-content: flex-end;
}

.toggle-track {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.toggle-slot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.18);
}

.toggle-icon {
    width: 0.88rem;
    height: 0.88rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    opacity: 0.76;
    transition: color 0.35s ease, opacity 0.35s ease;
}

.toggle-icon svg {
    width: 100%;
    height: 100%;
}

[data-theme="dark"] .toggle-icon {
    color: var(--gold-light);
}

[data-theme="light"] .toggle-icon-sun,
[data-theme="dark"] .toggle-icon-moon {
    opacity: 1;
}

.toggle-thumb {
    position: absolute;
    top: 50%;
    left: var(--toggle-thumb-offset);
    width: var(--toggle-thumb-size);
    height: var(--toggle-thumb-size);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s ease, border-color 0.35s ease;
}

[data-theme="dark"] .theme-toggle {
    background: #0e0d0a;
    border-color: rgba(201, 168, 76, 0.35);
}

[data-theme="dark"] .toggle-thumb {
    transform: translate(var(--toggle-thumb-travel), -50%);
    background: linear-gradient(135deg, #2a2924, #050505);
    border: 1px solid var(--gold-dark);
}

.public-nav-toggle,
.public-nav-close {
    width: 2.85rem;
    height: 2.85rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: var(--surface);
    color: var(--gold);
    display: none;
    place-items: center;
}

.public-nav-toggle {
    gap: 0.22rem;
    padding: 0.68rem;
}

.public-nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: currentColor;
}

.public-nav-close {
    position: relative;
}

.public-nav-close span {
    position: absolute;
    width: 0.95rem;
    height: 1.5px;
    background: currentColor;
}

.public-nav-close span:first-child {
    transform: rotate(45deg);
}

.public-nav-close span:last-child {
    transform: rotate(-45deg);
}

.public-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 6, 0.52);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    z-index: 1090;
}

.public-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(26rem, 100vw);
    padding: 0.95rem 1.05rem 1.2rem;
    border-left: 1px solid rgba(201, 168, 76, 0.18);
    border-top-left-radius: 1.25rem;
    border-bottom-left-radius: 1.25rem;
    background:
        linear-gradient(180deg, #16130f 0%, #100e0c 52%, #0c0b09 100%);
    color: #f3ead8;
    backdrop-filter: blur(18px);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 1100;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 0.85rem;
    box-shadow: -22px 0 56px rgba(0, 0, 0, 0.42);
}

.public-nav-drawer-head {
    display: grid;
    grid-template-columns: 2.4rem minmax(0, 1fr) 2.4rem;
    align-items: center;
    gap: 0.5rem;
}

.public-nav-drawer-logo {
    grid-column: 2;
    justify-self: center;
    align-items: center;
}

.public-nav-drawer-logo .nav-logo-image {
    width: min(8.8rem, 100%);
}

.public-nav-drawer-body {
    min-height: 0;
    overflow-y: auto;
    padding-right: 0.15rem;
}

.public-nav-drawer-links {
    display: grid;
    gap: 0;
}

.public-nav-drawer-links a,
.public-nav-drawer-button {
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.public-nav-bag-count {
    color: var(--gold);
}

.public-nav-drawer-links a,
.public-nav-drawer-button {
    min-height: 2.9rem;
    padding: 0.78rem 0;
    border: none;
    border-bottom: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    display: flex;
    align-items: center;
    border-radius: 0;
    font-size: 0.78rem;
}

.public-nav-drawer-links a:hover,
.public-nav-drawer-button:hover {
    color: var(--gold);
    border-color: rgba(201, 168, 76, 0.35);
    padding-left: 0.35rem;
    border-left: 2px solid rgba(201, 168, 76, 0.55);
}

.public-nav-drawer .public-nav-close {
    grid-column: 3;
    justify-self: end;
    display: grid;
    width: 2.35rem;
    height: 2.35rem;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(233, 216, 177, 0.22);
    color: #f6efdf;
}

[data-theme="dark"] body.home-page .public-nav-drawer .public-nav-drawer-links a,
[data-theme="dark"] body.home-page .public-nav-drawer .public-nav-drawer-button {
    color: #f0e8d5;
}

[data-theme="dark"] body.home-page .public-nav-drawer .public-nav-close {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(233, 216, 177, 0.2);
    color: #f6efdf;
}

.public-nav-drawer-form {
    display: block;
}

.public-nav-drawer-button {
    width: 100%;
    justify-content: flex-start;
}

body.public-nav-open {
    overflow: hidden;
}

body.public-nav-open .public-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
}

body.public-nav-open .public-nav-drawer {
    transform: translateX(0);
}

.btn-primary,
.btn-outline,
.btn-danger,
.btn-dark,
.product-cta,
.newsletter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: var(--btn-height);
    padding: 0.55rem var(--btn-padding-x);
    font-family: "Cinzel", serif;
    font-size: var(--btn-font-size);
    font-weight: 600;
    letter-spacing: var(--btn-letter-spacing);
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.btn-primary,
.btn-danger,
.product-cta,
.newsletter-btn {
    background: var(--gold);
    color: #0c0b09;
    border: none;
}

.btn-primary::before,
.btn-danger::before,
.product-cta::before,
.newsletter-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-primary:hover::before,
.btn-danger:hover::before,
.product-cta:hover::before,
.newsletter-btn:hover::before {
    transform: translateX(0);
}

.btn-primary:hover,
.btn-danger:hover,
.product-cta:hover,
.newsletter-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
}

.btn-danger {
    background: color-mix(in srgb, #922f2f 82%, var(--surface-strong));
    color: #fff4f4;
}

.btn-danger:hover {
    background: color-mix(in srgb, #7d2222 88%, var(--surface-strong));
    box-shadow: 0 8px 24px rgba(122, 28, 28, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border2);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-dark {
    background: #0c0b09;
    color: #f0ead8;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-dark:hover {
    background: #15120d;
    border-color: var(--gold);
    color: var(--gold-light);
}

.btn-sm {
    min-height: 2.35rem;
    padding: 0.45rem 0.95rem;
    font-size: 0.62rem;
}

.btn-icon {
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-icon svg {
    width: 100%;
    height: 100%;
}

.custom-select {
    position: relative;
    z-index: 0;
    width: 100%;
    isolation: isolate;
}

.custom-select.is-open {
    z-index: 130;
}

.custom-select-native {
    display: none !important;
}

.custom-select-trigger {
    width: 100%;
    min-height: var(--control-height);
    padding: 0.55rem var(--control-padding-x);
    border: 1px solid var(--border2);
    background: var(--surface2);
    color: var(--text);
    font-size: var(--control-font-size);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.custom-select.is-open .custom-select-trigger,
.custom-select-trigger:focus-visible {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.custom-select.is-disabled .custom-select-trigger {
    opacity: 0.65;
    cursor: not-allowed;
}

.custom-select-value {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-select-chevron {
    width: 0.7rem;
    height: 0.7rem;
    flex-shrink: 0;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    transform: rotate(45deg) translateY(-10%);
    transition: transform 0.25s ease;
}

.custom-select.is-open .custom-select-chevron {
    transform: rotate(-135deg) translateY(-8%);
}

.custom-select-menu {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    z-index: 120;
    display: grid;
    gap: 0.2rem;
    max-height: 16rem;
    padding: 0.45rem;
    overflow-y: auto;
    border: 1px solid var(--border2);
    background: var(--surface);
    box-shadow: var(--card-hover-shadow);
    border-radius: 1rem;
}

.custom-select-search {
    width: 100%;
    min-height: 2.5rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--border2);
    border-radius: 0.85rem;
    background: var(--surface2);
    color: var(--text);
    font-size: var(--control-font-size);
}

.custom-select-search:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.custom-select-no-results {
    padding: 0.75rem;
    border-radius: 0.85rem;
    background: rgba(217, 120, 120, 0.08);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.custom-select-menu[hidden] {
    display: none;
}

.custom-select.menu-up .custom-select-menu {
    top: auto;
    bottom: calc(100% + 0.45rem);
}

.custom-select-option {
    width: 100%;
    min-height: 2.35rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text);
    text-align: left;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.custom-select-option:hover,
.custom-select-option.is-active,
.custom-select-option:focus-visible {
    outline: none;
    border-color: rgba(201, 168, 76, 0.45);
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold);
}

.custom-select-option.is-selected {
    border-color: rgba(201, 168, 76, 0.28);
    background: rgba(201, 168, 76, 0.14);
    color: var(--gold);
}

.custom-select-option:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.custom-select.has-error .custom-select-trigger {
    border-color: rgba(217, 120, 120, 0.6);
}

.inline-form {
    display: inline-flex;
    align-items: center;
}

.nav-text-button,
.text-link-button {
    border: none;
    background: transparent;
    padding: 0;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.footer {
    --footer-gold: #e2c372;
    --footer-gold-soft: rgba(226, 195, 114, 0.82);
    --footer-ink: rgba(240, 232, 213, 0.76);
    --footer-line: rgba(201, 168, 76, 0.18);
    background: var(--footer-bg);
    color: #f0ead8;
    padding: 3rem 0 1.4rem;
}

.footer-shell {
    display: grid;
    gap: 1.75rem;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(14rem, 1.15fr) minmax(0, 2fr);
    gap: 2.5rem 3rem;
    align-items: start;
}

.footer-brand {
    display: grid;
    gap: 0.85rem;
    max-width: 22rem;
}

.footer-copytext {
    color: var(--footer-ink);
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 2rem;
    align-items: start;
}

.footer-col {
    display: grid;
    gap: 0.65rem;
    align-content: start;
}

.footer-col h4 {
    margin: 0;
    font-family: "Cinzel", serif;
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--footer-text);
}

.footer-links {
    display: grid;
    gap: 0.4rem;
}

.footer-links a,
.footer-legal a,
.footer-meta-stack,
.footer-meta-stack a {
    color: var(--footer-ink);
    line-height: 1.4;
    font-size: 0.88rem;
}

.footer-links a:hover,
.footer-meta a:hover,
.footer-legal a:hover {
    color: var(--footer-gold);
}

.footer-meta-stack {
    display: grid;
    gap: 0.3rem;
}

.footer-meta-stack p,
.footer-meta-stack a {
    margin: 0;
}

.footer-address {
    max-width: 16rem;
}

.footer-social {
    display: flex;
    gap: 0.55rem;
}

.social-btn {
    width: 2.2rem;
    height: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.28);
    color: var(--footer-text);
    transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.social-btn svg {
    width: 0.95rem;
    height: 0.95rem;
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-1px);
}

.footer-founders {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.55rem 0.85rem;
    padding: 0.7rem 0.5rem;
    border-top: 1px solid var(--footer-line);
    border-bottom: 1px solid var(--footer-line);
    text-align: center;
}

.footer-owners-label {
    margin: 0;
    font-family: "Cinzel", serif;
    font-size: 0.52rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--footer-gold-soft);
    align-self: center;
}

.footer-signatures {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.35rem 0.65rem;
}

.footer-signature {
    font-family: "Great Vibes", "Cormorant Garamond", cursive;
    font-size: clamp(1.25rem, 1.6vw, 1.55rem);
    line-height: 1;
    color: var(--footer-gold);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.28);
}

.footer-signatures-mark {
    width: 0.22rem;
    height: 0.22rem;
    margin-bottom: 0.15rem;
    border: 1px solid rgba(226, 195, 114, 0.65);
    background: linear-gradient(135deg, #f3e2b0 0%, #c9a84c 55%, #8a6a24 100%);
    transform: rotate(45deg);
    flex: 0 0 auto;
}

.footer-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.25rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.95rem;
}

.footer-legal a {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}

.footer-copyright {
    margin: 0;
    color: rgba(240, 232, 213, 0.55);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
}

@media (max-width: 1100px) {
    .footer {
        padding: 2.5rem 0 1.3rem;
    }

    .footer-shell {
        gap: 1.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .footer-brand {
        max-width: 28rem;
    }

    .footer-nav {
        gap: 1.35rem 1.5rem;
    }

    .footer-founders {
        padding: 0.65rem 0.5rem;
        gap: 0.45rem 0.7rem;
    }
}

@media (max-width: 980px) {
    .nav-inner,
    body.home-page .nav-inner {
        grid-template-columns: auto 1fr auto;
        min-height: 2.7rem;
        padding: 0.28rem 0.8rem;
        gap: 0.58rem;
    }

    .nav-left,
    .nav-right-links {
        display: none;
    }

    .nav-logo {
        justify-self: center;
    }

    .nav-logo-image,
    body.home-page .nav-logo-image {
        width: min(7.4rem, 40vw);
        max-height: 2.45rem;
    }

    .nav-right {
        width: 100%;
    }

    .nav-tools {
        margin-left: auto;
        gap: 0.22rem;
    }

    .nav-tools > .theme-toggle {
        display: inline-flex;
        --toggle-padding-x: 0.16rem;
        --toggle-padding-y: 0.12rem;
        --toggle-thumb-size: 1.2rem;
        --toggle-thumb-offset: 0.2rem;
        --toggle-thumb-travel: 1.32rem;
        width: 2.85rem;
        height: 1.55rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .nav-tools > .theme-toggle .toggle-icon {
        width: 0.76rem;
        height: 0.76rem;
    }

    .nav-bag-link {
        width: 2.12rem;
        height: 2.12rem;
    }

    .nav-bag-icon {
        width: 1.18rem;
        height: 1.18rem;
    }

    .public-nav-toggle {
        display: inline-grid;
        width: 2.2rem;
        height: 2.2rem;
        padding: 0.44rem;
        border-radius: 0.55rem;
        gap: 0.18rem;
    }

    .public-nav-toggle span {
        height: 1.25px;
    }
}

@media (max-width: 720px) {
    .announcement {
        font-size: 0.54rem;
        letter-spacing: 0.1em;
        line-height: 1.35;
        padding: 0.28rem 0.65rem;
        max-height: 3.25rem;
    }

    .announcement-text--full {
        display: none;
    }

    .announcement-text--short {
        display: inline;
    }

    .nav-inner {
        padding-inline: 0.75rem;
        min-height: 2.65rem;
    }

    .nav-logo-image {
        width: min(6.6rem, 38vw);
        max-height: 2.35rem;
    }

    .theme-toggle {
        --toggle-thumb-size: 1.18rem;
        --toggle-thumb-offset: 0.2rem;
        --toggle-thumb-travel: 1.28rem;
        width: 2.85rem;
        height: 1.5rem;
    }

    .nav-tools > .theme-toggle {
        --toggle-thumb-size: 1.18rem;
        --toggle-thumb-offset: 0.2rem;
        --toggle-thumb-travel: 1.28rem;
        width: 2.85rem;
        height: 1.5rem;
    }

    .toggle-thumb {
        width: var(--toggle-thumb-size);
        height: var(--toggle-thumb-size);
    }

    [data-theme="dark"] .toggle-thumb {
        transform: translate(var(--toggle-thumb-travel), -50%);
    }

    .public-nav-toggle,
    .public-nav-close {
        width: 2.2rem;
        height: 2.2rem;
        border-radius: 0.55rem;
    }

    .public-nav-toggle {
        padding: 0.44rem;
    }

    .public-nav-drawer-links a,
    .public-nav-drawer-button {
        min-height: 2.55rem;
        padding: 0.62rem 0;
        font-size: 0.72rem;
        letter-spacing: 0.13em;
    }

    .footer {
        padding: 2rem 0 1.2rem;
    }

    .footer-shell {
        gap: 1.25rem;
    }

    .footer-main {
        gap: 1.35rem;
    }

    .footer-brand {
        gap: 0.65rem;
        max-width: none;
        text-align: center;
        justify-items: center;
    }

    .footer-copytext {
        max-width: 22rem;
        font-size: 0.84rem;
        line-height: 1.5;
    }

    .footer-social {
        justify-content: center;
    }

    .social-btn {
        width: 2.1rem;
        height: 2.1rem;
    }

    .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 1.15rem 1.25rem;
    }

    .footer-meta {
        grid-column: 1 / -1;
        padding-top: 0.85rem;
        border-top: 1px solid var(--footer-line);
    }

    .footer-col {
        gap: 0.4rem;
    }

    .footer-col h4 {
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

    .footer-links {
        gap: 0.28rem;
    }

    .footer-links a,
    .footer-legal a,
    .footer-meta-stack,
    .footer-meta-stack a {
        font-size: 0.82rem;
    }

    .footer-founders {
        padding: 0.55rem 0.25rem;
        gap: 0.35rem 0.55rem;
    }

    .footer-owners-label {
        width: 100%;
        font-size: 0.5rem;
    }

    .footer-signature {
        font-size: 1.3rem;
    }

    .footer-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.65rem;
    }

    .footer-legal {
        justify-content: center;
        gap: 0.2rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .announcement {
        font-size: 0.5rem;
        letter-spacing: 0.08em;
        padding: 0.26rem 0.5rem;
    }

    .nav-inner {
        padding-inline: 0.62rem;
        gap: 0.4rem;
        min-height: 2.6rem;
    }

    .nav-logo-image,
    body.home-page .nav-logo-image {
        width: min(6.15rem, 34vw);
        max-height: 2.28rem;
    }

    .nav-tools {
        gap: 0.2rem;
    }

    .footer {
        padding: 1.75rem 0 1.05rem;
    }

    .footer-shell {
        gap: 1.1rem;
    }

    .footer-copytext {
        font-size: 0.8rem;
    }

    .footer-nav {
        gap: 1rem;
    }

    .footer-col h4 {
        font-size: 0.64rem;
    }

    .footer-links a,
    .footer-legal a,
    .footer-meta-stack,
    .footer-meta-stack a {
        font-size: 0.78rem;
    }

    .footer-signature {
        font-size: 1.2rem;
    }

    .footer-legal a {
        font-size: 0.72rem;
    }
}

/* Shared tooltip (public + admin) */
.moonera-tooltip {
    position: fixed;
    z-index: 4000;
    max-width: min(22rem, calc(100vw - 1.5rem));
    padding: 0.65rem 0.8rem;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 0.7rem;
    background: rgba(12, 11, 9, 0.96);
    color: #f6f0e3;
    font-family: "Jost", sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.01em;
    text-align: left;
    white-space: normal;
    box-shadow: 0 12px 28px rgba(12, 11, 9, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0.2rem);
    transition: opacity 0.14s ease, transform 0.14s ease, visibility 0.14s ease;
}

.moonera-tooltip.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.moonera-tooltip[data-placement="right"] {
    transform: translateX(-0.2rem);
}

.moonera-tooltip[data-placement="right"].is-visible {
    transform: translateX(0);
}

.moonera-tooltip[data-placement="left"] {
    transform: translateX(0.2rem);
}

.moonera-tooltip[data-placement="left"].is-visible {
    transform: translateX(0);
}

.moonera-tooltip[data-placement="bottom"] {
    transform: translateY(-0.2rem);
}

.moonera-tooltip[data-placement="bottom"].is-visible {
    transform: translateY(0);
}

.moonera-info-tip {
    position: relative;
    flex: 0 0 auto;
    width: 1.55rem;
    height: 1.55rem;
    display: inline-grid;
    place-items: center;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(201, 168, 76, 0.42);
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold-dark, #a07b2c);
    cursor: help;
}

.moonera-info-tip svg {
    width: 0.9rem;
    height: 0.9rem;
}

.moonera-info-tip:focus-visible {
    outline: 2px solid rgba(201, 168, 76, 0.55);
    outline-offset: 2px;
}

/* === header-nav.css === */
/* Redesigned storefront header (mockup match) — keeps existing nav-row heights */

.announcement {
    --announcement-bg: #14110e;
    --announcement-text: var(--gold-light, #e8d5a3);
    --announcement-border: rgba(201, 168, 76, 0.18);
    text-align: left;
    padding: 0;
    min-height: 1.35rem;
    max-height: 2.75rem;
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0.34rem 1.8rem;
    min-height: 1.35rem;
}

.announcement-promos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.35rem;
    flex-wrap: wrap;
}

.announcement-promo {
    font-family: "Jost", sans-serif;
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--announcement-text);
    white-space: nowrap;
}

.nav-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
}

.nav-logo {
    justify-self: start;
}

.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    min-width: 0;
    flex-wrap: nowrap;
}

.nav-item {
    position: relative;
}

.nav-link,
.nav-link--trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 0;
    background: transparent;
    color: inherit;
    font-family: "Jost", sans-serif;
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.35rem 0;
    cursor: pointer;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link--trigger:hover,
.nav-link--trigger[aria-expanded="true"] {
    color: var(--gold);
}

.nav-chevron {
    width: 0.35rem;
    height: 0.35rem;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0.7;
}

.nav-badge-new {
    display: inline-grid;
    place-items: center;
    min-height: 0.95rem;
    padding: 0 0.28rem;
    border-radius: 0.15rem;
    background: var(--gold);
    color: #0c0b09;
    font-size: 0.48rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
}

.nav-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
}

.nav-icon-btn {
    position: relative;
    width: 2.15rem;
    height: 2.15rem;
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-icon-btn svg {
    width: 1.15rem;
    height: 1.15rem;
    display: block;
}

.nav-icon-btn:hover {
    color: var(--gold);
}

.nav-tool-badge,
.nav-bag-badge {
    position: absolute;
    top: 0.12rem;
    right: 0.05rem;
    min-width: 0.95rem;
    height: 0.95rem;
    padding: 0 0.2rem;
    border-radius: 999px;
    background: var(--gold);
    color: #0c0b09;
    font-size: 0.55rem;
    font-weight: 600;
    line-height: 0.95rem;
    text-align: center;
}

.nav-tool-badge.is-hidden,
.nav-bag-badge.is-hidden {
    display: none;
}

.nav-bag-link {
    background: transparent !important;
    border: 0 !important;
}

/* Mega menu */
.nav-mega,
.nav-dropdown,
.nav-coming-soon {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    z-index: 40;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-strong);
}

.nav-mega {
    left: 50%;
    transform: translateX(-18%);
    width: min(62rem, calc(100vw - 2.5rem));
    padding: 1.25rem;
}

.nav-mega-grid {
    display: grid;
    grid-template-columns: 0.9fr 0.95fr 1fr 0.95fr;
    gap: 1rem;
    min-height: 16rem;
}

.nav-mega-heading {
    margin: 0 0 0.75rem;
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text3, var(--text-soft));
}

.nav-mega-list,
.nav-mega-collections,
.nav-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.15rem;
}

.nav-mega-list a,
.nav-dropdown-list a,
.nav-mega-cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text);
    text-align: left;
    padding: 0.55rem 0.65rem;
    font-family: "Jost", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    cursor: pointer;
    text-decoration: none;
}

.nav-mega-list a:hover,
.nav-dropdown-list a:hover,
.nav-mega-cat:hover,
.nav-mega-cat.is-active,
.nav-mega-node.is-open > .nav-mega-sublink,
.nav-mega-collection:hover {
    background: color-mix(in srgb, var(--gold) 10%, transparent);
    color: var(--gold-dark, var(--gold));
}

.nav-mega-cat-arrow {
    width: 0.35rem;
    height: 0.35rem;
    border-right: 1px solid currentColor;
    border-top: 1px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.55;
}

.nav-mega-col--subs {
    min-width: 0;
    max-height: 22rem;
    overflow: auto;
}

.nav-mega-node.has-children > .nav-mega-sublink {
    padding-right: 0.5rem;
}

.nav-mega-nested {
    list-style: none;
    display: grid;
    gap: 0.08rem;
    margin: 0.1rem 0 0.35rem 0.7rem;
    padding: 0.1rem 0 0.15rem 0.55rem;
    border-left: 1px solid rgba(201, 168, 76, 0.28);
}

.nav-mega-nested[hidden] {
    display: none;
}

.nav-mega-nested a {
    font-size: 0.88rem;
    padding: 0.42rem 0.55rem;
}

.nav-mega-viewall {
    color: var(--gold) !important;
    font-weight: 500;
}

.nav-mega-footer-link,
.nav-dropdown-footer {
    display: inline-flex;
    margin-top: 0.85rem;
    font-family: "Jost", sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--gold);
}

.nav-mega-empty,
.nav-dropdown-empty {
    margin: 0.4rem 0 0;
    color: var(--text3, var(--text-soft));
    font-family: "Jost", sans-serif;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    line-height: 1.45;
}

.nav-mega-collection {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.35rem 0.2rem;
    color: inherit;
    text-decoration: none;
    font-family: "Jost", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
}

.nav-mega-collection-media {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    overflow: hidden;
    background: var(--bg2, var(--bg-alt));
    flex: 0 0 auto;
}

.nav-mega-collection-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-mega-promo {
    height: 100%;
    min-height: 14rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.55rem;
    padding: 1.2rem;
    background:
        linear-gradient(180deg, rgba(12, 11, 9, 0.15), rgba(12, 11, 9, 0.72)),
        radial-gradient(circle at 30% 20%, rgba(201, 168, 76, 0.35), transparent 55%),
        #1c1813;
    background-size: cover;
    background-position: center;
    color: #f6efdf;
}

.nav-mega-promo--image {
    background-image:
        linear-gradient(180deg, rgba(12, 11, 9, 0.2), rgba(12, 11, 9, 0.78)),
        var(--nav-mega-promo-image);
    background-size: cover;
    background-position: center;
}

.nav-mega-promo-kicker {
    margin: 0;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.nav-mega-promo-title {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.15;
}

.nav-mega-promo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.35rem;
    min-height: 2.2rem;
    padding: 0 1rem;
    width: fit-content;
    background: var(--gold);
    color: #0c0b09;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-dropdown {
    min-width: 14rem;
    padding: 0.75rem;
}

.nav-item--account {
    position: relative;
}

.nav-dropdown--account {
    left: auto;
    right: 0;
    min-width: 11.5rem;
}

.nav-account-logout {
    margin: 0.35rem 0 0;
    padding-top: 0.35rem;
    border-top: 1px solid var(--border);
}

.nav-dropdown-logout {
    display: flex;
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text);
    text-align: left;
    padding: 0.55rem 0.65rem;
    font-family: "Jost", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
}

.nav-dropdown-logout:hover {
    background: color-mix(in srgb, var(--gold) 10%, transparent);
    color: var(--gold-dark, var(--gold));
}

.nav-coming-soon {
    width: min(15rem, calc(100vw - 2rem));
    padding: 0.85rem 0.95rem;
    pointer-events: none;
}

.nav-coming-soon strong {
    display: block;
    margin-bottom: 0.25rem;
    font-family: "Cinzel", serif;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-coming-soon span {
    font-size: 0.78rem;
    color: var(--text2, var(--text-soft));
    line-height: 1.4;
}

/* Benefits bar removed */

.mobile-nav-panels {
    position: relative;
}

.mobile-nav-panel[hidden] {
    display: none !important;
}

.mobile-nav-back,
.mobile-nav-drill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 2.9rem;
    border: 0;
    border-bottom: 1px solid var(--border);
    background: transparent;
    color: inherit;
    font: inherit;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.72rem;
    padding: 0.25rem 0;
    cursor: pointer;
    text-align: left;
}

.mobile-nav-back::before {
    content: "";
    width: 0.4rem;
    height: 0.4rem;
    margin-right: 0.55rem;
    border-left: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
}

.mobile-nav-back {
    justify-content: flex-start;
    font-weight: 600;
    color: var(--gold);
}

.mobile-nav-panel-label {
    margin: 0.85rem 0 0.35rem;
    padding: 0;
    font-family: "Jost", sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
}

.mobile-coming-soon {
    padding: 1rem 0;
}

.mobile-coming-soon strong {
    display: block;
    margin-bottom: 0.35rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-size: 0.72rem;
}

body.home-page .nav-center .nav-link,
body.home-page .nav-center .nav-link--trigger,
body.home-page .nav-icon-btn,
body.home-page .nav-tools .theme-toggle {
    color: #f6efdf;
}

[data-theme="light"] body.home-page .nav-center .nav-link,
[data-theme="light"] body.home-page .nav-center .nav-link--trigger,
[data-theme="light"] body.home-page .nav-icon-btn,
[data-theme="light"] body.home-page .nav-tools .theme-toggle {
    color: #2c2419;
}

[data-theme="light"] .nav-mega,
[data-theme="light"] .nav-dropdown,
[data-theme="light"] .nav-coming-soon {
    background: #fffcf6;
    border-color: rgba(157, 119, 42, 0.18);
}

[data-theme="dark"] .nav-mega,
[data-theme="dark"] .nav-dropdown,
[data-theme="dark"] .nav-coming-soon {
    background: #14110e;
    border-color: rgba(201, 168, 76, 0.16);
}

@media (max-width: 1240px) {
    .nav-center {
        gap: 0.55rem;
    }

    .nav-link,
    .nav-link--trigger {
        font-size: 0.58rem;
        letter-spacing: 0.12em;
    }
}

@media (max-width: 980px) {
    .site-header-stack {
        background: #14110e;
    }

    body.home-page .site-header-stack {
        background: #070707;
    }

    [data-theme="light"] .site-header-stack {
        background: rgba(255, 250, 238, 0.98);
    }

    [data-theme="light"] body.home-page .site-header-stack {
        background: #f7f1e4;
    }

    .announcement {
        border-bottom: none;
    }

    .nav-shell .nav {
        border-top: 1px solid rgba(201, 168, 76, 0.18);
    }

    body.home-page .nav-shell .nav {
        border-top-color: rgba(232, 213, 163, 0.08);
    }

    body.home-page .nav {
        background: #070707;
        box-shadow: none;
    }

    body.home-page .nav-shell.nav-shell-scrolled .nav {
        background: rgba(11, 10, 9, 0.96);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    }

    [data-theme="light"] body.home-page .nav {
        background: #f7f1e4;
    }

    [data-theme="light"] body.home-page .nav-shell.nav-shell-scrolled .nav {
        background: rgba(255, 250, 238, 0.96);
    }

    .announcement,
    .site-header-stack.is-announcement-hidden .announcement {
        transition: none;
    }

    .site-header-stack.is-announcement-hidden .announcement {
        display: none;
    }

    .site-header-stack.is-announcement-hidden .nav-shell .nav {
        border-top: 0;
    }

    .announcement-promos .announcement-promo--mid {
        display: none;
    }

    .announcement-inner {
        justify-content: center;
        padding: 0.34rem 1rem;
    }

    .nav-inner,
    body.home-page .nav-inner {
        grid-template-columns: auto 1fr auto;
        align-items: center;
        min-height: 2.7rem;
        padding: 0.28rem 0.8rem;
        gap: 0.4rem;
    }

    .nav-center {
        display: none !important;
    }

    .nav-logo {
        justify-self: start;
    }

    .nav-logo-image,
    body.home-page .nav-logo-image {
        width: min(7.4rem, 40vw);
        max-height: 2.45rem;
    }

    .nav-tools {
        gap: 0.22rem !important;
        margin-left: auto;
        align-items: center;
    }

    .nav-tools .theme-toggle {
        display: inline-flex !important;
        --toggle-padding-x: 0.16rem;
        --toggle-padding-y: 0.12rem;
        --toggle-thumb-size: 1.2rem;
        --toggle-thumb-offset: 0.2rem;
        --toggle-thumb-travel: 1.32rem;
        width: 2.85rem;
        height: 1.55rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .nav-tools .theme-toggle .toggle-icon {
        width: 0.76rem;
        height: 0.76rem;
    }

    .nav-icon-btn,
    .nav-bag-link {
        width: 2.12rem;
        height: 2.12rem;
    }

    .nav-icon-btn svg,
    .nav-bag-icon {
        width: 1.18rem;
        height: 1.18rem;
    }

    .nav-icon-btn::before,
    .public-nav-toggle::before {
        content: "";
        position: absolute;
        inset: -0.22rem;
    }

    .nav-tool-badge,
    .nav-bag-badge {
        top: 0;
        right: -0.05rem;
        min-width: 0.88rem;
        height: 0.88rem;
        line-height: 0.88rem;
        font-size: 0.52rem;
        z-index: 1;
    }

    .public-nav-toggle {
        position: relative;
        display: inline-grid !important;
        width: 2.2rem;
        height: 2.2rem;
        margin-left: 0.08rem;
        padding: 0.44rem;
        border-radius: 0.55rem;
        gap: 0.18rem;
    }
}

@media (max-width: 480px) {
    .nav-inner,
    body.home-page .nav-inner {
        padding-inline: 0.62rem;
        min-height: 2.6rem;
    }

    .nav-logo-image,
    body.home-page .nav-logo-image {
        width: min(6.15rem, 34vw);
        max-height: 2.28rem;
    }
}

@media (min-width: 981px) {
    .public-nav-toggle {
        display: none;
    }
}

/* Header search overlay */
.nav-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: grid;
    place-items: start center;
    padding: 4.5rem 1rem 1.5rem;
}

.nav-search-overlay[hidden] {
    display: none !important;
}

.nav-search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 6, 0.58);
    backdrop-filter: blur(6px);
}

.nav-search-panel {
    position: relative;
    z-index: 1;
    width: min(40rem, 100%);
    max-height: min(34rem, calc(100vh - 5.5rem));
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.15rem 1.2rem 1rem;
    border: 1px solid rgba(201, 168, 76, 0.28);
    border-radius: 1rem;
    background: var(--surface-strong);
    box-shadow: 0 28px 60px rgba(9, 8, 6, 0.28);
    overflow: hidden;
    animation: nav-search-enter 0.2s ease;
}

@keyframes nav-search-enter {
    from {
        opacity: 0;
        transform: translateY(-0.55rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .nav-search-panel {
        animation: none;
    }
}

.nav-search-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-search-eyebrow {
    margin: 0;
    font-family: "Cinzel", serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-search-close {
    position: relative;
    width: 2.2rem;
    height: 2.2rem;
    border: 1px solid var(--border);
    border-radius: 0.65rem;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    flex-shrink: 0;
}

.nav-search-close span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.85rem;
    height: 1.5px;
    background: currentColor;
}

.nav-search-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.nav-search-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem;
    align-items: center;
}

.nav-search-field {
    position: relative;
    display: block;
    margin: 0;
}

.nav-search-field-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    width: 1.05rem;
    height: 1.05rem;
    color: var(--gold);
    transform: translateY(-50%);
    pointer-events: none;
}

.nav-search-field-icon svg {
    width: 100%;
    height: 100%;
}

.nav-search-input {
    width: 100%;
    min-height: 3rem;
    padding: 0.75rem 0.9rem 0.75rem 2.55rem;
    border: 1px solid var(--border2);
    border-radius: 0.75rem;
    background: var(--surface);
    color: var(--text);
    font-family: "Jost", sans-serif;
    font-size: 0.98rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search-input:focus {
    border-color: rgba(201, 168, 76, 0.55);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.nav-search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 3rem;
    min-width: 3rem;
    padding: 0.7rem 1.05rem;
    border: 1px solid rgba(201, 168, 76, 0.45);
    border-radius: 0.75rem;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    font-family: "Jost", sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-search-submit svg {
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
}

.nav-search-submit:hover {
    background: rgba(201, 168, 76, 0.2);
    border-color: rgba(201, 168, 76, 0.65);
}

.nav-search-status {
    min-height: 1.25rem;
    color: var(--text-soft);
    font-family: "Jost", sans-serif;
    font-size: 0.86rem;
}

.nav-search-results {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    overflow-y: auto;
    margin: 0 -0.15rem;
    padding-right: 0.15rem;
    scrollbar-width: thin;
}

.nav-search-result {
    display: grid;
    grid-template-columns: 3.4rem minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: center;
    padding: 0.55rem 0.65rem;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    color: var(--text);
    text-decoration: none;
    transition: border-color 0.16s ease, background 0.16s ease;
}

.nav-search-result:hover,
.nav-search-result.is-active,
.nav-search-result:focus-visible {
    border-color: rgba(201, 168, 76, 0.35);
    background: rgba(201, 168, 76, 0.08);
    outline: none;
}

.nav-search-result-media {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 0.55rem;
    overflow: hidden;
    background: var(--surface2);
    border: 1px solid var(--border);
}

.nav-search-result-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nav-search-result-media.is-empty {
    display: grid;
    place-items: center;
    color: var(--text3);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-search-result-copy {
    min-width: 0;
}

.nav-search-result-name {
    display: block;
    font-family: "Jost", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text);
}

.nav-search-result-meta {
    display: block;
    margin-top: 0.18rem;
    color: var(--text-soft);
    font-size: 0.78rem;
    line-height: 1.3;
}

.nav-search-result-price {
    text-align: right;
    font-family: "Jost", sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gold);
    white-space: nowrap;
}

.nav-search-result-price s {
    display: block;
    margin-bottom: 0.1rem;
    color: var(--text3);
    font-weight: 400;
    font-size: 0.74rem;
}

.nav-search-panel-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem 1rem;
    padding-top: 0.55rem;
    border-top: 1px solid var(--border);
}

.nav-search-view-all {
    color: var(--gold);
    font-family: "Jost", sans-serif;
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.nav-search-view-all:hover {
    text-decoration: underline;
}

.nav-search-view-all[hidden] {
    display: none !important;
}

.nav-search-hint {
    margin: 0;
    color: var(--text3);
    font-size: 0.76rem;
}

body.nav-search-open {
    overflow: hidden;
}

@media (max-width: 720px) {
    .nav-search-overlay {
        padding: 3.8rem 0.65rem 0.85rem;
        place-items: start stretch;
    }

    .nav-search-panel {
        width: 100%;
        max-height: calc(100vh - 4.5rem);
        border-radius: 0.85rem;
        padding: 1rem 0.9rem 0.85rem;
    }

    .nav-search-form {
        grid-template-columns: minmax(0, 1fr) 3rem;
        gap: 0.45rem;
    }

    .nav-search-submit {
        width: 3rem;
        min-width: 3rem;
        padding: 0;
    }

    .nav-search-submit-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .nav-search-result {
        grid-template-columns: 3rem minmax(0, 1fr);
        gap: 0.7rem;
    }

    .nav-search-result-price {
        grid-column: 2;
        text-align: left;
        margin-top: -0.15rem;
    }

    .nav-search-result-media {
        width: 3rem;
        height: 3rem;
    }
}

.mobile-category-rail {
    display: none;
}

@media (max-width: 980px) {
    .mobile-category-rail {
        display: block;
        background: var(--nav-bg, var(--surface));
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .mobile-category-rail__scroller {
        display: flex;
        align-items: flex-start;
        gap: 0.85rem;
        overflow-x: auto;
        padding: 0.65rem 1rem 0.75rem;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        transition: padding 0.22s ease, gap 0.22s ease;
    }

    .mobile-category-rail__scroller::-webkit-scrollbar {
        display: none;
    }

    .mobile-category-rail__item {
        flex: 0 0 auto;
        display: grid;
        justify-items: center;
        gap: 0.35rem;
        width: 4.35rem;
        text-decoration: none;
        color: inherit;
        scroll-snap-align: start;
        transition: width 0.22s ease, gap 0.22s ease;
    }

    .mobile-category-rail__avatar {
        position: relative;
        display: grid;
        place-items: center;
        width: 3.55rem;
        height: 3.55rem;
        border-radius: 999px;
        overflow: hidden;
        border: 1px solid rgba(201, 168, 76, 0.28);
        background: linear-gradient(160deg, rgba(201, 168, 76, 0.1), transparent 62%), var(--surface2, #16120f);
        color: var(--gold);
        transition: width 0.22s ease, height 0.22s ease;
    }

    .mobile-category-rail__avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        position: absolute;
        inset: 0;
    }

    .mobile-category-rail__avatar img + .coll-icon-fallback__glyph {
        display: none;
    }

    .mobile-category-rail__avatar .coll-icon-fallback__glyph,
    .mobile-category-rail__avatar .coll-jewelry-icon {
        width: 1.65rem;
        height: 1.65rem;
        transition: width 0.22s ease, height 0.22s ease;
    }

    .mobile-category-rail__label {
        max-width: 4.35rem;
        max-height: 1.6rem;
        font-family: "Jost", sans-serif;
        font-size: 0.58rem;
        font-weight: 500;
        letter-spacing: 0.04em;
        line-height: 1.2;
        text-align: center;
        color: var(--text2, #d8cfc0);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        opacity: 1;
        transition: max-height 0.22s ease, opacity 0.18s ease, margin 0.22s ease;
    }

    .mobile-category-rail__item.is-selected .mobile-category-rail__avatar {
        border-color: var(--gold);
        box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.45);
    }

    .mobile-category-rail__item.is-selected .mobile-category-rail__label {
        color: var(--gold);
    }

    .mobile-category-rail.is-compact .mobile-category-rail__scroller {
        gap: 0.55rem;
        padding: 0.4rem 1rem 0.45rem;
    }

    .mobile-category-rail.is-compact .mobile-category-rail__item {
        width: 2.85rem;
        gap: 0;
    }

    .mobile-category-rail.is-compact .mobile-category-rail__avatar {
        width: 2.35rem;
        height: 2.35rem;
    }

    .mobile-category-rail.is-compact .mobile-category-rail__avatar .coll-icon-fallback__glyph,
    .mobile-category-rail.is-compact .mobile-category-rail__avatar .coll-jewelry-icon {
        width: 1.15rem;
        height: 1.15rem;
    }

    .mobile-category-rail.is-compact .mobile-category-rail__label {
        max-height: 0;
        opacity: 0;
        margin: 0;
        pointer-events: none;
    }

    body.home-page .mobile-category-rail {
        background: linear-gradient(180deg, rgba(7, 7, 7, 0.28) 0%, rgba(7, 7, 7, 0.72) 100%);
        border-bottom-color: rgba(232, 213, 163, 0.1);
    }

    body.home-page .nav-shell.nav-shell-scrolled ~ .mobile-category-rail {
        background: rgba(11, 10, 9, 0.88);
        border-bottom-color: rgba(232, 213, 163, 0.16);
    }

    body:has([data-product-detail-page]) .mobile-category-rail {
        display: none !important;
    }

    [data-theme="light"] body.home-page .mobile-category-rail {
        background: linear-gradient(180deg, rgba(255, 252, 246, 0.55) 0%, rgba(255, 252, 246, 0.88) 100%);
        border-bottom-color: rgba(201, 168, 76, 0.18);
    }

    [data-theme="light"] body.home-page .nav-shell.nav-shell-scrolled ~ .mobile-category-rail {
        background: rgba(255, 250, 238, 0.92);
        border-bottom-color: rgba(157, 119, 42, 0.24);
    }

    /* Rail sits in the fixed home header; keep the hero window below it. */
    body.home-page .maison-hero__visual {
        padding-top: 11.25rem;
    }
}

/* Luxury mobile drawer */
.public-nav-drawer .mobile-nav-panels {
    min-height: 100%;
}

.public-nav-drawer .mobile-nav-panel {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    min-height: 100%;
}

.public-nav-drawer .mobile-nav-panel[hidden] {
    display: none !important;
}

.drawer-identity {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(201, 168, 76, 0.22);
    border-radius: 1.05rem;
    background: linear-gradient(135deg, rgba(42, 36, 28, 0.95) 0%, rgba(22, 19, 16, 0.92) 100%);
    color: inherit;
    text-decoration: none;
}

.drawer-identity-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.28);
    color: var(--gold);
    font-family: "Cinzel", serif;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    flex-shrink: 0;
}

.drawer-identity-avatar img,
.drawer-identity-avatar svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drawer-identity-avatar svg {
    width: 1.25rem;
    height: 1.25rem;
    margin: auto;
}

.drawer-identity-copy {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
}

.drawer-identity-copy strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.12rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #f6efdf;
}

.drawer-identity-copy small {
    font-family: "Jost", sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(232, 213, 163, 0.72);
}

.drawer-identity-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0 0.85rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #d7b56a 0%, #b8903c 100%);
    color: #1b160f;
    font-family: "Cinzel", serif;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

.drawer-nav {
    display: grid;
}

.drawer-row,
.public-nav-drawer .public-nav-drawer-button {
    display: grid;
    grid-template-columns: 1.35rem minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    min-height: 3.05rem;
    padding: 0.15rem 0.1rem;
    border: 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    background: transparent;
    color: #f3ead8;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.drawer-row:last-child {
    border-bottom: 0;
}

.drawer-row:hover,
.drawer-feature:hover,
.drawer-chip:hover,
.drawer-identity:hover {
    color: var(--gold);
}

.drawer-row-icon,
.drawer-row-chevron,
.drawer-feature-icon {
    display: grid;
    place-items: center;
    color: var(--gold);
}

.drawer-row-icon svg,
.drawer-row-chevron svg,
.drawer-feature-icon svg {
    width: 1.05rem;
    height: 1.05rem;
}

.drawer-row-chevron {
    opacity: 0.72;
}

.drawer-row-label {
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.drawer-pill {
    justify-self: end;
    padding: 0.18rem 0.45rem;
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.16);
    color: var(--gold);
    font-family: "Cinzel", serif;
    font-size: 0.48rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.drawer-count {
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 0.28rem;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: var(--gold);
    color: #1b160f;
    font-family: "Jost", sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
}

.drawer-count.is-hidden {
    display: none;
}

.drawer-back {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    min-height: 2.4rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gold);
    font-family: "Cinzel", serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
}

.drawer-back-chevron {
    width: 0.42rem;
    height: 0.42rem;
    border-left: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: rotate(45deg);
}

.drawer-feature {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 0.15rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    color: inherit;
    text-decoration: none;
}

.drawer-feature-icon {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.22);
}

.drawer-feature-copy {
    display: grid;
    gap: 0.12rem;
}

.drawer-feature-copy strong {
    font-family: "Jost", sans-serif;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.drawer-feature-copy small {
    font-family: "Jost", sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.02em;
    color: rgba(232, 213, 163, 0.68);
    text-transform: none;
}

.drawer-section-label {
    margin: 0.35rem 0 0;
    font-family: "Jost", sans-serif;
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
}

.drawer-chips {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    padding: 0.15rem 0 0.35rem;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
}

.drawer-chips::-webkit-scrollbar {
    display: none;
}

.drawer-chip {
    flex: 0 0 auto;
    width: 4.4rem;
    display: grid;
    justify-items: center;
    gap: 0.4rem;
    color: inherit;
    text-decoration: none;
    scroll-snap-align: start;
}

.drawer-chip-media {
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 50%;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.22);
    color: var(--gold);
}

.drawer-chip-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    grid-area: 1 / 1;
}

.drawer-chip-media .coll-icon-fallback__glyph {
    grid-area: 1 / 1;
}

.drawer-chip-media img + .coll-icon-fallback__glyph {
    display: none;
}

.drawer-chip-media .coll-icon-fallback__glyph,
.drawer-chip-media .coll-jewelry-icon {
    width: 1.45rem;
    height: 1.45rem;
}

.drawer-chip-label {
    font-family: "Jost", sans-serif;
    font-size: 0.52rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.25;
}

.drawer-row.is-leaf {
    grid-template-columns: 1.35rem minmax(0, 1fr) auto;
}

.drawer-row.is-nested {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 2.4rem;
    padding: 0.1rem 0;
    border-bottom-color: transparent;
}

.drawer-row.is-nested.is-leaf {
    grid-template-columns: minmax(0, 1fr);
}

.drawer-accordion-list .drawer-accordion-list {
    margin-top: 0.05rem;
}

.drawer-sublink {
    color: rgba(243, 234, 216, 0.86);
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    padding: 0.38rem 0;
    text-decoration: none;
}

.drawer-accordion-mark {
    justify-self: end;
    color: var(--gold);
}

.drawer-accordion-mark {
    width: 0.7rem;
    height: 0.7rem;
    position: relative;
}

.drawer-accordion-mark::before,
.drawer-accordion-mark::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.drawer-accordion-mark::before {
    width: 0.7rem;
    height: 1.4px;
}

.drawer-accordion-mark::after {
    width: 1.4px;
    height: 0.7rem;
}

.drawer-row[aria-expanded="true"] .drawer-accordion-mark::after {
    display: none;
}

.drawer-accordion-panel {
    display: grid;
    gap: 0.15rem;
    margin: 0 0 0.45rem 1.95rem;
    padding: 0.15rem 0 0.35rem 0.85rem;
    border-left: 1px solid rgba(201, 168, 76, 0.28);
}

.drawer-accordion-panel[hidden] {
    display: none;
}

.drawer-accordion-panel .drawer-sublink {
    color: rgba(243, 234, 216, 0.86);
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: none;
    padding: 0.38rem 0;
    text-decoration: none;
}

.drawer-edit {
    margin-top: auto;
    display: grid;
    align-content: end;
    gap: 0.45rem;
    min-height: 7.4rem;
    padding: 1.05rem 1.1rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
    background:
        linear-gradient(90deg, rgba(18, 16, 13, 0.92) 0%, rgba(18, 16, 13, 0.42) 100%),
        #1a1713;
    overflow: hidden;
}

.drawer-edit.has-image {
    background:
        linear-gradient(90deg, rgba(12, 10, 8, 0.88) 0%, rgba(12, 10, 8, 0.28) 62%, rgba(12, 10, 8, 0.08) 100%),
        var(--drawer-edit-image) right center / cover no-repeat;
}

.drawer-edit-kicker,
.drawer-section-label {
    letter-spacing: 0.22em;
}

.drawer-edit-kicker {
    margin: 0;
    font-family: "Jost", sans-serif;
    font-size: 0.52rem;
    text-transform: uppercase;
    color: var(--gold);
}

.drawer-edit-title {
    margin: 0;
    max-width: 11rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.28rem;
    line-height: 1.2;
    color: #f7f0e2;
}

.drawer-edit-cta,
.drawer-promo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.85rem;
    width: fit-content;
    padding: 0 0.85rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #d7b56a 0%, #b8903c 100%);
    color: #1b160f;
    font-family: "Cinzel", serif;
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.drawer-promo {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding: 0.85rem 0.9rem;
    border-radius: 0.95rem;
    border: 1px solid rgba(201, 168, 76, 0.22);
    background: linear-gradient(135deg, rgba(48, 40, 28, 0.92), rgba(22, 18, 14, 0.9));
}

.drawer-promo:not(:has(.drawer-promo-cta)) {
    grid-template-columns: auto minmax(0, 1fr);
}

.drawer-promo-icon {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.drawer-promo-icon svg {
    width: 1.05rem;
    height: 1.05rem;
}

.drawer-promo p {
    margin: 0;
    font-family: "Jost", sans-serif;
    font-size: 0.78rem;
    line-height: 1.35;
    color: #f3ead8;
}

.drawer-social {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
}

.drawer-social-btn {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(201, 168, 76, 0.22);
    color: var(--gold);
}

.drawer-social-btn svg {
    width: 0.95rem;
    height: 0.95rem;
}

.drawer-copy {
    margin: 0;
    text-align: center;
    font-family: "Jost", sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(232, 213, 163, 0.55);
}

.drawer-empty {
    margin: 0.4rem 0 0;
    color: rgba(232, 213, 163, 0.7);
    font-size: 0.82rem;
}

[data-theme="light"] .drawer-identity,
[data-theme="light"] .drawer-promo,
[data-theme="light"] .drawer-edit {
    background: linear-gradient(135deg, #fff8ea, #f4ead4);
    border-color: rgba(157, 119, 42, 0.2);
}

[data-theme="light"] .drawer-identity-copy strong,
[data-theme="light"] .drawer-row,
[data-theme="light"] .drawer-feature-copy strong,
[data-theme="light"] .drawer-edit-title,
[data-theme="light"] .drawer-promo p,
[data-theme="light"] .public-nav-drawer .public-nav-drawer-button {
    color: #2c2419;
}

[data-theme="light"] .drawer-identity-copy small,
[data-theme="light"] .drawer-feature-copy small,
[data-theme="light"] .drawer-copy {
    color: rgba(80, 62, 32, 0.7);
}

[data-theme="light"] .drawer-row,
[data-theme="light"] .drawer-feature {
    border-bottom-color: rgba(157, 119, 42, 0.14);
}

[data-theme="light"] .drawer-accordion-panel {
    border-left-color: rgba(157, 119, 42, 0.28);
}

[data-theme="light"] .drawer-accordion-panel .drawer-sublink {
    color: #4a3b24;
}

[data-theme="light"] .drawer-edit.has-image {
    background:
        linear-gradient(90deg, rgba(255, 250, 238, 0.92) 0%, rgba(255, 250, 238, 0.42) 62%, rgba(255, 250, 238, 0.12) 100%),
        var(--drawer-edit-image) right center / cover no-repeat;
}

[data-theme="light"] .drawer-identity-avatar,
[data-theme="light"] .drawer-feature-icon,
[data-theme="light"] .drawer-chip-media,
[data-theme="light"] .drawer-promo-icon,
[data-theme="light"] .drawer-social-btn {
    background: rgba(201, 168, 76, 0.12);
    border-color: rgba(157, 119, 42, 0.22);
}

/* === utilities.css === */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section {
    padding: 6.25rem 0;
}

.section-compact {
    padding: 3.5rem 0 4.25rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-left {
    text-align: left;
}

.section-label {
    font-family: "Jost", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.content-breadcrumbs {
    margin-bottom: 0.9rem;
}

.content-breadcrumbs ol {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style: none;
    white-space: nowrap;
}

.content-breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    color: var(--text3);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.content-breadcrumbs li:not(:last-child) {
    flex: 0 1 auto;
}

.content-breadcrumbs li:last-child {
    flex: 1 1 0;
    overflow: hidden;
}

.content-breadcrumbs li:last-child a,
.content-breadcrumbs li:last-child [aria-current="page"] {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.content-breadcrumbs li:not(:last-child)::after {
    content: "/";
    color: rgba(201, 168, 76, 0.7);
}

.content-breadcrumbs a {
    color: inherit;
    transition: color var(--transition);
}

.content-breadcrumbs a:hover,
.content-breadcrumbs [aria-current="page"] {
    color: var(--gold);
}

.section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.15;
    margin: 0 0 1rem;
}

.section-sub,
.story-desc,
.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text2);
    letter-spacing: 0.045em;
    line-height: 1.8;
    max-width: 35rem;
}

.section-header .section-sub {
    margin: 0 auto;
}

.section-header-left .section-sub {
    margin: 0;
}

.divider {
    width: 3.75rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

.divider-left {
    margin: 0 0 1.75rem;
}

.divider-lg {
    width: 7.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

.gold {
    color: var(--gold);
}

.ornament {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.15rem;
}

.ornament-line {
    width: 3rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.ornament-line-right {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.ornament-gem {
    width: 0.8rem;
    height: 0.8rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.reveal {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.toast-stack {
    position: fixed;
    top: 1.15rem;
    right: 1.15rem;
    z-index: 1400;
    display: grid;
    gap: 0.8rem;
    width: min(26rem, calc(100vw - 2rem));
    pointer-events: none;
}

.app-toast {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 1rem 1rem 1rem 1.1rem;
    border: 1px solid var(--border);
    background: color-mix(in srgb, var(--surface) 92%, rgba(255, 255, 255, 0.04));
    box-shadow: 0 16px 34px rgba(10, 8, 6, 0.18);
    backdrop-filter: blur(18px);
    pointer-events: auto;
    animation: toast-in 0.3s ease;
}

        .app-toast-success {
            border-color: rgba(72, 160, 94, 0.34);
        }

        .app-toast-info {
            border-color: rgba(201, 168, 76, 0.38);
        }

        .app-toast-error {
    border-color: rgba(180, 72, 72, 0.38);
}

.app-toast-copy {
    display: grid;
    gap: 0.22rem;
}

.app-toast-title {
    font-family: "Cinzel", serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.app-toast-message {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.94rem;
}

.app-toast-close {
    border: none;
    background: transparent;
    color: var(--text3);
    width: 1.8rem;
    height: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    transition: color var(--transition), transform var(--transition);
}

.app-toast-close:hover {
    color: var(--gold);
    transform: scale(1.05);
}

.app-toast.is-leaving {
    animation: toast-out 0.24s ease forwards;
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateY(-0.5rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toast-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-0.4rem);
    }
}

.validation-summary,
.field-validation {
    color: #b94b4b;
    font-size: 0.92rem;
}

@media (max-width: 720px) {
    .container {
        padding: 0 1.25rem;
    }

    .section {
        padding: 4.5rem 0;
    }

    .section-compact {
        padding: 2.75rem 0 3.5rem;
    }

    .toast-stack {
        top: 0.9rem;
        right: 0.9rem;
        width: calc(100vw - 1.8rem);
    }
}

/* === website.css === */
.hero {
    position: relative;
    height: calc(100vh - 5.625rem);
    min-height: 38rem;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--bg3);
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 62%;
    height: 100%;
    overflow: hidden;
}

.hero-visual-inner {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 80% at 60% 40%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 40%, var(--bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    z-index: 1;
}

.hero-layout {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(20rem, 38.75rem) minmax(0, 1fr);
    align-items: start;
    gap: 1.5rem;
    min-height: inherit;
    padding-top: clamp(4rem, 10vh, 6.5rem);
}

.hero-content {
    max-width: 38.75rem;
    padding-left: 3.75rem;
    animation: hero-in 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes hero-in {
    from {
        opacity: 0;
        transform: translateY(1.875rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    font-family: "Jost", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: "";
    width: 2.5rem;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.75rem, 6.6vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--text);
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    margin-bottom: 2.15rem;
    max-width: 27.5rem;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-scroll {
    grid-column: 1;
    justify-self: start;
    align-self: end;
    margin-left: 3.75rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.625rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text3);
    text-decoration: none;
}

.scroll-line {
    width: 2.5rem;
    height: 1px;
    background: var(--gold);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    animation: scroll-anim 2s ease infinite;
}

@keyframes scroll-anim {
    to {
        left: 200%;
    }
}

.jewel-art {
    position: relative;
    width: min(31.25rem, 68vw);
    height: min(31.25rem, 68vw);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-1.125rem);
    }
}

.ring-outer,
.ring-mid,
.ring-inner {
    position: absolute;
    border-radius: 50%;
}

.ring-outer {
    inset: 0;
    border: 1.5px solid var(--gold);
    opacity: 0.4;
    animation: spin-slow 25s linear infinite;
}

.ring-mid {
    inset: 3.75rem;
    border: 1px solid var(--gold-light);
    opacity: 0.25;
    animation: spin-slow 18s linear infinite reverse;
}

.ring-inner {
    inset: 8.75rem;
    border: 2px solid var(--gold);
    box-shadow: 0 0 3.75rem var(--gold-glow), inset 0 0 3.75rem var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.gem,
.story-gem {
    width: 5rem;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-dark) 70%, #7a5a1a 100%);
    clip-path: polygon(50% 0%, 100% 35%, 100% 65%, 50% 100%, 0% 65%, 0% 35%);
    box-shadow: 0 0 2.5rem rgba(201, 168, 76, 0.28), 0 0 5rem rgba(201, 168, 76, 0.12);
}

.sparkle {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    animation: sparkle-anim 3s ease-in-out infinite;
}

@keyframes sparkle-anim {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.sp1 { width: 0.25rem; height: 0.25rem; top: 6.25rem; left: 12.5rem; animation-delay: 0s; }
.sp2 { width: 0.2rem; height: 0.2rem; top: 12.5rem; right: 7.5rem; animation-delay: 0.8s; }
.sp3 { width: 0.3rem; height: 0.3rem; bottom: 9.375rem; left: 9.375rem; animation-delay: 1.5s; }
.sp4 { width: 0.2rem; height: 0.2rem; bottom: 6.25rem; right: 11.25rem; animation-delay: 2.2s; }
.sp5 { width: 0.25rem; height: 0.25rem; top: 9.375rem; right: 12.5rem; animation-delay: 0.4s; }

.brand-strip {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    overflow: hidden;
}

.brand-strip-inner {
    display: flex;
    gap: 5rem;
    align-items: center;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.brand-badge {
    font-family: "Cinzel", serif;
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.brand-badge-short {
    display: none;
}

.brand-badge::after {
    content: "✦";
    color: var(--gold);
    font-size: 0.5rem;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    body.home-page {
        display: flex;
        flex-direction: column;
    }

    body.home-page .maison-hero {
        order: 1;
    }

    body.home-page .brand-strip,
    body.home-page .sale-countdown--hero {
        order: 2;
    }

    body.home-page #featured {
        order: 3;
        padding-top: 2.25rem;
    }

    body.home-page #collections {
        order: 4;
        padding-top: 2.25rem;
    }

    body.home-page .arrivals {
        order: 5;
    }

    body.home-page .story {
        order: 6;
    }

    body.home-page .categories {
        order: 7;
    }

    body.home-page .promo {
        order: 8;
    }

    body.home-page .testimonials {
        order: 9;
    }

    body.home-page .promo2 {
        order: 10;
    }

    body.home-page .journal-home {
        order: 11;
    }

    body.home-page .newsletter {
        order: 12;
    }

    body.home-page .footer {
        order: 99;
    }

    .brand-badge-long {
        display: none;
    }

    .brand-badge-short {
        display: inline;
    }

    .brand-strip-inner {
        gap: 2.75rem;
    }

    .section-header .section-sub,
    .arrivals-desc {
        display: none;
    }
}

.collections {
    background: var(--bg);
}

.collections-section__header {
    display: grid;
    justify-items: center;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.collections-section__footer {
    display: flex;
    justify-content: center;
    margin-top: 1.75rem;
}

.collections-section__all {
    display: none;
}

.collections-section--has-collections .collections-section__all {
    display: inline-flex;
}

.collections-section .collections-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

/* 1–4: fill available width */
.collections-section--has-collections.collections-section--count-1 .collections-grid {
    grid-template-columns: minmax(0, 28rem);
    justify-content: center;
}

.collections-section--has-collections.collections-section--count-2 .collections-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.collections-section--has-collections.collections-section--count-3 .collections-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collections-section--has-collections.collections-section--count-4 .collections-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* 5–8: premium bento */
.collections-section--bento .collections-grid {
    gap: 0.65rem;
}

.collections-section--bento .collection-card,
.collections-section--bento .collection-card--overlay {
    min-height: 0;
}

.collections-section--count-5 .collections-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collections-section--count-5 .collections-grid > .collection-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.collections-section--count-6 .collections-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collections-section--count-6 .collections-grid > .collection-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.collections-section--count-7 .collections-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collections-section--count-7 .collections-grid > .collection-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.collections-section--count-7 .collections-grid > .collection-card:nth-child(6),
.collections-section--count-7 .collections-grid > .collection-card:nth-child(7) {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.collections-section--count-8 .collections-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collections-section--count-8 .collections-grid > .collection-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.collections-section--count-8 .collections-grid > .collection-card:nth-child(8) {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.collections-section--bento .collections-grid > .collection-card:nth-child(1) .coll-name {
    font-size: clamp(1.75rem, 2.2vw, 2.15rem);
}

.collections-section .collection-card,
.collections-section .collection-card--overlay {
    position: relative;
    aspect-ratio: 1 / 1;
    min-height: 0;
    max-height: none;
    border: 1px solid var(--border);
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    isolation: isolate;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.collections-section .collection-card:hover,
.collections-section .collection-card--overlay:hover {
    border-color: var(--gold);
    transform: translateY(-0.2rem);
    box-shadow: var(--card-hover-shadow);
}

.collections-section .collection-card-link {
    position: relative;
    display: grid;
    grid-template-rows: 1fr;
    align-items: end;
    width: 100%;
    height: 100%;
    min-height: 0;
    color: inherit;
    text-decoration: none;
}

.collections-section .collection-card__visual,
.collections-section .collection-card--overlay .coll-bg,
.collections-section .collection-card--editorial .coll-bg {
    position: absolute;
    inset: 0;
    flex: none;
    width: 100%;
    min-height: 100%;
    max-height: none;
    overflow: hidden;
}

.collections-section .collection-card__visual .coll-visual,
.collections-section .collection-card--overlay .coll-visual,
.collections-section .collection-card--editorial .coll-visual {
    width: 100%;
    height: 100%;
}

.collections-section .collection-card__visual .collection-media-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.collections-section .collection-card:hover .collection-card__visual .collection-media-fill,
.collections-section .collection-card-link:focus-visible .collection-card__visual .collection-media-fill {
    transform: scale(1.04);
}

.collections-section .collection-card:hover .coll-bg,
.collections-section .collection-card-link:focus-visible .coll-bg {
    transform: none;
}

.collections-section .coll-overlay--visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        transparent 38%,
        rgba(10, 9, 6, 0.22) 62%,
        rgba(10, 9, 6, 0.58) 82%,
        rgba(10, 9, 6, 0.78) 100%
    );
    pointer-events: none;
}

.collections-section .collection-card__body,
.collections-section .coll-info {
    position: relative;
    z-index: 2;
    inset: auto;
    flex: none;
    display: grid;
    gap: 0.35rem;
    align-content: end;
    justify-items: start;
    max-width: min(100%, 16.5rem);
    padding: 1.2rem 1.2rem 1.25rem;
    transform: none;
    background: linear-gradient(
        90deg,
        rgba(8, 7, 5, 0.55) 0%,
        rgba(8, 7, 5, 0.28) 55%,
        transparent 100%
    );
    border-top: none;
    border-radius: 0 0.35rem 0 0;
}

.collections-section .coll-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.65rem;
    margin: 0;
    color: #f7f1e3;
    line-height: 1.05;
    text-align: left;
    text-shadow: 0 0.2rem 0.75rem rgba(0, 0, 0, 0.45);
}

.collections-section .coll-count,
.collections-section .coll-price {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(247, 241, 227, 0.92);
    text-align: left;
    text-shadow: 0 0.2rem 0.75rem rgba(0, 0, 0, 0.45);
}

.collections-section .coll-desc {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    letter-spacing: 0.02em;
    color: rgba(247, 241, 227, 0.88);
    text-align: left;
    text-shadow: 0 0.2rem 0.75rem rgba(0, 0, 0, 0.45);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.collections-section .collection-card--has-icon .coll-overlay--visual {
    background:
        radial-gradient(circle at 50% 38%, rgba(201, 168, 76, 0.1) 0%, rgba(201, 168, 76, 0.02) 42%, transparent 68%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, transparent 38%),
        linear-gradient(180deg, transparent 45%, rgba(10, 9, 6, 0.28) 100%);
}

.collections-section .collection-card--has-icon .collection-card__body,
.collections-section .collection-card--has-icon .coll-info {
    background: transparent;
}

.collections-section .collection-card--has-icon .coll-name {
    color: var(--text);
    text-shadow: none;
}

.collections-section .collection-card--has-icon .coll-count,
.collections-section .collection-card--has-icon .coll-price {
    color: var(--gold);
    text-shadow: none;
}

.collections-section .collection-card--has-icon .coll-desc {
    color: color-mix(in srgb, var(--text) 72%, var(--gold));
    text-shadow: none;
}

[data-theme="light"] .collections-section .collection-card--has-media .coll-overlay--visual {
    background: linear-gradient(
        180deg,
        transparent 38%,
        rgba(10, 9, 6, 0.2) 62%,
        rgba(10, 9, 6, 0.55) 82%,
        rgba(10, 9, 6, 0.75) 100%
    );
}

[data-theme="light"] .collections-section .collection-card--has-icon .coll-overlay--visual {
    background:
        radial-gradient(circle at 50% 38%, rgba(177, 126, 39, 0.12) 0%, rgba(177, 126, 39, 0.03) 42%, transparent 68%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.42) 0%, transparent 38%),
        linear-gradient(180deg, transparent 40%, rgba(250, 250, 247, 0.88) 100%);
}

[data-theme="light"] .collections-section .collection-card--has-icon .coll-name {
    color: var(--text);
}

[data-theme="light"] .collections-section .collection-card--has-icon .coll-count,
[data-theme="light"] .collections-section .collection-card--has-icon .coll-price {
    color: color-mix(in srgb, var(--text) 70%, var(--gold));
}

[data-theme="light"] .collections-section .collection-card--has-icon .coll-desc {
    color: color-mix(in srgb, var(--text) 70%, var(--gold));
}

.collections-section .coll-icon-fallback {
    min-height: 100%;
}

.collections-section .coll-icon-fallback::before {
    width: 6.75rem;
    height: 6.75rem;
    border: 1px solid rgba(201, 168, 76, 0.14);
}

.collections-section .coll-jewelry-icon {
    width: 3.85rem;
    height: 3.85rem;
}

.coll-icon-fallback {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: 8rem;
}

.coll-icon-fallback::before {
    content: "";
    position: absolute;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.16) 0%, rgba(201, 168, 76, 0.04) 58%, transparent 72%);
    pointer-events: none;
}

.coll-icon-fallback__glyph {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    color: var(--gold);
}

.coll-jewelry-icon {
    width: 3.25rem;
    height: 3.25rem;
    display: block;
}

[data-theme="light"] .coll-icon-fallback::before {
    background: radial-gradient(circle, rgba(177, 126, 39, 0.2) 0%, rgba(177, 126, 39, 0.06) 58%, transparent 72%);
}

[data-theme="light"] .coll-icon-fallback__glyph {
    color: rgba(146, 107, 42, 0.92);
}

@media (max-width: 1024px) {
    .collections-section .collections-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .collections-section--has-collections.collections-section--count-1 .collections-grid {
        grid-template-columns: minmax(0, 24rem);
        justify-content: center;
    }

    .collections-section--has-collections.collections-section--count-2 .collections-grid,
    .collections-section--has-collections.collections-section--count-3 .collections-grid,
    .collections-section--has-collections.collections-section--count-4 .collections-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .collections-section--has-collections.collections-section--count-3 .collections-grid > .collection-card:nth-child(3) {
        grid-column: span 2;
        aspect-ratio: 2 / 1;
    }

    .collections-section--bento .collections-grid {
        gap: 0.6rem;
    }

    .collections-section--count-5 .collections-grid,
    .collections-section--count-6 .collections-grid,
    .collections-section--count-7 .collections-grid,
    .collections-section--count-8 .collections-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .collections-section--count-5 .collections-grid > .collection-card:nth-child(1),
    .collections-section--count-6 .collections-grid > .collection-card:nth-child(1),
    .collections-section--count-7 .collections-grid > .collection-card:nth-child(1),
    .collections-section--count-8 .collections-grid > .collection-card:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16 / 10;
    }

    .collections-section--count-7 .collections-grid > .collection-card:nth-child(6),
    .collections-section--count-7 .collections-grid > .collection-card:nth-child(7),
    .collections-section--count-8 .collections-grid > .collection-card:nth-child(8) {
        grid-column: auto;
        aspect-ratio: 1 / 1;
    }

    .collections-section--count-6 .collections-grid > .collection-card:nth-child(6),
    .collections-section--count-8 .collections-grid > .collection-card:nth-child(8) {
        grid-column: span 2;
        aspect-ratio: 2 / 1;
    }

    .collections-section .collection-card,
    .collections-section .collection-card--overlay,
    .collections-section .collection-card-link {
        min-height: 0;
    }

    .collections-section .coll-name {
        font-size: 1.35rem;
        line-height: 1.05;
    }

    .collections-section--bento .collections-grid > .collection-card:nth-child(1) .coll-name {
        font-size: clamp(1.45rem, 3.2vw, 1.85rem);
    }

    .collections-section .coll-count,
    .collections-section .coll-price {
        font-size: 0.68rem;
        letter-spacing: 0.12em;
    }

    .collections-section .collection-card__body,
    .collections-section .coll-info {
        padding: 1rem 1rem 1.1rem;
        gap: 0.3rem;
        max-width: min(100%, 15rem);
    }

    .collections-section .coll-icon-fallback::before {
        width: 5.25rem;
        height: 5.25rem;
    }

    .collections-section .coll-jewelry-icon {
        width: 3rem;
        height: 3rem;
    }
}

@media (max-width: 640px) {
    .collections-section .collections-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .collections-section--multi .collections-grid,
    .collections-section--has-collections.collections-section--count-2 .collections-grid,
    .collections-section--has-collections.collections-section--count-3 .collections-grid,
    .collections-section--has-collections.collections-section--count-4 .collections-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .collections-section--has-collections.collections-section--count-1 .collections-grid {
        grid-template-columns: 1fr;
        justify-content: stretch;
    }

    .collections-section--has-collections.collections-section--count-3 .collections-grid > .collection-card:nth-child(3) {
        grid-column: span 2;
        aspect-ratio: 2 / 1;
    }

    .collections-section--bento .collections-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
    }

    .collections-section--count-5 .collections-grid > .collection-card:nth-child(1),
    .collections-section--count-6 .collections-grid > .collection-card:nth-child(1),
    .collections-section--count-7 .collections-grid > .collection-card:nth-child(1),
    .collections-section--count-8 .collections-grid > .collection-card:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 4 / 5;
    }

    .collections-section--count-7 .collections-grid > .collection-card:nth-child(6),
    .collections-section--count-7 .collections-grid > .collection-card:nth-child(7),
    .collections-section--count-8 .collections-grid > .collection-card:nth-child(8) {
        grid-column: auto;
        aspect-ratio: 1 / 1;
    }

    .collections-section--count-6 .collections-grid > .collection-card:nth-child(6),
    .collections-section--count-7 .collections-grid > .collection-card:nth-child(6),
    .collections-section--count-7 .collections-grid > .collection-card:nth-child(7),
    .collections-section--count-8 .collections-grid > .collection-card:nth-child(6) {
        grid-column: span 2;
        aspect-ratio: 16 / 9;
    }

    .collections-section .collection-card,
    .collections-section .collection-card--overlay,
    .collections-section .collection-card-link {
        min-height: 0;
    }

    .collections-section--multi .collection-card,
    .collections-section--multi .collection-card--overlay,
    .collections-section--multi .collection-card-link {
        min-height: 0;
    }

    .collections-section .collection-card__body,
    .collections-section .coll-info {
        padding: 0.95rem 0.95rem 1.05rem;
        max-width: none;
    }

    .collections-section--multi .collection-card__body,
    .collections-section--multi .coll-info {
        padding: 0.8rem 0.75rem 0.9rem;
    }

    .collections-section .coll-name {
        font-size: 1.4rem;
    }

    .collections-section--multi .coll-name {
        font-size: 1.15rem;
        line-height: 1.1;
    }

    .collections-section--bento .collections-grid > .collection-card:nth-child(1) .coll-name {
        font-size: 1.55rem;
    }

    .collections-section .coll-count,
    .collections-section .coll-price {
        font-size: 0.68rem;
    }

    .collections-section--multi .coll-count,
    .collections-section--multi .coll-price {
        font-size: 0.6rem;
    }

    .collections-section--multi .coll-desc {
        font-size: 0.68rem;
        line-height: 1.4;
    }

    .collections-section__footer {
        margin-top: 1.25rem;
    }

    .collections-section__all {
        width: 100%;
        max-width: 16rem;
        justify-content: center;
    }

    .collections-section {
        padding-bottom: 3.75rem;
    }
}

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

.collection-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--card-bg);
}

.collection-card-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.collection-card-link:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.55);
}

.collections-grid.has-featured-layout .collection-card:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
}

.coll-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover .coll-bg {
    transform: scale(1.06);
}

.collection-card-link:focus-visible .coll-bg {
    transform: scale(1.06);
}

.coll-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 11, 9, 0.75) 0%, rgba(12, 11, 9, 0.2) 50%, transparent 100%);
}

.coll-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    transform: translateY(0.5rem);
    transition: transform 0.4s ease;
}

.collection-card:hover .coll-info {
    transform: translateY(0);
}

.collection-card-link:focus-visible .coll-info {
    transform: translateY(0);
}

.coll-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: #f0ead8;
    margin: 0 0 0.5rem;
    letter-spacing: 0.02em;
}

.coll-count {
    font-size: 0.625rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.coll-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.625rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #f0ead8;
    opacity: 0;
    transform: translateY(0.4rem);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.coll-link::after {
    content: "→";
    transition: transform 0.3s ease;
}

.collection-card:hover .coll-link {
    opacity: 1;
    transform: translateY(0);
}

.collection-card-link:focus-visible .coll-link {
    opacity: 1;
    transform: translateY(0);
}

.collection-card:hover .coll-link::after {
    transform: translateX(0.25rem);
}

.collection-card-link:focus-visible .coll-link::after {
    transform: translateX(0.25rem);
}

.coll-c1 { background: linear-gradient(135deg, #2a2218 0%, #1a1610 50%, #0e0c08 100%); }
.coll-c2 { background: linear-gradient(135deg, #1e1a14 0%, #15120d 100%); }
.coll-c3 { background: linear-gradient(135deg, #221e18 0%, #181410 100%); }
.coll-c4 { background: linear-gradient(135deg, #1a1814 0%, #110f0c 100%); }

[data-theme="light"] .coll-c1 { background: linear-gradient(135deg, #e8e0d0 0%, #d4c8b0 50%, #c8baaa 100%); }
[data-theme="light"] .coll-c2 { background: linear-gradient(135deg, #ddd5c5 0%, #c8c0b0 100%); }
[data-theme="light"] .coll-c3 { background: linear-gradient(135deg, #e0d8c8 0%, #ccc4b4 100%); }
[data-theme="light"] .coll-c4 { background: linear-gradient(135deg, #d8d0c0 0%, #c4bcb0 100%); }

.coll-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.collections-index .section-header {
    max-width: 46rem;
    margin-inline: auto;
}

.collections-index .section-header .section-sub {
    display: block;
}

.collections-index__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
}

.collections-index__card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.collections-index__cover {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.collections-index__cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collections-index__fallback {
    height: 100%;
    display: grid;
    place-items: center;
    padding: 2rem;
    color: var(--text2);
}

.collections-index__fallback svg {
    width: 50%;
    max-width: 10rem;
    height: auto;
}

.collections-index__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.125rem, 2vw, 1.5rem);
}

.collections-index__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--text2);
}

.collections-index__availability {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.collections-index__availability::before {
    content: "";
    width: 0.4375rem;
    height: 0.4375rem;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.collections-index__availability.is-available { color: #286344; }
[data-theme="dark"] .collections-index__availability.is-available { color: #9acdad; }

.collections-index__body h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.75rem, 2.5vw, 2.125rem);
    font-weight: 500;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.collections-index__body h2 a {
    color: var(--text);
    text-decoration: none;
}

.collections-index__description {
    margin: 0;
    color: var(--text2);
    font-size: 1rem;
    line-height: 1.65;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.collections-index__footer {
    margin-top: auto;
    padding-top: 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.collections-index__price {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
}

.collections-index__action {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text);
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
}

.collections-index__action:hover { background: var(--bg3); border-color: var(--gold); }
.collections-index a:focus-visible { outline: 2px solid var(--text); outline-offset: 3px; }

@media (min-width: 768px) {
    .collections-index__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1200px) {
    .collections-index__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.coll-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.coll-card {
    display: grid;
    grid-template-columns: minmax(14rem, 0.92fr) minmax(0, 1.08fr);
    min-height: 19rem;
    border: 1px solid var(--border);
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.coll-card:hover {
    transform: translateY(-0.25rem);
    border-color: var(--gold);
    box-shadow: var(--card-hover-shadow);
}

.coll-card .coll-visual {
    min-height: 19rem;
    overflow: hidden;
}

.collection-media-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.coll-card .coll-content {
    display: grid;
    align-content: end;
    gap: 0.8rem;
    padding: 1.8rem 1.5rem;
}

.coll-card .coll-tag {
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.coll-card .coll-content h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.02;
    color: var(--text);
}

.coll-card .coll-content p {
    margin: 0;
    color: var(--text2);
    line-height: 1.7;
}

.coll-card .coll-link {
    opacity: 1;
    transform: none;
    margin-top: 0.4rem;
}

.coll-card .coll-link::after {
    content: "→";
}

.coll-card:hover .coll-link::after {
    transform: translateX(0.25rem);
}

.coll-shape {
    position: relative;
    width: 8.5rem;
    height: 8.5rem;
}

.coll-shape::before,
.coll-shape::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.coll-c1 .coll-shape::before,
.coll-c4 .coll-shape::before {
    width: 6.75rem;
    height: 6.75rem;
    border-radius: 50%;
    border: 3px solid rgba(201, 168, 76, 0.72);
    box-shadow: 0 0 2rem rgba(201, 168, 76, 0.18), inset 0 0 1.2rem rgba(201, 168, 76, 0.08);
}

.coll-c1 .coll-shape::after,
.coll-c4 .coll-shape::after {
    width: 1rem;
    height: 1rem;
    top: calc(50% + 3.85rem);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.coll-c2 .coll-shape::before {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    border: 3px solid rgba(201, 168, 76, 0.76);
    box-shadow: 0 0 1.5rem rgba(201, 168, 76, 0.2);
}

.coll-c3 .coll-shape::before {
    width: 0.7rem;
    height: 4rem;
    border-radius: 999px;
    background: linear-gradient(to bottom, var(--gold-light), var(--gold-dark));
    box-shadow: 1.2rem 0 0 0 rgba(201, 168, 76, 0.92);
}

.coll-c3 .coll-shape::after {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    top: calc(50% + 2.75rem);
    background: radial-gradient(circle at 35% 35%, var(--gold-light), var(--gold));
    box-shadow: 1.2rem 0 0 0 rgba(201, 168, 76, 0.92);
}

.mini-necklace {
    width: 8.75rem;
    height: 8.75rem;
    border-radius: 50%;
    border: 2px solid rgba(201, 168, 76, 0.6);
    position: relative;
    box-shadow: 0 0 1.875rem rgba(201, 168, 76, 0.2);
}

.mini-necklace::after {
    content: "";
    position: absolute;
    bottom: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.25rem;
    height: 1.25rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.mini-ring {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 3px solid rgba(201, 168, 76, 0.7);
    box-shadow: 0 0 1.25rem rgba(201, 168, 76, 0.25), inset 0 0 1.25rem rgba(201, 168, 76, 0.1);
}

.mini-earring {
    display: flex;
    gap: 1.25rem;
}

.mini-earring-drop {
    width: 0.625rem;
    height: 3.5rem;
    border-radius: 999px;
    background: linear-gradient(to bottom, var(--gold-light), var(--gold-dark));
    position: relative;
}

.mini-earring-drop::after {
    content: "";
    position: absolute;
    bottom: -0.9rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.mini-bracelet {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    border: 3px solid rgba(201, 168, 76, 0.7);
    border-right-color: transparent;
    box-shadow: 0 0 1.875rem rgba(201, 168, 76, 0.18);
}

.products {
    background: var(--bg);
}

#featured.products {
    background: var(--bg2);
}

.product-grid,
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.product-card,
.content-card,
.journal-card,
.shop-filter-card,
.product-summary-card,
.testimonial-card,
.promo2-card,
.auth-card {
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.product-card:hover,
.journal-card:hover,
.content-card:hover,
.testimonial-card:hover,
.promo2-card:hover {
    box-shadow: var(--card-hover-shadow);
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    padding: 0;
    height: 100%;
}

.product-card-link {
    display: grid;
    grid-template-rows: auto 1fr;
    flex: 1 1 auto;
    min-height: 0;
}

.product-card-link-static {
    cursor: default;
}

.product-card-link:focus-visible {
    outline: none;
}

.product-card-link:focus-visible .product-media,
.product-card-link:focus-visible .product-info {
    box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.55);
}

.product-media {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    width: 100%;
    margin-inline: auto;
    background: linear-gradient(160deg, rgba(201, 168, 76, 0.08), transparent), var(--surface2);
    padding: 0;
    overflow: hidden;
    isolation: isolate;
}

.collections-section .coll-visual .product-media,
.coll-card .coll-visual .product-media,
.collection-card-media {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 100%;
    margin: 0;
    background: transparent;
    touch-action: pan-y;
}

.collection-card-media-nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
/*    background: rgba(12, 11, 9, 0.42);*/
    color: #f7f1e3;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.collection-card-media-nav svg {
    width: 1.5rem;
    height: 1.5rem;
    pointer-events: none;
}

.collection-card-media-nav--prev {
    left: 0.65rem;
}

.collection-card-media-nav--next {
    right: 0.65rem;
}

.collection-card-media-nav:hover,
.collection-card-media-nav:focus-visible {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(12, 11, 9, 0.62);
    outline: none;
}

.collections-section .collection-card-media .product-media-dots,
.coll-card .collection-card-media .product-media-dots {
    display: none;
}

.product-media--carousel {
    touch-action: pan-y;
}

.product-media-viewport {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.product-media-track {
    display: flex;
    width: 100%;
    height: 100%;
    transform: translateX(calc(var(--product-media-index, 0) * -100%));
    transition: transform 0.28s ease;
    will-change: transform;
}

.product-media--carousel.is-dragging .product-media-track {
    transition: none;
}

.product-media-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.product-media-dots {
    position: absolute;
    left: 0.55rem;
    bottom: 0.55rem;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    padding: 0.28rem 0.42rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface-strong) 78%, rgba(255, 255, 255, 0.55));
    border: 1px solid rgba(201, 168, 76, 0.22);
    backdrop-filter: blur(8px);
}

.product-media-dot {
    width: 0.45rem;
    height: 0.45rem;
    padding: 0;
    border-radius: 999px;
    border: 1.5px solid rgba(44, 36, 25, 0.72);
    background: transparent;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.product-media-dot.is-active {
    background: rgba(44, 36, 25, 0.88);
    border-color: rgba(44, 36, 25, 0.88);
    transform: scale(1.08);
}

[data-theme="dark"] .product-media-dots {
    background: color-mix(in srgb, var(--surface-strong) 82%, rgba(0, 0, 0, 0.35));
    border-color: rgba(201, 168, 76, 0.28);
}

[data-theme="dark"] .product-media-dot {
    border-color: rgba(246, 239, 223, 0.72);
}

[data-theme="dark"] .product-media-dot.is-active {
    background: rgba(246, 239, 223, 0.92);
    border-color: rgba(246, 239, 223, 0.92);
}

@media (prefers-reduced-motion: reduce) {
    .product-media-track {
        transition: none;
    }
}

.product-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 11, 9, 0.02), rgba(12, 11, 9, 0.18));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
    pointer-events: none;
}

.product-info {
    padding: 0.95rem 0.9rem 0.9rem;
    display: grid;
    gap: 0.4rem;
    flex: 1 1 auto;
    position: relative;
}

.product-info-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    min-width: 0;
}

.product-info-top .product-brand {
    min-width: 0;
    flex: 1 1 auto;
}

.product-card {
    position: relative;
}

.product-favorite-form--card {
    flex: 0 0 auto;
    margin: 0;
    line-height: 0;
    z-index: 4;
}

.product-favorite-form--detail {
    margin-left: 0;
    line-height: 0;
}

.product-detail-kicker-row .product-detail-sku {
    margin-left: auto;
}

[data-product-detail-page] .product-detail-heading {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

[data-product-detail-page] .product-detail-heading .product-detail-title {
    flex: 1 1 auto;
    min-width: 0;
}

[data-product-detail-page] .product-detail-heading .product-favorite-form--detail {
    flex: 0 0 auto;
    display: inline-flex;
    margin-top: 0.28rem;
}

[data-product-detail-page] .product-detail-heading .product-favorite-btn {
    width: 1.85rem;
    height: 1.85rem;
}

[data-product-detail-page] .product-detail-heading .product-favorite-icon {
    width: 1.35rem;
    height: 1.35rem;
}

.product-favorite-btn {
    display: inline-grid;
    place-items: center;
    width: auto;
    height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.product-favorite-btn:hover {
    transform: scale(1.08);
    color: var(--gold-light, #e8d5a3);
    background: transparent;
}

.product-favorite-btn.is-favorited {
    background: transparent;
    color: var(--gold);
    border: 0;
}

.product-favorite-icon {
    width: 1.15rem;
    height: 1.15rem;
    display: block;
}

.product-favorite-icon--filled {
    display: none;
}

.product-favorite-btn.is-favorited .product-favorite-icon--outline {
    display: none;
}

.product-favorite-btn.is-favorited .product-favorite-icon--filled {
    display: block;
}

.product-favorite-tip {
    position: fixed;
    z-index: 30;
    width: min(15.5rem, calc(100vw - 2rem));
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 0.85rem;
    background: rgba(12, 11, 9, 0.96);
    color: #f6f0e3;
    font-family: "Jost", sans-serif;
    font-size: 0.8rem;
    line-height: 1.45;
    box-shadow: 0 16px 40px rgba(12, 11, 9, 0.35);
    pointer-events: none;
    opacity: 0;
    transform: translateY(0.35rem);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-favorite-tip.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.product-favorite-tip strong {
    display: block;
    margin-bottom: 0.2rem;
    font-family: "Cinzel", serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light, #e8d5a3);
}

[data-theme="light"] .product-favorite-btn {
    background: transparent;
    color: var(--gold);
}

[data-theme="light"] .product-favorite-btn.is-favorited {
    color: var(--gold);
}

[data-theme="light"] .product-favorite-tip {
    background: rgba(255, 252, 246, 0.98);
    color: #2a2418;
    border-color: rgba(201, 168, 76, 0.45);
    box-shadow: 0 16px 40px rgba(42, 36, 24, 0.12);
}

[data-theme="light"] .product-favorite-tip strong {
    color: #8a6a28;
}

.product-detail-kicker-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product-card-purchase {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    gap: 0.45rem;
    padding: 0.65rem 0.7rem 0.75rem;
    flex-wrap: nowrap;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(0, 0, 0, 0.05));
    margin-top: auto;
    overflow: visible;
}

.product-card-purchase-form {
    flex: 1 1 0;
    min-width: 0;
    margin-top: 0;
}

.product-card-purchase .product-card-action.btn-primary,
.product-card-purchase .product-card-action.btn-outline {
    padding: 0.5rem 0.55rem;
    min-height: var(--btn-height-sm);
}

.product-card-action {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: var(--btn-height-sm);
    padding: 0.5rem 0.55rem;
    white-space: nowrap;
    letter-spacing: 0.08em;
    font-size: 0.66rem;
    line-height: 1.1;
}

.product-card-action .admin-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.product-card-action .admin-nav-icon svg {
    width: 0.85rem;
    height: 0.85rem;
}

.product-card-action .product-commerce-icon {
    width: 0.85rem;
    height: 0.85rem;
    flex-shrink: 0;
}

.product-card-action .product-commerce-icon svg {
    width: 100%;
    height: 100%;
}

.product-card-action span:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shop-products-grid .product-card-purchase {
    gap: 0.4rem;
    padding: 0.75rem 0.7rem 0.9rem;
}

.shop-products-grid .product-card-purchase .product-card-action.btn-primary,
.shop-products-grid .product-card-purchase .product-card-action.btn-outline {
    padding: 0.45rem 0.4rem;
    min-height: 2.35rem;
}

.shop-products-grid .product-card-action {
    min-height: 2.35rem;
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    gap: 0.28rem;
}

.shop-products-grid .product-card-action .admin-nav-icon svg,
.shop-products-grid .product-card-action .product-commerce-icon {
    width: 0.78rem;
    height: 0.78rem;
}

.product-card-stock-state {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    min-height: 2.9rem;
    padding: 0.7rem 0.9rem;
    border: 1px dashed rgba(201, 168, 76, 0.26);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.92rem;
}

.product-card-stock-state .product-commerce-icon {
    width: 0.9rem;
    height: 0.9rem;
    flex-shrink: 0;
    color: var(--gold);
}

.product-card-oos-wrap {
    position: relative;
    display: flex;
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
}

.product-card-oos-trigger {
    display: flex;
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    color: inherit;
    text-align: inherit;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    touch-action: manipulation;
}

.product-card-oos-trigger .product-card-stock-state--oos {
    pointer-events: none;
    border-style: solid;
    border-color: rgba(201, 168, 76, 0.35);
    color: var(--text-soft);
}

.product-card-oos-trigger:focus-visible {
    outline: 2px solid rgba(201, 168, 76, 0.55);
    outline-offset: 2px;
}

.product-card-oos-tip {
    position: absolute;
    bottom: calc(100% + 0.45rem);
    left: 50%;
    z-index: 8;
    width: max-content;
    max-width: min(16rem, calc(100vw - 2rem));
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 0.55rem;
    background: rgba(12, 11, 9, 0.96);
    color: #f6f0e3;
    font-family: "Jost", sans-serif;
    font-size: 0.74rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-align: center;
    white-space: normal;
    box-shadow: 0 10px 24px rgba(12, 11, 9, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(0.2rem);
    transition: opacity 0.14s ease, visibility 0.14s ease, transform 0.14s ease;
}

.product-card-oos-wrap.is-tip-visible .product-card-oos-tip,
.product-card-oos-trigger:focus-visible + .product-card-oos-tip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (hover: hover) and (pointer: fine) {
    .product-card-oos-wrap:hover .product-card-oos-tip {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.product-card.is-oos-tip-open {
    overflow: visible;
    z-index: 6;
}

[data-theme="light"] .product-card-oos-tip {
    background: rgba(255, 252, 246, 0.98);
    color: #2a2418;
    border-color: rgba(201, 168, 76, 0.45);
    box-shadow: 0 10px 24px rgba(42, 36, 24, 0.12);
}

@media (max-width: 640px) {
    .product-card-purchase {
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0.45rem 0.6rem;
    }

    .product-card-purchase .product-card-purchase-form--buy-now,
    .product-card-purchase .product-card-action--buy-now {
        display: none;
    }

    .product-card-purchase .product-card-purchase-form {
        flex: 1 1 100%;
        min-width: 0;
        width: 100%;
    }

    .product-card-purchase .product-card-action {
        width: 100%;
        min-height: 2.25rem;
        font-size: 0.62rem;
        letter-spacing: 0.06em;
        padding: 0.4rem 0.55rem;
    }
}

.product-media-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    max-height: none;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s cubic-bezier(.2, .8, .2, 1), filter 0.35s ease;
}

.product-sale-banner {
    position: absolute;
    top: 0;
    left: 0.85rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 2.85rem;
    color: #fff8ef;
    pointer-events: none;
    filter: drop-shadow(0 0.4rem 0.55rem rgba(0, 0, 0, 0.32));
}

.product-sale-banner__pin {
    width: 0.42rem;
    height: 0.42rem;
    margin-bottom: -0.12rem;
    border-radius: 999px;
    background: radial-gradient(circle at 35% 30%, #f3e2b0 0%, #c9a84c 45%, #8a6a24 100%);
    box-shadow: 0 0 0 1px rgba(255, 248, 230, 0.35), 0 1px 2px rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.product-sale-banner__flag {
    width: 100%;
    padding: 0.55rem 0.2rem 0.95rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, transparent 38%),
        linear-gradient(165deg, #b4232a 0%, #8f1820 55%, #6f1218 100%);
    border: 1px solid rgba(232, 196, 120, 0.42);
    border-top: 0;
    text-align: center;
    line-height: 1.05;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.7rem), 50% 100%, 0 calc(100% - 0.7rem));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.product-sale-banner__value {
    display: block;
    font-family: "Cinzel", serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
}

.product-sale-banner__value--text {
    font-size: 0.52rem;
    letter-spacing: 0.06em;
    line-height: 1.2;
    padding: 0 0.1rem;
}

.product-sale-banner__label {
    display: block;
    margin-top: 0.12rem;
    font-family: "Jost", sans-serif;
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.92;
}

.product-badge-stack {
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
    z-index: 2;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.28rem;
    max-width: calc(100% - 3.25rem);
}

.product-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    min-height: 1.15rem;
    padding: 0.18rem 0.48rem;
    border: 1px solid rgba(232, 204, 138, 0.48);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 248, 230, 0.12) 0%, transparent 46%),
        linear-gradient(135deg, rgba(28, 24, 18, 0.82) 0%, rgba(12, 11, 9, 0.72) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 248, 230, 0.16),
        0 0.2rem 0.45rem rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    color: #f6edd4;
    font-family: "Cinzel", serif;
    font-size: 0.46rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-badge::before {
    content: "";
    width: 0.22rem;
    height: 0.22rem;
    border-radius: 1px;
    background: linear-gradient(135deg, #f3e2b0 0%, #c9a84c 55%, #8a6a24 100%);
    box-shadow: 0 0 0 1px rgba(255, 248, 230, 0.18);
    transform: rotate(45deg);
    flex: 0 0 auto;
}

.product-card-quickview {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 5;
    width: 2.3rem;
    height: 2.3rem;
    padding: 0;
    border: 1px solid rgba(201, 168, 76, 0.28);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    background: rgba(12, 11, 9, 0.18);
    backdrop-filter: blur(10px);
    opacity: 0.92;
    cursor: pointer;
    transform: translateY(0);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.product-card-quickview svg {
    width: 0.95rem;
    height: 0.95rem;
}

.product-brand,
.product-price {
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.product-name {
    margin: 0;
    font-size: clamp(1.15rem, 1.35vw, 1.55rem);
    line-height: 1.12;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    transition: color 0.35s ease, transform 0.35s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 0;
}

.product-visual {
    position: relative;
    z-index: 0;
    flex-shrink: 0;
    transition: transform 0.6s cubic-bezier(.2, .8, .2, 1), filter 0.35s ease;
}

.pv-ring {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    border: 0.25rem solid var(--gold);
    box-shadow: 0 0 2rem rgba(201, 168, 76, 0.25);
}

.pv-necklace {
    width: 8rem;
    height: 6.25rem;
    border: 0.2rem solid transparent;
    border-top-color: var(--gold);
    border-left-color: var(--gold);
    border-right-color: var(--gold);
    border-radius: 50% 50% 42% 42%;
}

.pv-necklace::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.85rem;
    transform: translateX(-50%);
    width: 1.35rem;
    height: 1.35rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.pv-bracelet {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    border: 0.35rem solid rgba(201, 168, 76, 0.86);
    border-right-color: transparent;
}

.price-strike {
    margin-left: 0.75rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-card:hover {
    transform: translateY(-0.35rem);
}

.product-card:hover .product-media::after,
.product-card-link:focus-visible .product-media::after {
    opacity: 1;
}

.product-card:hover .product-media-image,
.product-card:hover .product-visual,
.product-card-link:focus-visible .product-media-image,
.product-card-link:focus-visible .product-visual {
    transform: scale(1.035);
}

.product-card:hover .product-name,
.product-card-link:focus-visible .product-name {
    color: var(--gold);
    transform: translateX(0.12rem);
}

.product-card:hover .product-card-quickview,
.product-card-quickview:hover,
.product-card-quickview:focus-visible {
    transform: translateY(-0.08rem);
    border-color: rgba(201, 168, 76, 0.5);
    background: rgba(12, 11, 9, 0.32);
    outline: none;
}

[data-theme="light"] .product-badge {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 236, 0.9) 100%);
    color: var(--gold-dark);
    border-color: rgba(180, 155, 100, 0.42);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 0.15rem 0.35rem rgba(44, 36, 25, 0.08);
}

[data-theme="light"] .product-sale-banner__flag {
    border-color: rgba(180, 155, 100, 0.5);
}

[data-theme="light"] .product-card-quickview {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(180, 155, 100, 0.32);
    color: var(--gold-dark);
}

[data-theme="light"] .product-media::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(201, 168, 76, 0.1));
}

.arrivals {
    background: var(--bg);
}

.arrivals-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
}

.arrivals-visual {
    position: relative;
}

.arrivals-visual-inner {
    min-height: 31rem;
    border: 1px solid var(--border);
    background: linear-gradient(160deg, rgba(201, 168, 76, 0.08), transparent), var(--surface2);
    box-shadow: var(--card-shadow);
    display: grid;
    place-items: center;
}

.arrivals-accent,
.arrivals-accent2,
.promo2-deco {
    position: absolute;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.arrivals-accent {
    top: -1.5rem;
    right: -1.5rem;
}

.arrivals-accent2 {
    bottom: -2rem;
    left: -2rem;
}

.arrivals-tag {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    padding: 0.7rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    font-family: "Cinzel", serif;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.arrivals-desc {
    margin-bottom: 2rem;
}

.arrivals-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.arrivals-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: border-color var(--transition), background var(--transition);
}

.arrivals-item:hover {
    border-color: color-mix(in srgb, var(--gold) 40%, var(--border));
}

.arrivals-item:last-child {
    border-bottom: none;
}

.arrivals-item-img {
    width: 4rem;
    height: 4rem;
    display: grid;
    place-items: center;
    background: var(--surface2);
    border: 1px solid var(--border);
    overflow: hidden;
    border-radius: 0.1rem;
    flex-shrink: 0;
}

.arrivals-item-info {
    min-width: 0;
}

.arrivals-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arrivals-fallback-ring {
    width: 2.25rem;
    height: 2.25rem;
    border-width: 2px;
}

.arrivals-item-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    color: var(--text);
}

.arrivals-item-detail,
.arrivals-item-price {
    font-size: 0.88rem;
    color: var(--text2);
}

.arrivals-item-price {
    font-family: "Cinzel", serif;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--gold);
    white-space: nowrap;
}

@media (max-width: 980px) {
    .arrivals-layout {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .arrivals-text {
        order: 1;
    }

    .arrivals-visual {
        order: 2;
    }

    .arrivals-visual-inner {
        min-height: 12rem;
    }

    .arrivals-accent,
    .arrivals-accent2 {
        width: 4.75rem;
        height: 4.75rem;
    }

    .arrivals-tag {
        right: 1rem;
        bottom: 1rem;
        padding: 0.55rem 0.8rem;
        font-size: 0.62rem;
    }

    .arrivals-desc {
        margin-bottom: 1.35rem;
        font-size: 0.94rem;
        line-height: 1.72;
    }

    .arrivals-list {
        gap: 0.7rem;
        margin-bottom: 1.5rem;
    }

    .arrivals-item {
        display: flex;
        align-items: center;
        gap: 0.9rem;
        padding: 0.8rem 0.85rem;
        border: 1px solid var(--border);
        border-radius: 0.12rem;
        background: var(--card-bg);
        box-shadow: var(--card-shadow);
    }

    .arrivals-item:last-child {
        border-bottom: 1px solid var(--border);
    }

    .arrivals-item-img {
        width: 5.5rem;
        height: 5.5rem;
    }

    .arrivals-item-name {
        font-size: 1.2rem;
        line-height: 1.15;
    }

    .arrivals-item-detail {
        font-size: 0.72rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-top: 0.15rem;
    }

    .arrivals-item-price {
        font-size: 0.76rem;
    }
}

@media (max-width: 640px) {
    .arrivals-visual {
        display: none;
    }

    .arrivals-layout {
        gap: 0;
    }

    .arrivals-desc {
        margin-bottom: 1.15rem;
        font-size: 0.88rem;
        line-height: 1.65;
    }

    .arrivals-list {
        gap: 0.6rem;
        margin-bottom: 1.25rem;
    }

    .arrivals-item {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        padding: 0.7rem 0.75rem;
    }

    .arrivals-item-img {
        width: 5rem;
        height: 5rem;
    }

    .arrivals-item-info {
        flex: 1 1 auto;
        min-width: 0;
    }

    .arrivals-item-price {
        flex-shrink: 0;
        padding-left: 0.25rem;
    }

    .arrivals-item-name {
        font-size: 1.05rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .arrivals-item-detail {
        font-size: 0.66rem;
    }

    .arrivals-item-price {
        font-size: 0.72rem;
        align-self: center;
    }

    .arrivals-text .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

.story {
    background: var(--bg2);
}

.story-inner {
    display: grid;
    grid-template-columns: minmax(15rem, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(2.5rem, 4vw, 4.5rem);
    align-items: center;
}

.story-visual {
    position: relative;
    width: 100%;
    max-width: 26rem;
    margin-inline: auto;
    border: 1px solid var(--border);
    background: var(--surface2);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    isolation: isolate;
}

.story-visual-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 941 / 1672;
    object-fit: contain;
    object-position: center;
}

.story-text {
    max-width: 36rem;
}

.hero-visual-inner .orbit-one,
.hero-visual-inner .orbit-two,
.hero-visual-inner .orbit-three {
    position: absolute;
    border-radius: 50%;
}

.hero-visual-inner .orbit-one {
    width: min(32rem, 72vw);
    height: min(32rem, 72vw);
    border: 1.5px solid rgba(201, 168, 76, 0.36);
    opacity: 0.5;
    animation: spin-slow 25s linear infinite;
}

.hero-visual-inner .orbit-two {
    width: min(23rem, 52vw);
    height: min(23rem, 52vw);
    border: 1px solid rgba(201, 168, 76, 0.25);
    opacity: 0.35;
    animation: spin-slow 18s linear infinite reverse;
}

.hero-visual-inner .orbit-three {
    width: min(14rem, 32vw);
    height: min(14rem, 32vw);
    border: 2px solid rgba(201, 168, 76, 0.76);
    box-shadow: 0 0 3rem rgba(201, 168, 76, 0.18), inset 0 0 3rem rgba(201, 168, 76, 0.1);
}

.hero-gem {
    position: absolute;
    width: 5rem;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-dark) 70%, #7a5a1a 100%);
    clip-path: polygon(50% 0%, 100% 35%, 100% 65%, 50% 100%, 0% 65%, 0% 35%);
    box-shadow: 0 0 2.5rem rgba(201, 168, 76, 0.28), 0 0 5rem rgba(201, 168, 76, 0.12);
}

.story-core {
    width: 6.8rem;
    height: 6.8rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 0 3rem var(--gold-glow);
}

.story-year {
    position: absolute;
    z-index: 1;
    bottom: 1.15rem;
    right: 1.15rem;
    padding: 0.65rem 0.9rem;
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    border: 1px solid var(--border);
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.68rem;
    backdrop-filter: blur(6px);
}

.story-desc {
    margin: 0 0 1.1rem;
    max-width: 34rem;
    color: var(--text2);
    line-height: 1.75;
}

.story-desc:last-of-type {
    margin-bottom: 0;
}

.story-quote {
    margin: 1.5rem 0 0;
    padding-left: 1.35rem;
    border-left: 1px solid var(--gold);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.35rem, 1.8vw, 1.55rem);
    color: var(--text);
    line-height: 1.45;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.25rem;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-family: "Cinzel", serif;
    font-size: 0.68rem;
    color: var(--text2);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .story {
        padding: 2.5rem 0;
    }

    .story-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
        text-align: center;
    }

    .story-visual {
        max-width: min(22rem, 78vw);
    }

    .story-text {
        max-width: 34rem;
    }

    .story-text > .divider {
        margin-inline: auto;
    }

    .story-desc {
        margin-inline: auto;
    }

    .story-quote {
        text-align: left;
        margin-inline: auto;
        max-width: 30rem;
    }

    .story-stats {
        gap: 0.85rem;
    }

    .stat-num {
        font-size: clamp(1.55rem, 5vw, 2rem);
    }

    .stat-label {
        font-size: 0.58rem;
        letter-spacing: 0.12em;
        line-height: 1.35;
    }
}

@media (max-width: 640px) {
    .story-visual {
        max-width: min(18.5rem, 86vw);
    }

    .story-text > .story-desc ~ .story-desc {
        display: none;
    }

    .story-quote {
        font-size: 1.28rem;
    }

    .story-stats {
        gap: 0.5rem;
        margin-top: 1.35rem;
        padding-top: 1.2rem;
    }

    .stat-num {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.52rem;
        letter-spacing: 0.08em;
    }
}

.categories {
    background: var(--bg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.cat-card {
    position: relative;
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 16rem;
    padding: 1.35rem 1.5rem 1.5rem;
    border: 1px solid var(--border);
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
    isolation: isolate;
    align-items: end;
    text-decoration: none;
    color: inherit;
}

.cat-card-has-icon {
    background:
        radial-gradient(circle at 50% 38%, rgba(201, 168, 76, 0.1) 0%, rgba(201, 168, 76, 0.02) 42%, transparent 68%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, transparent 38%),
        var(--card-bg);
}

[data-theme="light"] .cat-card-has-icon {
    background:
        radial-gradient(circle at 50% 38%, rgba(177, 126, 39, 0.12) 0%, rgba(177, 126, 39, 0.03) 42%, transparent 68%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.42) 0%, transparent 38%),
        var(--card-bg);
}

.cat-card-has-media {
    background-image: var(--cat-card-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cat-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(10, 9, 6, 0.08) 0%, rgba(10, 9, 6, 0.34) 45%, rgba(10, 9, 6, 0.84) 100%),
        linear-gradient(135deg, rgba(10, 9, 6, 0.34), rgba(10, 9, 6, 0.12));
}

.cat-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.45rem;
    align-content: end;
    justify-items: start;
    max-width: 13rem;
}

.cat-card:hover {
    border-color: var(--gold);
    transform: translateY(-0.2rem);
    box-shadow: var(--card-hover-shadow);
}

.cat-card-has-icon:hover .cat-icon-fallback::before {
    transform: scale(1.06);
    opacity: 1;
}

.cat-icon-fallback {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    align-self: center;
    justify-self: center;
    width: 100%;
    min-height: 7.5rem;
    margin-bottom: 0.35rem;
}

.cat-icon-fallback::before {
    content: "";
    position: absolute;
    width: 6.75rem;
    height: 6.75rem;
    border-radius: 999px;
    border: 1px solid rgba(201, 168, 76, 0.14);
    background: radial-gradient(circle, rgba(201, 168, 76, 0.14) 0%, rgba(201, 168, 76, 0.04) 58%, transparent 72%);
    opacity: 0.92;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
}

.cat-icon-fallback .coll-icon-fallback__glyph {
    position: relative;
    z-index: 1;
    color: var(--gold);
}

.cat-icon-fallback .coll-jewelry-icon {
    width: 3.85rem;
    height: 3.85rem;
    display: block;
    filter: drop-shadow(0 0.35rem 0.85rem rgba(201, 168, 76, 0.18));
}

[data-theme="light"] .cat-icon-fallback::before {
    border-color: rgba(177, 126, 39, 0.18);
    background: radial-gradient(circle, rgba(177, 126, 39, 0.16) 0%, rgba(177, 126, 39, 0.05) 58%, transparent 72%);
}

[data-theme="light"] .cat-icon-fallback .coll-icon-fallback__glyph {
    color: rgba(146, 107, 42, 0.94);
}

.cat-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.75rem;
    color: var(--text);
    line-height: 0.96;
    text-align: left;
}

.cat-count {
    font-size: 0.75rem;
    color: color-mix(in srgb, var(--text) 82%, rgba(255, 255, 255, 0.1));
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: left;
}

.cat-card-has-media .cat-name,
.cat-card-has-media .cat-count {
    text-shadow: 0 0.35rem 1.15rem rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .cat-card-has-media .cat-card-overlay {
    background:
        linear-gradient(180deg, rgba(10, 9, 6, 0.16) 0%, rgba(10, 9, 6, 0.42) 45%, rgba(10, 9, 6, 0.8) 100%),
        linear-gradient(135deg, rgba(10, 9, 6, 0.28), rgba(10, 9, 6, 0.16));
}

[data-theme="light"] .cat-card-has-media .cat-name {
    color: #f7f1e3;
}

[data-theme="light"] .cat-card-has-media .cat-count {
    color: rgba(247, 241, 227, 0.88);
}

@media (max-width: 980px) and (min-width: 641px) {
    .categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .cat-card {
        min-height: 11rem;
        padding: 1.1rem 1.15rem 1.2rem;
    }

    .cat-icon-fallback {
        min-height: 5.5rem;
        margin-bottom: 0.2rem;
    }

    .cat-icon-fallback::before {
        width: 5rem;
        height: 5rem;
    }

    .cat-icon-fallback .coll-jewelry-icon {
        width: 2.75rem;
        height: 2.75rem;
    }

    .cat-name {
        font-size: 1.25rem;
    }

    .cat-count {
        font-size: 0.68rem;
    }
}

@media (max-width: 640px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .cat-card-has-icon {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        min-height: auto;
        padding: 0;
        grid-template-rows: unset;
    }

    .cat-card-has-icon .cat-icon-fallback {
        flex: 0 0 5.25rem;
        width: 5.25rem;
        min-width: 5.25rem;
        min-height: 5.75rem;
        margin-bottom: 0;
        align-self: stretch;
    }

    .cat-card-has-icon .cat-icon-fallback::before {
        width: 3.5rem;
        height: 3.5rem;
    }

    .cat-card-has-icon .coll-jewelry-icon {
        width: 2rem;
        height: 2rem;
    }

    .cat-card-has-icon .cat-copy {
        flex: 1 1 auto;
        max-width: none;
        padding: 0.9rem 1rem 0.95rem;
        border-left: 1px solid var(--border);
        align-content: center;
        gap: 0.2rem;
    }

    .cat-card-has-icon .cat-name {
        font-size: 1.1rem;
        line-height: 1.15;
    }

    .cat-card-has-icon .cat-count {
        font-size: 0.62rem;
        letter-spacing: 0.1em;
    }

    .cat-card-has-media {
        min-height: 12rem;
        padding: 1rem 1.15rem 1.15rem;
    }
}

.promo {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.16), rgba(201, 168, 76, 0.03)), var(--bg3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.promo-inner {
    padding: 4.5rem 0;
    text-align: center;
}

.promo-eyebrow {
    font-family: "Jost", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.promo-title {
    margin: 0 0 1rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    font-weight: 300;
}

.promo-sub {
    margin: 0 auto 2rem;
    max-width: 34rem;
    color: var(--text2);
    line-height: 1.8;
}

.testimonials {
    background: var(--bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border: 1px solid var(--border);
}

.testimonial-stars {
    color: var(--gold);
    letter-spacing: 0.24em;
    margin-bottom: 1rem;
}

.testimonial-text {
    margin: 0 0 0.75rem;
    color: var(--text2);
    line-height: 1.9;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
}

.testimonial-card.is-expanded .testimonial-text {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
}

.testimonial-author {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: auto;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #0c0b09;
    font-family: "Cinzel", serif;
    font-size: 0.72rem;
}

.testimonial-name {
    font-family: "Cinzel", serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--text3);
}

.testimonial-read-more {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    margin: 0 0 1rem;
    padding: 0;
    border: 0;
    background: none;
    color: color-mix(in srgb, var(--text) 78%, var(--gold));
    font-family: "Jost", sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color var(--transition);
}

.testimonial-read-more[hidden] {
    display: none !important;
}

.testimonial-read-more:hover,
.testimonial-read-more:focus-visible {
    color: var(--gold);
    outline: none;
}

@media (max-width: 980px) {
    .testimonials-grid {
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.35rem 1.25rem;
    }

    .testimonial-stars {
        margin-bottom: 0.65rem;
        font-size: 0.72rem;
        letter-spacing: 0.18em;
    }

    .testimonial-text {
        margin-bottom: 0.65rem;
        font-size: 0.94rem;
        line-height: 1.65;
    }

    .testimonial-read-more {
        margin-bottom: 0.85rem;
    }

    .testimonial-author {
        gap: 0.75rem;
    }

    .testimonial-avatar {
        width: 2.35rem;
        height: 2.35rem;
        font-size: 0.64rem;
    }

    .testimonial-name {
        font-size: 0.66rem;
    }

    .testimonial-location {
        font-size: 0.78rem;
    }
}

@media (max-width: 720px) {
    .testimonial-card {
        padding: 1.2rem 1.15rem;
    }

    .testimonial-text {
        font-size: 0.92rem;
    }
}

.promo2 {
    padding: 2rem 0 5rem;
    background: var(--bg2);
}

.promo2-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.promo2-card {
    position: relative;
    padding: 2.5rem;
    border: 1px solid var(--border);
    overflow: hidden;
}

.promo2-deco {
    top: -2rem;
    left: -2rem;
}

.promo2-deco-alt {
    top: auto;
    bottom: -2rem;
    left: auto;
    right: -2rem;
}

.promo2-title {
    margin: 0 0 1rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 300;
}

.promo2-sub {
    margin: 0 0 1.75rem;
    color: var(--text2);
    line-height: 1.8;
}

.journal-home {
    background: var(--bg);
}

.content-hero {
    padding: 2.5rem 0 1.65rem;
    background: linear-gradient(135deg, var(--bg3), var(--bg2) 55%, var(--bg));
    border-bottom: 1px solid var(--border);
}

.content-hero .section-sub {
    margin: 0;
    max-width: 38rem;
}

.content-hero .section-label {
    margin-bottom: 0.75rem;
}

.content-hero-compact .section-title {
    max-width: 22ch;
}

.content-shell,
.contact-layout {
    display: grid;
    gap: 1.5rem;
}

.content-card,
.journal-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.journal-card {
    padding: 0;
    overflow: hidden;
}

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

.journal-card-link:hover .journal-image {
    transform: scale(1.04);
}

.journal-card-link:hover .journal-read-more {
    color: var(--gold);
}

.journal-card-media {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg3), var(--bg2));
}

.journal-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(176, 142, 92, 0.35), rgba(34, 28, 24, 0.9));
}

.journal-body {
    display: grid;
    gap: 0.85rem;
    padding: 1.35rem 1.4rem 1.5rem;
}

.journal-title {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.55rem, 2vw, 1.85rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text);
}

.journal-excerpt {
    margin: 0;
    color: var(--text2);
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.journal-tags,
.blog-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.journal-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border: 1px solid var(--border2);
    color: var(--text-soft);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.journal-read-more {
    margin-top: 0.25rem;
    color: var(--text-soft);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color var(--transition);
}

.blog-article {
    display: grid;
    gap: 1.75rem;
    padding: 1.75rem;
    border: 1px solid var(--border);
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
}

.blog-article-media {
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg2);
}

.richtext-content,
.admin-richtext {
    line-height: 1.9;
    color: var(--text2);
}

.richtext-content > :first-child,
.admin-richtext > :first-child {
    margin-top: 0;
}

.richtext-content > :last-child,
.admin-richtext > :last-child {
    margin-bottom: 0;
}

.richtext-content h1,
.richtext-content h2,
.richtext-content h3,
.admin-richtext h1,
.admin-richtext h2,
.admin-richtext h3 {
    color: var(--text);
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    line-height: 1.2;
}

.richtext-content h1,
.admin-richtext h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 0 0 1rem;
}

.richtext-content h2,
.admin-richtext h2 {
    font-size: clamp(1.55rem, 3vw, 2rem);
    margin: 2rem 0 0.85rem;
}

.richtext-content h3,
.admin-richtext h3 {
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    margin: 1.5rem 0 0.75rem;
}

.richtext-content p,
.admin-richtext p {
    margin: 0 0 1rem;
}

.richtext-content ul,
.richtext-content ol,
.admin-richtext ul,
.admin-richtext ol {
    margin: 0 0 1.25rem;
    padding-left: 1.35rem;
}

.richtext-content li + li,
.admin-richtext li + li {
    margin-top: 0.45rem;
}

.richtext-content ul li,
.admin-richtext ul li {
    list-style: disc;
}

.richtext-content ol li,
.admin-richtext ol li {
    list-style: decimal;
}

.richtext-content strong,
.admin-richtext strong {
    color: var(--text);
    font-weight: 600;
}

.richtext-content a,
.admin-richtext a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.richtext-content a:hover,
.admin-richtext a:hover {
    color: var(--text);
}

.richtext-content blockquote,
.admin-richtext blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-left: 2px solid var(--gold);
    background: var(--bg2);
    color: var(--text);
}

.cms-faq-content .cms-faq-item {
    margin: 0;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--border2);
}

.cms-faq-content .cms-faq-item:last-of-type {
    border-bottom: 0;
}

.cms-faq-content .cms-faq-item h2 {
    margin: 0 0 0.55rem;
    font-size: 1.15rem;
    line-height: 1.4;
}

.cms-faq-content .cms-faq-item p {
    margin: 0;
    color: var(--text2);
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.journal-image,
.article-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    margin-bottom: 0;
    transition: transform 0.45s ease;
}

.article-image {
    max-height: 28rem;
    height: auto;
}

.product-media .article-image {
    max-height: none;
    object-fit: contain;
    object-position: center;
}

.journal-body h2,
.journal-title {
    margin: 0 0 0.75rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 400;
}

.journal-meta {
    color: var(--gold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.72rem;
    margin-bottom: 0.5rem;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.chip-link {
    padding: 0.7rem 1.1rem;
    border: 1px solid var(--border2);
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    transition: border-color var(--transition), color var(--transition);
}

.chip-link.active,
.chip-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.popup-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background: rgba(10, 8, 6, 0.72);
    overflow-y: auto;
}

.popup-backdrop.is-closed {
    display: none !important;
}

.popup-card {
    position: relative;
    width: min(100%, 38rem);
    max-width: 100%;
    max-height: calc(100vh - 3rem);
    padding: 2rem;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--card-hover-shadow);
    pointer-events: auto;
    overflow: auto;
}

.popup-card.product-quickview-card {
    width: min(calc(100% - 1.5rem), 46rem);
}

.product-quickview-card .product-detail-hero {
    grid-template-columns: minmax(0, 20rem) minmax(16rem, 1fr);
    gap: 1.15rem;
    align-items: start;
}

.product-quickview-card .product-detail-gallery {
    max-width: 20rem;
    width: 100%;
}

.product-quickview-card .product-detail-media,
.product-quickview-card .product-detail-fallback {
    max-height: none;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-quickview-card .product-detail-thumbs {
    display: none;
}

.product-quickview-card .product-detail-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
}

.product-quickview-card .product-variation-groups {
    flex: 0 0 auto;
    margin: 0.15rem 0 0.15rem;
}

.product-quickview-card .product-variation-picker,
.product-quickview-card .product-variation-radio-list {
    align-items: center;
    align-content: start;
}

.product-quickview-card .product-variation-option,
.product-quickview-card .product-variation-radio-item {
    flex: 0 0 auto;
    align-self: center;
    height: auto;
    max-height: none;
}

.product-quickview-skeleton {
    display: grid;
    grid-template-columns: minmax(0, 20rem) minmax(16rem, 1fr);
    gap: 1.15rem;
    margin-top: 1.1rem;
}

.product-quickview-skeleton-media,
.product-quickview-skeleton-copy span {
    border-radius: 0.85rem;
    background: linear-gradient(90deg, var(--surface2) 25%, rgba(201, 168, 76, 0.12) 50%, var(--surface2) 75%);
    background-size: 200% 100%;
    animation: product-quickview-shimmer 1.1s ease-in-out infinite;
}

.product-quickview-skeleton-media {
    aspect-ratio: 1 / 1;
    min-height: 0;
}

.product-quickview-skeleton-copy {
    display: grid;
    align-content: start;
    gap: 0.75rem;
}

.product-quickview-skeleton-copy span {
    display: block;
    height: 0.9rem;
}

.product-quickview-skeleton-copy span:nth-child(1) {
    width: 40%;
    height: 1.35rem;
}

.product-quickview-skeleton-copy span:nth-child(2) {
    width: 70%;
}

.product-quickview-skeleton-copy span:nth-child(3) {
    width: 55%;
}

@keyframes product-quickview-shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

@media (max-width: 720px) {
    .product-quickview-skeleton {
        grid-template-columns: 1fr;
    }

    .product-quickview-skeleton-media {
        min-height: 0;
    }

    .product-quickview-card .product-detail-hero,
    .product-quickview-skeleton {
        grid-template-columns: 1fr;
    }

    .product-quickview-card .product-detail-gallery {
        max-width: none;
    }

    .product-quickview-card .product-detail-media,
    .product-quickview-card .product-detail-fallback {
        max-height: none;
    }
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    display: inline-grid;
    place-items: center;
    z-index: 2;
    cursor: pointer;
}

.popup-close:hover,
.popup-close:focus-visible {
    border-color: var(--gold);
    color: var(--gold);
    outline: none;
}

.popup-media {
    margin: 1rem 0 1.25rem;
    border: 1px solid var(--border);
    background: var(--surface2);
    overflow: hidden;
}

.popup-media img {
    display: block;
    width: 100%;
    max-height: 18rem;
    object-fit: cover;
}

body.popup-open {
    overflow: hidden;
}

@media (max-width: 720px) {
    .popup-backdrop {
        align-items: start;
        padding: 1rem 0.85rem;
    }

    .popup-card {
        width: 100%;
        margin-top: 0.5rem;
        max-height: calc(100vh - 2rem);
        padding: 1rem 1rem 1.15rem;
    }

    .popup-close {
        top: 0.7rem;
        right: 0.7rem;
        width: 2rem;
        height: 2rem;
    }

    .popup-media {
        margin: 0.8rem 0 1rem;
    }

    .popup-media img {
        max-height: min(52vh, 20rem);
    }
}

.auth-section {
    --auth-backdrop: url("/images/moonera-heritage-atelier-light.webp");
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: calc(100dvh - 8.5rem);
    padding: 3rem 0 4rem;
    background-color: var(--bg2);
    background-image:
        linear-gradient(180deg, color-mix(in srgb, var(--bg) 82%, transparent) 0%, color-mix(in srgb, var(--bg2) 58%, transparent) 46%, color-mix(in srgb, var(--bg) 78%, transparent) 100%),
        var(--auth-backdrop);
    background-size: cover;
    background-position: center;
}

[data-theme="dark"] .auth-section {
    --auth-backdrop: url("/images/moonera-heritage-atelier-dark.webp");
    background-image:
        linear-gradient(180deg, color-mix(in srgb, var(--bg) 72%, transparent) 0%, color-mix(in srgb, var(--bg2) 42%, transparent) 46%, color-mix(in srgb, var(--bg) 68%, transparent) 100%),
        var(--auth-backdrop);
}

body.auth-mode .auth-section.section {
    padding: 3rem 0 4rem;
}

.auth-container {
    display: flex;
    justify-content: center;
}

.auth-card {
    width: min(100%, 42rem);
    padding: 2.2rem;
    border: 1px solid var(--border);
}

.auth-section .auth-card {
    width: min(100%, 27.5rem);
    overflow: hidden;
    border-radius: 0.9rem;
    background: var(--surface);
    box-shadow: var(--shadow-strong);
}

.auth-section .auth-card:has(.auth-card-body) {
    padding: 0;
}

.auth-section .auth-card:not(:has(.auth-card-body)) {
    padding: 2rem 1.85rem;
}

.auth-card-body {
    padding: 2rem 1.85rem 0.35rem;
}

.auth-section .auth-card .section-label {
    margin-bottom: 0.4rem;
}

.auth-section .auth-card .section-title {
    margin: 0 0 0.4rem;
    font-size: clamp(1.85rem, 3vw, 2.4rem);
}

.auth-section .auth-card .section-sub {
    margin-bottom: 1.15rem;
}

.auth-card-narrow {
    width: min(100%, 34rem);
}

.auth-section .auth-card-narrow {
    width: min(100%, 27.5rem);
}

.auth-form {
    display: grid;
    gap: 1rem;
}

.auth-external-form {
    margin-top: 0.35rem;
}

.auth-google-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    min-height: var(--btn-height);
    padding: 0.55rem 1rem;
    border: 1px solid var(--border2);
    background: var(--surface);
    color: var(--text2);
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.auth-google-button svg {
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
}

.auth-google-button:hover {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.auth-field-control {
    position: relative;
    display: block;
}

.auth-field-control > .auth-field-icon {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    z-index: 1;
    display: flex;
    width: 1.05rem;
    height: 1.05rem;
    color: var(--text-muted);
    pointer-events: none;
    transform: translateY(-50%);
}

.auth-field-control > .auth-field-icon svg,
.auth-password-toggle .auth-field-icon svg {
    width: 100%;
    height: 100%;
}

.auth-field-control .form-input {
    padding-left: 2.55rem;
    background: var(--surface);
}

.auth-field-control:has([data-password-toggle]) .form-input {
    padding-right: 2.6rem;
}

.auth-password-toggle {
    position: absolute;
    top: 50%;
    right: 0.3rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transform: translateY(-50%);
}

.auth-password-toggle .auth-field-icon {
    display: none;
    width: 1.05rem;
    height: 1.05rem;
}

.auth-password-toggle .auth-field-icon:first-child {
    display: flex;
}

.auth-password-toggle[aria-pressed="true"] .auth-field-icon:first-child {
    display: none;
}

.auth-password-toggle[aria-pressed="true"] .auth-field-icon:last-child {
    display: flex;
}

.auth-form-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem 1rem;
}

.auth-forgot {
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.auth-submit {
    width: 100%;
    justify-content: space-between;
    color: #fffdf8;
}

.auth-submit .product-commerce-icon {
    width: 1rem;
    height: 1rem;
}

.auth-switch {
    margin: 1.15rem 0 1.25rem;
    color: var(--text-soft);
    font-size: 0.86rem;
    text-align: center;
}

.auth-switch a {
    color: var(--gold);
    font-weight: 600;
}

.auth-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin: 0;
    padding: 1.05rem 0.9rem 1.15rem;
    background: var(--bg2);
    list-style: none;
}

.auth-benefit {
    display: grid;
    justify-items: center;
    gap: 0.28rem;
    text-align: center;
}

.auth-benefit-icon {
    display: flex;
    width: 1.35rem;
    height: 1.35rem;
    margin-bottom: 0.15rem;
    color: var(--gold-dark);
}

.auth-benefit-icon svg {
    width: 100%;
    height: 100%;
}

.auth-benefit-title {
    color: var(--text);
    font-family: "Jost", sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.auth-benefit-text {
    color: var(--text-soft);
    font-size: 0.72rem;
    line-height: 1.35;
}

@media (max-width: 640px) {
    .auth-section {
        min-height: calc(100dvh - 7.25rem);
        padding: 2rem 0 3rem;
    }

    .auth-card-body {
        padding: 1.6rem 1.25rem 0.2rem;
    }

    .auth-benefits {
        gap: 0.35rem;
        padding: 0.85rem 0.45rem 0.95rem;
    }

    .auth-benefit {
        gap: 0.18rem;
    }

    .auth-benefit-icon {
        width: 1.15rem;
        height: 1.15rem;
        margin-bottom: 0.05rem;
    }

    .auth-benefit-title {
        font-size: 0.48rem;
        letter-spacing: 0.06em;
    }

    .auth-benefit-text {
        font-size: 0.58rem;
        line-height: 1.25;
    }
}

.auth-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.85rem;
    margin: 1.15rem 0 0.35rem;
    color: var(--text-soft);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    height: 1px;
    background: var(--border);
}

.form-row,
.profile-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-label {
    display: grid;
    gap: 0.35rem;
    color: var(--text-soft);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.form-input {
    width: 100%;
    min-height: var(--control-height);
    padding: 0.55rem var(--control-padding-x);
    border: 1px solid var(--border2);
    background: var(--surface2);
    color: var(--text);
    font-size: var(--control-font-size);
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.form-select {
    padding-right: 2rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-textarea {
    min-height: 9rem;
    resize: vertical;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-soft);
}

.auth-links,
.auth-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1rem;
}

.auth-links a {
    color: var(--gold);
}

.auth-meta {
    color: var(--text-muted);
}

.product-detail-page {
    padding-top: 1rem;
}

.product-detail-page.section-compact,
.product-detail-page .section-compact,
.product-detail-notes.section-compact,
.product-reviews-section.section-compact,
.product-detail-related.section-compact {
    padding: 0.5rem 0 0.5rem;
}

.product-detail-breadcrumbs {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    margin-bottom: 1.35rem;
    overflow: hidden;
    color: var(--text3);
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-detail-breadcrumbs > a {
    flex: 0 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-detail-breadcrumbs > span:not([aria-current="page"]) {
    flex: 0 0 auto;
}

.product-detail-breadcrumbs > [aria-current="page"] {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-detail-breadcrumbs a:hover {
    color: var(--gold);
}

.product-detail-hero,
.product-review-form-shell,
.product-detail-status-row,
.product-detail-summary-meta,
.product-detail-thumbs,
.product-review-card-head {
    display: grid;
    gap: 1rem;
}

.product-detail-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 981px) and (max-width: 1280px) {
    .product-detail-hero {
        grid-template-columns: minmax(0, 0.78fr) minmax(20rem, 1.22fr);
        gap: 1.25rem;
    }

    .product-detail-gallery {
        max-width: 22rem;
    }
}

.product-detail-gallery {
    display: grid;
    gap: 1rem;
    max-width: 32rem;
}

.product-detail-stage {
    padding: 0;
    border: 1px solid var(--border);
    overflow: hidden;
}

.product-detail-panel {
    display: none;
    margin: 0;
}

.product-detail-panel.is-active {
    display: grid;
    gap: 0;
}

.product-detail-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    max-height: none;
    min-height: 0;
    object-fit: cover;
    display: block;
    background: linear-gradient(160deg, rgba(201, 168, 76, 0.08), transparent), var(--surface2);
}

.product-detail-caption {
    color: var(--text3);
    font-size: 0.92rem;
    line-height: 1.7;
    padding: 0.75rem 1rem 1rem;
}

.product-detail-fallback {
    aspect-ratio: 1 / 1;
    height: auto;
    max-height: none;
    min-height: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, rgba(201, 168, 76, 0.08), transparent), var(--surface2);
}

.product-detail-thumbs {
    grid-template-columns: repeat(auto-fit, minmax(5.8rem, 1fr));
}

.product-detail-thumb {
    border: 1px solid var(--border);
    background: var(--surface2);
    padding: 0;
    min-height: 5.8rem;
    display: grid;
    place-items: center;
    overflow: hidden;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.product-detail-thumb img,
.product-detail-thumb-video {
    width: 100%;
    height: 100%;
}

.product-detail-thumb img {
    object-fit: cover;
}

.product-detail-thumb-video {
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, rgba(201, 168, 76, 0.12), transparent), var(--surface);
    color: var(--gold);
}

.product-detail-thumb-video svg {
    width: 1.25rem;
    height: 1.25rem;
}

.product-detail-thumb.is-active,
.product-detail-thumb:hover,
.product-detail-thumb:focus-visible {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.22);
    transform: translateY(-0.12rem);
    outline: none;
}

.product-detail-track {
    display: block;
}

.product-detail-dots,
.product-detail-zoom {
    display: none;
}

[data-product-gallery-pdp] .product-detail-stage {
    position: relative;
}

[data-product-gallery-pdp] .product-detail-zoom {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid rgba(201, 168, 76, 0.45);
    border-radius: 999px;
    background: rgba(14, 12, 9, 0.72);
    color: var(--gold);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

[data-product-gallery-pdp] .product-detail-zoom:hover,
[data-product-gallery-pdp] .product-detail-zoom:focus-visible {
    border-color: var(--gold);
    background: rgba(22, 18, 14, 0.88);
    outline: none;
    transform: translateY(-1px);
}

[data-product-gallery-pdp] .product-detail-zoom svg {
    width: 1.15rem;
    height: 1.15rem;
}

.product-detail-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1900;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.product-detail-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-detail-lightbox[hidden] {
    display: none !important;
}

.product-detail-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 11, 9, 0.94);
}

.product-detail-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 42rem);
    max-height: 100%;
    display: grid;
    gap: 0.85rem;
    padding: 3.25rem 0.75rem 1.5rem;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    outline: none;
    transform: scale(0.97);
    transition: transform 0.22s ease;
}

.product-detail-lightbox.is-open .product-detail-lightbox-dialog {
    transform: scale(1);
}

.product-detail-lightbox-close {
    position: absolute;
    top: max(0.75rem, env(safe-area-inset-top));
    right: max(0.75rem, env(safe-area-inset-right));
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 999px;
    background: rgba(18, 16, 13, 0.72);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.product-detail-lightbox-close:hover,
.product-detail-lightbox-close:focus-visible {
    border-color: var(--gold);
    background: rgba(28, 24, 18, 0.9);
    outline: none;
}

.product-detail-lightbox-close svg {
    width: 1.1rem;
    height: 1.1rem;
}

.product-detail-lightbox-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: none;
}

.product-detail-lightbox-track::-webkit-scrollbar {
    display: none;
}

.product-detail-lightbox-slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    margin: 0;
    display: grid;
    place-items: center;
}

.product-detail-lightbox-slide img,
.product-detail-lightbox-slide video {
    width: 100%;
    max-height: min(78vh, 38rem);
    object-fit: contain;
    background: transparent;
}

.product-detail-lightbox-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    min-height: 0.7rem;
}

.product-detail-lightbox-dot,
.product-detail-dot {
    width: 0.45rem;
    height: 0.45rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.28);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.product-detail-lightbox-dot.is-active,
.product-detail-dot.is-active {
    width: 1.1rem;
    background: var(--gold);
}

.product-detail-lightbox-dot:focus-visible,
.product-detail-dot:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .product-detail-lightbox,
    .product-detail-lightbox-dialog,
    .product-detail-lightbox-dot,
    .product-detail-dot {
        transition: none;
    }

    .product-detail-lightbox-track,
    [data-product-gallery-pdp] .product-detail-track {
        scroll-behavior: auto;
    }
}

html.product-lightbox-open,
html.product-lightbox-open body {
    overflow: hidden;
}

.product-detail-summary {
    position: sticky;
    top: 1rem;
}

.product-detail-summary-card {
    display: grid;
    gap: 0.75rem;
    padding: 1.35rem;
    border-top: 1px solid rgba(201, 168, 76, 0.35);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01)), var(--card-bg);
}

.product-detail-summary-stack {
    display: contents;
}

.product-detail-kicker-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
}

.product-detail-sku {
    color: var(--text3);
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

[data-product-detail-page] .product-detail-sku {
    margin: 0;
    display: block;
}

.product-detail-title {
    margin: 0;
    font-size: clamp(1.75rem, 2.8vw, 2.6rem);
    line-height: 1.12;
}

[data-product-detail-page] .product-detail-title {
    font-size: clamp(2rem, 3.4vw, 2.85rem);
    line-height: 1.08;
    letter-spacing: 0.01em;
}

[data-product-detail-page] .product-detail-price {
    color: var(--gold);
    font-family: "Cinzel", serif;
    font-size: clamp(1.45rem, 2.4vw, 1.75rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
    line-height: 1.15;
}

[data-product-detail-page] .product-detail-price .price-strike {
    margin-left: 0.45rem;
    font-size: 0.72em;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.product-detail-notes-title {
    font-size: clamp(1.55rem, 2.4vw, 2.15rem);
    margin-bottom: 0.35rem;
}

.product-detail-rating-link {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

.product-detail-rating-link:hover {
    color: var(--gold);
}

.product-detail-rating-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.product-detail-stars {
    color: var(--gold);
    letter-spacing: 0.18em;
    font-size: 0.96rem;
}

.product-detail-price {
    margin: 0;
}

.product-variation-groups {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 0.5rem 0 1rem;
}

.product-variation-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.product-variation-group__label {
    font-size: 0.76rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text2);
    margin: 0;
}

.product-variation-picker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: start;
    gap: 0.55rem;
    margin: 0;
}

.product-variation-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    align-self: center;
    width: auto;
    height: auto;
    min-height: 2.75rem;
    gap: 0.55rem;
    padding: 0.35rem 0.7rem 0.35rem 0.35rem;
    border: 1px solid var(--border2);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    cursor: pointer;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.product-variation-option:not(:has(.product-variation-option__thumb)) {
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.4rem 0.85rem;
}

.product-variation-option:hover,
.product-variation-option:focus-visible {
    border-color: rgba(201, 168, 76, 0.55);
    outline: none;
}

.product-variation-option.is-out-of-stock,
.product-variation-radio-item.is-out-of-stock {
    opacity: 0.45;
    cursor: not-allowed;
}

.product-variation-option.is-out-of-stock {
    pointer-events: none;
}

.product-variation-option.is-active {
    border-color: var(--gold);
    box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.35);
    background: rgba(201, 168, 76, 0.08);
}

.product-variation-option__thumb {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    overflow: hidden;
    flex: 0 0 2rem;
    background: rgba(255, 255, 255, 0.04);
}

.product-variation-option__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-variation-option__label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text2);
}

.product-variation-option.is-active .product-variation-option__label {
    color: var(--text);
}

.product-variation-dropdown select.product-variation-select {
    width: 100%;
    max-width: 20rem;
}

.product-variation-radio-list,
.product-variation-checkbox-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.product-variation-radio-item,
.product-variation-checkbox-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    align-self: center;
    gap: 0.45rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.35rem 0.85rem;
    border: 1px solid var(--border2);
    cursor: pointer;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--text2);
    box-sizing: border-box;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.product-variation-radio-item:has(input:checked),
.product-variation-checkbox-item:has(input:checked) {
    border-color: var(--gold);
    box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.35);
    background: rgba(201, 168, 76, 0.08);
    color: var(--text);
}

.product-variation-radio-item input,
.product-variation-checkbox-item input {
    accent-color: var(--gold);
}

@media (max-width: 600px) {
    .product-variation-radio-list,
    .product-variation-checkbox-list {
        flex-direction: column;
        gap: 0.4rem;
    }
    .product-variation-radio-item,
    .product-variation-checkbox-item {
        width: 100%;
    }
    .product-variation-dropdown select.product-variation-select {
        max-width: 100%;
    }
}

.product-stock-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.35rem;
    padding: 0.55rem 0.95rem;
    border: 1px solid var(--border2);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.product-stock-pill.is-in-stock {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.07);
}

.product-stock-pill.is-out-of-stock {
    color: var(--text2);
    background: rgba(255, 255, 255, 0.02);
}

.product-detail-shortcopy {
    margin: 0;
    color: var(--text2);
    font-size: 0.96rem;
    line-height: 1.65;
    display: grid;
    gap: 0.35rem;
}

.product-detail-shortcopy p {
    margin: 0;
}

.product-detail-shortcopy p + p {
    margin-top: 0.55rem;
}

[data-product-detail-page] .product-detail-shortcopy-body {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
    overflow-wrap: anywhere;
}

[data-product-detail-page] .product-detail-shortcopy.is-expanded .product-detail-shortcopy-body {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
}

[data-product-detail-page] .product-detail-readmore {
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

[data-product-detail-page] .product-detail-readmore:hover,
[data-product-detail-page] .product-detail-readmore:focus-visible {
    color: var(--gold-light, #e8d5a3);
}

[data-product-detail-page] .product-detail-trust {
    margin: 0.15rem 0 0;
}

[data-product-detail-page] .product-detail-trust .trust-badges {
    margin: 0;
}

[data-product-detail-page] .product-detail-accordion {
    display: grid;
    gap: 0;
    margin-top: 0.15rem;
}

[data-product-detail-page] .product-detail-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    min-height: 3.5rem;
    padding: 1rem 0.15rem;
    border: 0;
    border-top: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

[data-product-detail-page] .product-detail-accordion-label {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

[data-product-detail-page] .product-detail-accordion-chevron {
    display: inline-flex;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold);
    transition: transform 0.2s ease;
}

[data-product-detail-page] .product-detail-accordion-chevron svg {
    width: 100%;
    height: 100%;
}

[data-product-detail-page] .product-detail-accordion.is-open .product-detail-accordion-chevron {
    transform: rotate(180deg);
}

[data-product-detail-page] .product-detail-accordion-body {
    display: none;
    padding: 0 0 0.35rem;
}

[data-product-detail-page] .product-detail-accordion.is-open .product-detail-accordion-body {
    display: block;
    padding: 0.15rem 0.15rem 1rem;
    font-size: 0.98rem;
    line-height: 1.7;
}

.product-detail-meta-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.15rem;
    padding-top: 0.15rem;
}

.product-detail-stock-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text2);
}

.product-detail-stock-inline.is-in-stock {
    color: var(--gold);
}

.product-detail-stock-block {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.28rem;
}

.product-detail-restock-note {
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--text-soft);
    line-height: 1.35;
}

.product-detail-stock-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.14);
}

.product-detail-stock-inline.is-out-of-stock .product-detail-stock-dot {
    box-shadow: none;
    opacity: 0.65;
}

.product-oos-tooltip {
    position: relative;
    display: inline-flex;
    flex: 1 1 0;
    min-width: 0;
    outline: none;
    cursor: help;
}

.product-oos-tooltip .product-oos-button {
    width: 100%;
    pointer-events: none;
    opacity: 0.72;
}

.product-detail-category-link {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text3);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.35);
    transition: color var(--transition), border-color var(--transition);
}

.product-detail-category-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.product-detail-purchase-row {
    display: grid;
    gap: 0.85rem;
    margin-top: 0.35rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
}

[data-product-detail-page] .product-detail-qty-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem 1rem;
}

[data-product-detail-page] .product-detail-stock-slot {
    display: flex;
    align-items: center;
    min-width: 0;
}

[data-product-detail-page] .product-detail-stock-slot .product-detail-stock-block {
    align-items: flex-end;
    text-align: right;
}

.product-purchase-trust {
    --purchase-trust-ink: #0f7a4a;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.4rem 0 0.55rem;
    padding: 0.2rem 0.5rem;
}

[data-theme="dark"] .product-purchase-trust {
    --purchase-trust-ink: #3dba7a;
}

.product-purchase-trust-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin: 0;
    color: var(--purchase-trust-ink);
    text-align: center;
}

.product-purchase-trust-icon {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    border: 1px solid color-mix(in srgb, var(--purchase-trust-ink) 38%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--purchase-trust-ink) 10%, transparent);
    color: var(--purchase-trust-ink);
}

.product-purchase-trust-icon svg {
    width: 1rem;
    height: 1rem;
}

.product-purchase-trust-line strong {
    color: var(--purchase-trust-ink);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.18rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.25;
}

[data-product-detail-page] .product-purchase-actions .btn-primary,
[data-product-detail-page] .product-purchase-actions .btn-outline {
    min-height: 2.75rem;
    padding: 0.65rem 1rem;
    font-size: 0.78rem;
    border-radius: 999px;
}

[data-product-detail-page] .product-purchase-actions [data-buy-now] {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    min-height: 3.65rem;
    padding: 0.72rem 1.2rem 0.78rem;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(20, 17, 14, 0.18);
}

[data-product-detail-page] .product-buy-now__main {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: "Cormorant Garamond", "Cinzel", serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1;
}

[data-product-detail-page] .product-buy-now__hint {
    font-family: "Jost", sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    line-height: 1.25;
    opacity: 0.9;
}

[data-product-detail-page] .product-buy-now__main .product-commerce-icon {
    width: 1.05rem;
    height: 1.05rem;
}

[data-theme="light"] [data-product-detail-page] .product-purchase-actions [data-buy-now].btn-outline {
    background: #14110e;
    border-color: #14110e;
    color: #ffffff;
}

[data-theme="light"] [data-product-detail-page] .product-purchase-actions [data-buy-now].btn-outline:hover {
    background: #2a241f;
    border-color: #2a241f;
    color: #ffffff;
}

[data-theme="dark"] [data-product-detail-page] .product-purchase-actions [data-buy-now].btn-outline {
    background: #0d0b09;
    border-color: rgba(232, 213, 163, 0.38);
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] [data-product-detail-page] .product-purchase-actions [data-buy-now].btn-outline:hover {
    background: #1a1612;
    border-color: rgba(232, 213, 163, 0.55);
    color: #ffffff;
}

.product-detail-qty-stepper {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border2);
    background: var(--surface2);
    width: fit-content;
}

.product-detail-qty-label {
    padding: 0 0.75rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text3);
    border-right: 1px solid var(--border2);
    align-self: stretch;
    display: inline-flex;
    align-items: center;
}

.product-detail-qty-btn {
    width: 2.25rem;
    height: 2.35rem;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.product-detail-qty-btn:hover:not(:disabled) {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
}

.product-detail-qty-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.product-detail-qty-input {
    width: 2.75rem;
    height: 2.35rem;
    border: 0;
    border-left: 1px solid var(--border2);
    border-right: 1px solid var(--border2);
    background: transparent;
    color: var(--text);
    text-align: center;
    font-size: 0.95rem;
    -moz-appearance: textfield;
    appearance: textfield;
}

.product-detail-qty-input::-webkit-outer-spin-button,
.product-detail-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-commerce-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.product-purchase-actions .product-commerce-icon {
    width: 0.85rem;
    height: 0.85rem;
}

.product-commerce-icon svg {
    width: 100%;
    height: 100%;
}

.product-detail-notes-header {
    margin-bottom: 1.25rem;
}

.product-detail-notes .product-detail-section-card {
    padding: 1.25rem 1.35rem;
}

.product-reviews-section {
    scroll-margin-top: 6rem;
    background:
        radial-gradient(ellipse at 12% 100%, rgba(232, 213, 163, 0.18), transparent 42%),
        radial-gradient(ellipse at 90% 0%, rgba(201, 168, 76, 0.1), transparent 38%),
        #faf6f1;
    padding: 2.5rem 0 2.75rem;
}

[data-theme="dark"] .product-reviews-section {
    background:
        radial-gradient(ellipse at 12% 100%, rgba(201, 168, 76, 0.08), transparent 42%),
        radial-gradient(ellipse at 90% 0%, rgba(201, 168, 76, 0.06), transparent 38%),
        var(--bg2);
}

.product-review-header {
    display: grid;
    justify-items: center;
    gap: 0.45rem;
    text-align: center;
    margin-bottom: 1.75rem;
}

.product-review-header .section-label {
    color: var(--gold);
    letter-spacing: 0.22em;
}

.product-review-heading {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3.4vw, 2.7rem);
    font-weight: 500;
    color: var(--text);
}

.product-review-tagline {
    margin: 0;
    max-width: 28rem;
    color: var(--text3);
    font-family: "Jost", sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.product-review-form-details {
    margin-top: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: color-mix(in srgb, var(--card-bg) 92%, transparent);
}

.product-review-form-toggle {
    list-style: none;
    cursor: pointer;
    padding: 0.95rem 1.15rem;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    transition: background var(--transition);
}

.product-review-form-toggle::-webkit-details-marker {
    display: none;
}

.product-review-form-toggle::after {
    content: "+";
    float: right;
    font-size: 1.1rem;
    line-height: 1;
    color: var(--text3);
}

.product-review-form-details[open] .product-review-form-toggle::after {
    content: "−";
}

.product-review-form-details[open] .product-review-form-toggle {
    border-bottom: 1px solid var(--border);
    background: rgba(201, 168, 76, 0.05);
}

.product-review-form-intro {
    margin: 0 0 1rem;
    color: var(--text3);
    font-size: 0.92rem;
    line-height: 1.6;
}

.product-review-form-shell {
    padding: 0 1.15rem 1.15rem;
}

.product-review-form-card {
    width: 100%;
    padding: 1.15rem;
    border: 0;
    box-shadow: none;
    background: transparent;
}

.product-review-form-compact {
    gap: 0.85rem;
}

.product-review-form-compact .form-input {
    min-height: 2.5rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.94rem;
}

.product-review-form-compact .form-input[readonly] {
    background: rgba(201, 168, 76, 0.06);
    color: var(--text2);
    cursor: default;
}

.product-review-form-compact .form-textarea {
    min-height: 5rem;
}

.product-review-form-compact .product-rating-input label {
    font-size: 1.55rem;
}

.product-review-card {
    padding: 1.25rem 1.3rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
}

.product-detail-section-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.product-detail-richtext {
    color: var(--text2);
}

.product-review-summary {
    display: grid;
    grid-template-columns: minmax(8rem, 0.85fr) minmax(12rem, 1.2fr) minmax(8rem, 0.9fr);
    gap: 1.5rem 2rem;
    align-items: center;
    padding: 0.5rem 0.25rem 1.75rem;
    border: 0;
    background: transparent;
}

.product-review-summary-score {
    display: grid;
    justify-items: start;
    gap: 0.45rem;
}

.product-review-summary-score strong {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.4rem, 6vw, 4.4rem);
    font-weight: 500;
    line-height: 0.9;
    color: var(--text);
}

.product-review-summary-based {
    margin: 0.15rem 0 0;
    color: var(--text3);
    font-family: "Jost", sans-serif;
    font-size: 0.84rem;
}

.product-review-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.12rem;
    color: var(--gold);
    font-size: 1.05rem;
    line-height: 1;
}

.product-review-star {
    position: relative;
    display: inline-block;
    color: var(--gold);
}

.product-review-star.is-empty {
    color: rgba(201, 168, 76, 0.28);
}

.product-review-star.is-half {
    color: rgba(201, 168, 76, 0.28);
}

.product-review-star-half-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 50%;
    overflow: hidden;
    color: var(--gold);
}

.product-review-star-half-empty {
    color: rgba(201, 168, 76, 0.28);
}

.product-review-histogram {
    display: grid;
    gap: 0.42rem;
}

.product-review-histogram-row {
    display: grid;
    grid-template-columns: 0.7rem 0.85rem minmax(0, 1fr) 2.4rem;
    gap: 0.4rem;
    align-items: center;
    font-family: "Jost", sans-serif;
    font-size: 0.78rem;
    color: var(--text2);
}

.product-review-histogram-star {
    color: var(--gold);
    font-size: 0.72rem;
}

.product-review-histogram-track {
    height: 0.38rem;
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.14);
    overflow: hidden;
}

.product-review-histogram-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--gold);
}

.product-review-histogram-percent {
    text-align: right;
    color: var(--text3);
    font-variant-numeric: tabular-nums;
}

.product-review-community {
    display: grid;
    justify-items: center;
    gap: 0.35rem;
    text-align: center;
}

.product-review-community-script {
    margin: 0;
    font-family: "Great Vibes", cursive;
    font-size: clamp(1.55rem, 2.5vw, 2rem);
    color: var(--text2);
    line-height: 1.15;
}

.product-review-community-heart {
    color: var(--gold);
    font-size: 1.1rem;
    line-height: 1;
}

.product-review-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin: 0.35rem 0 1rem;
}

.product-review-toolbar-count {
    margin: 0;
    font-family: "Jost", sans-serif;
    font-size: 0.95rem;
    color: var(--text);
}

.product-review-sort-select {
    min-width: 9.5rem;
    border: 1px solid var(--border2);
    border-radius: 999px;
    background-color: var(--surface2);
    color: var(--text);
    font-family: "Jost", sans-serif;
    font-size: 0.84rem;
    padding: 0.55rem 2rem 0.55rem 0.95rem;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--text3) 50%),
        linear-gradient(135deg, var(--text3) 50%, transparent 50%);
    background-position: calc(100% - 1.05rem) 55%, calc(100% - 0.75rem) 55%;
    background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
    background-repeat: no-repeat;
}

[data-theme="dark"] .product-review-form-details {
    background: color-mix(in srgb, var(--surface) 88%, transparent);
}

[data-theme="dark"] .product-review-card {
    background: var(--card-bg);
    border-color: var(--border);
    box-shadow: var(--card-shadow);
}

[data-theme="dark"] .product-review-sort-select {
    background-color: var(--surface2);
    color: var(--text);
    border-color: var(--border2);
}

[data-theme="dark"] .product-review-avatar {
    background: color-mix(in srgb, var(--gold) 24%, var(--surface2));
    color: var(--text);
}

[data-theme="dark"] .product-review-view-all:hover,
[data-theme="dark"] .product-review-load-more-button:hover {
    color: var(--gold);
}

.product-review-grid,
.product-detail-related-grid {
    margin-top: 0;
}

.product-review-grid {
    grid-template-columns: 1fr;
    gap: 0.95rem;
}

.product-detail-related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1024px) {
    [data-product-detail-related] .product-detail-related-grid {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 0.85rem;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: none;
        scroll-behavior: auto;
        touch-action: pan-x pan-y;
        scrollbar-width: none;
        margin-inline: -2.5rem;
        padding-inline: 2.5rem;
        padding-bottom: 0.35rem;
    }

    [data-product-detail-related] .product-detail-related-grid.is-page-scrolling {
        overflow-x: hidden;
        touch-action: pan-y;
    }

    [data-product-detail-related] .product-detail-related-grid::-webkit-scrollbar {
        display: none;
    }

    [data-product-detail-related] .product-detail-related-grid > .product-card {
        flex: 0 0 clamp(14.5rem, 72vw, 18rem);
        align-self: stretch;
        height: auto;
        max-height: none;
        min-width: 0;
        min-height: 0;
        overflow: hidden;
    }

    [data-product-detail-related] .section-header {
        margin-bottom: 1.15rem;
    }
}

@media (max-width: 720px) {
    [data-product-detail-related] .product-detail-related-grid {
        margin-inline: -1.25rem;
        padding-inline: 1.25rem;
        gap: 0.7rem;
    }
}

.product-review-card-head {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    align-items: start;
    gap: 0.8rem;
}

.product-review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.product-review-avatar {
    flex: 0 0 2.7rem;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 999px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: color-mix(in srgb, var(--gold) 22%, var(--surface2));
    color: var(--text);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.15rem;
    font-weight: 600;
}

.product-review-avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-review-author-meta {
    min-width: 0;
}

.product-review-author-name {
    margin: 0;
    font-family: "Jost", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.product-review-author-date {
    margin: 0.15rem 0 0;
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text3);
}

.product-review-title {
    margin: 0.85rem 0 0.4rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.15;
    color: var(--text);
}

.product-review-comment {
    margin: 0.25rem 0 0;
    color: var(--text2);
    font-family: "Jost", sans-serif;
    font-size: 0.94rem;
    line-height: 1.65;
}

.product-review-media-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.9rem;
}

.product-review-media-card {
    margin: 0;
    display: grid;
    gap: 0.3rem;
    width: 4.75rem;
    flex: 0 0 4.75rem;
}

.product-review-media-link {
    display: block;
    border-radius: 0.65rem;
    overflow: hidden;
}

.product-review-media {
    width: 100%;
    height: 4.75rem;
    display: block;
    object-fit: cover;
    border-radius: 0.65rem;
    border: 0;
    background: #f3ebe1;
}

.product-review-media-caption {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.72rem;
    line-height: 1.35;
}

.product-review-load-more {
    display: flex;
    justify-content: center;
    margin-top: 1.35rem;
}

.product-review-view-all,
.product-review-load-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.7rem;
    min-width: 12.5rem;
    padding: 0.65rem 1.45rem;
    border: 1px solid var(--gold);
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    font-family: "Jost", sans-serif;
    font-size: 0.84rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.product-review-view-all:hover,
.product-review-load-more-button:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold-dark);
}

.product-review-upload {
    position: relative;
}

.product-review-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.product-review-file-picker {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 4rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text2);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}

.product-review-file-picker:hover,
.product-review-file-input:focus-visible + .product-review-file-picker {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
}

.product-review-file-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.1rem;
    border: 1px solid rgba(201, 168, 76, 0.45);
    background: rgba(201, 168, 76, 0.12);
    color: var(--text);
    font-family: "Cinzel", serif;
    font-size: 0.76rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-review-file-text {
    color: var(--text-muted);
    font-size: 0.96rem;
    letter-spacing: 0.02em;
}

.product-review-form-shell {
    grid-template-columns: minmax(0, 1fr);
}

.product-review-form-card {
    width: min(100%, 48rem);
}

.product-rating-fieldset {
    margin: 0;
    padding: 0;
    border: 0;
    display: grid;
    gap: 0.55rem;
}

.product-rating-input {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.2rem;
}

.product-rating-input input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product-rating-input label {
    cursor: pointer;
    color: var(--text-muted);
    font-size: 2rem;
    line-height: 1;
    transition: color var(--transition), transform var(--transition);
}

.product-rating-input label:hover,
.product-rating-input label:hover ~ label,
.product-rating-input input:checked ~ label {
    color: var(--gold);
}

.product-rating-input input:focus-visible + label {
    outline: 1px solid var(--gold);
    outline-offset: 0.18rem;
}

.product-rating-input label:hover {
    transform: translateY(-0.08rem);
}

.product-rating-help {
    color: var(--text3);
    font-size: 0.88rem;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 18rem minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.shop-results,
.product-gallery,
.review-grid,
.shop-related-grid,
.pagination-row {
    display: grid;
    gap: 1rem;
}

.shop-filter-card,
.product-summary-card {
    padding: 1.4rem;
    border: 1px solid var(--border);
}

.shop-page {
    padding-top: 1.1rem;
}

.shop-page-frame {
    width: 100%;
    padding-inline: clamp(1rem, 2vw, 2rem);
}

.shop-layout {
    position: relative;
}

.shop-catalog-shell {
    display: grid;
    gap: 1.35rem;
}

.shop-catalog-header,
.shop-catalog-actions,
.shop-toolbar-form,
.shop-toolbar-row,
.shop-show-more-row,
.shop-infinite-scroll {
    display: grid;
    gap: 1rem;
}

.shop-catalog-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    padding-bottom: 0.35rem;
}

.shop-catalog-header-has-hero {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border: 1px solid var(--border);
    background:
        linear-gradient(135deg, rgba(12, 11, 9, 0.78), rgba(12, 11, 9, 0.48)),
        var(--shop-category-hero) center / cover no-repeat;
}

.shop-catalog-header-has-hero .shop-catalog-title-block,
.shop-catalog-header-has-hero .shop-catalog-actions {
    position: relative;
    z-index: 1;
}

.shop-catalog-title-block .section-title {
    margin-bottom: 0.55rem;
}

.shop-catalog-sub {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
}

.shop-catalog-sub span,
.shop-visibility-copy {
    color: var(--gold);
}

.shop-catalog-actions {
    justify-items: end;
    align-items: end;
}

.shop-visibility-copy {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.shop-filter-panel {
    display: block;
}

.shop-toolbar-card {
    padding: 1.1rem 1.25rem 1.25rem;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01)), var(--card-bg);
    box-shadow: var(--card-shadow);
}

.shop-toolbar-form {
    display: grid;
    gap: 0.85rem;
}

.shop-toolbar-row {
    display: grid;
    grid-template-columns: minmax(11rem, 1.45fr) repeat(3, minmax(8.5rem, 1fr)) auto;
    gap: 0.75rem;
    align-items: stretch;
}

.shop-toolbar-field,
.shop-toolbar-search {
    min-width: 0;
}

.shop-toolbar-row .form-input,
.shop-toolbar-row select.form-input,
.shop-toolbar-row .shop-category-picker-trigger,
.shop-toolbar-reset {
    box-sizing: border-box;
    height: var(--control-height);
    min-height: var(--control-height);
    line-height: 1.25;
}

.shop-toolbar-row .shop-category-picker-trigger {
    font: inherit;
    font-size: var(--control-font-size);
    color: var(--text);
}

.shop-category-picker {
    position: relative;
    display: block;
}

.shop-category-picker-trigger {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding-right: 2rem;
    text-align: left;
    cursor: pointer;
    appearance: none;
}

.shop-category-picker-trigger [data-shop-category-label] {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-category-picker-chevron {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    width: 0.75rem;
    height: 0.75rem;
    margin-top: -0.15rem;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
    transition: transform 0.25s ease, margin-top 0.25s ease;
}

.shop-category-picker.is-open .shop-category-picker-chevron {
    margin-top: 0.12rem;
    transform: translateY(-50%) rotate(-135deg);
}

.shop-category-picker-panel {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    z-index: 40;
    min-width: 100%;
    width: max(100%, 15rem);
    border: 1px solid var(--border2);
    background: var(--surface2);
    box-shadow: var(--card-shadow);
}

.shop-category-picker-list {
    list-style: none;
    margin: 0;
    padding: 0.35rem 0;
}

.shop-category-picker-item {
    position: relative;
}

.shop-category-picker-option,
.shop-category-picker-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    width: 100%;
    padding: 0.55rem 0.85rem;
    border: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: var(--control-font-size);
    text-align: left;
    cursor: pointer;
}

.shop-category-picker-option:hover,
.shop-category-picker-parent:hover,
.shop-category-picker-option.is-selected,
.shop-category-picker-parent.is-selected,
.shop-category-picker-item.is-open > .shop-category-picker-parent {
    background: color-mix(in srgb, var(--gold) 12%, transparent);
    color: var(--gold);
}

.shop-category-picker-arrow {
    flex: 0 0 auto;
    width: 0.4rem;
    height: 0.4rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
    opacity: 0.75;
}

.shop-category-picker-subpanel {
    position: absolute;
    top: 0;
    left: calc(100% - 0.15rem);
    z-index: 41;
    min-width: 14rem;
    max-height: min(22rem, 70vh);
    overflow-y: auto;
    border: 1px solid var(--border2);
    background: var(--surface2);
    box-shadow: var(--card-shadow);
    padding: 0.35rem 0;
}

@media (min-width: 981px) {
    .shop-category-picker-panel {
        overflow: visible;
    }

    .shop-category-picker-list {
        max-height: min(22rem, 70vh);
        overflow: visible;
    }
}

@media (max-width: 980px) {
    .shop-category-picker-panel {
        max-height: min(22rem, 70vh);
        overflow-y: auto;
    }

    .shop-category-picker-subpanel {
        position: static;
        left: auto;
        min-width: 0;
        max-height: none;
        border: 0;
        border-top: 1px solid var(--border);
        box-shadow: none;
        background: color-mix(in srgb, var(--surface2) 88%, var(--gold) 4%);
        padding-left: 0.55rem;
    }

    .shop-category-picker-item.has-children.is-open .shop-category-picker-arrow {
        transform: rotate(45deg);
    }
}

.shop-toolbar-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    height: var(--control-height);
    min-height: var(--control-height);
    padding: 0 1rem;
    white-space: nowrap;
}

.shop-toolbar-reset svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .shop-toolbar-row {
        grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
    }

    .shop-toolbar-search {
        grid-column: 1 / -1;
    }

    .shop-toolbar-reset {
        grid-column: 1 / -1;
        justify-self: end;
    }
}

.shop-drawer-backdrop,
.shop-sidebar-mobile-head,
.shop-mobile-filter-toggle {
    display: none;
}

.shop-mobile-filter-toggle {
    min-height: var(--btn-height-sm);
}

.shop-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    width: 100%;
}

@media (min-width: 1025px) {
    .product-info {
        padding: 0.7rem 0.75rem 0.6rem;
        gap: 0.28rem;
    }

    .product-name {
        font-size: clamp(1rem, 1.05vw, 1.28rem);
    }

    .shop-products-grid .product-card-purchase {
        padding: 0.55rem 0.6rem 0.65rem;
    }
}

@media (min-width: 1280px) {
    .products-grid,
    .shop-products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 1279px) {
    .products-grid,
    .shop-products-grid {
        gap: 1rem;
    }

    .product-detail-related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .products-grid,
    .shop-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail-related:not([data-product-detail-related]) .product-detail-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-badge-stack {
        right: 0.4rem;
        bottom: 0.4rem;
        gap: 0.22rem;
        max-width: calc(100% - 2.9rem);
    }

    .product-badge {
        min-height: 1.05rem;
        padding: 0.14rem 0.4rem;
        font-size: 0.42rem;
        letter-spacing: 0.12em;
        gap: 0.22rem;
    }

    .product-badge::before {
        width: 0.18rem;
        height: 0.18rem;
    }

    .product-sale-banner {
        left: 0.65rem;
        width: 2.55rem;
    }

    .product-sale-banner__value {
        font-size: 0.7rem;
    }

    .product-card-quickview {
        top: 0.55rem;
        right: 0.55rem;
        width: 2rem;
        height: 2rem;
    }

    .product-card-quickview svg {
        width: 0.82rem;
        height: 0.82rem;
    }

    .product-card-action,
    .shop-products-grid .product-card-action {
        min-height: 2rem;
        font-size: 0.58rem;
        letter-spacing: 0.05em;
        padding: 0.38rem 0.3rem;
    }

    .product-card-action .admin-nav-icon svg,
    .shop-products-grid .product-card-action .admin-nav-icon svg {
        width: 0.72rem;
        height: 0.72rem;
    }
}

@media (max-width: 640px) {
    .products-grid,
    .shop-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
    }

    .product-detail-related:not([data-product-detail-related]) .product-detail-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
    }

    .product-info {
        padding: 0.7rem 0.6rem 0.65rem;
        gap: 0.3rem;
    }

    .product-brand,
    .product-price {
        font-size: 0.58rem;
        letter-spacing: 0.12em;
    }

    .product-name {
        font-size: clamp(0.98rem, 3.8vw, 1.15rem);
        -webkit-line-clamp: 2;
    }

    .product-badge-stack {
        right: 0.3rem;
        bottom: 0.3rem;
        gap: 0.18rem;
        max-width: calc(100% - 2.4rem);
    }

    .product-badge {
        min-height: 0.95rem;
        padding: 0.1rem 0.34rem;
        font-size: 0.38rem;
        letter-spacing: 0.1em;
        gap: 0.18rem;
    }

    .product-badge::before {
        width: 0.16rem;
        height: 0.16rem;
    }

    .product-sale-banner {
        left: 0.5rem;
        width: 2.35rem;
    }

    .product-sale-banner__flag {
        padding: 0.45rem 0.15rem 0.85rem;
    }

    .product-sale-banner__value {
        font-size: 0.64rem;
    }

    .product-sale-banner__label {
        font-size: 0.46rem;
        letter-spacing: 0.12em;
    }

    .product-card-quickview {
        top: 0.4rem;
        right: 0.4rem;
        width: 1.65rem;
        height: 1.65rem;
    }

    .product-card-quickview svg {
        width: 0.7rem;
        height: 0.7rem;
    }

    .shop-products-grid .product-card-purchase {
        padding: 0.45rem 0.4rem 0.55rem;
    }

    .product-card-purchase .product-card-action,
    .shop-products-grid .product-card-purchase .product-card-action {
        min-height: 2.25rem;
        font-size: 0.62rem;
        letter-spacing: 0.06em;
        padding: 0.4rem 0.55rem;
    }

    .product-card-purchase .product-card-action .admin-nav-icon svg,
    .shop-products-grid .product-card-purchase .product-card-action .admin-nav-icon svg,
    .product-card-purchase .product-card-action .product-commerce-icon svg,
    .shop-products-grid .product-card-purchase .product-card-action .product-commerce-icon svg {
        width: 0.72rem;
        height: 0.72rem;
    }

    .product-card-stock-state .product-commerce-icon {
        width: 0.78rem;
        height: 0.78rem;
    }

    .product-card-stock-state {
        min-height: 2.15rem;
        padding: 0.45rem 0.55rem;
        font-size: 0.72rem;
    }
}

.shop-empty-state {
    padding: 2rem 1.5rem;
}

.shop-show-more-row,
.shop-infinite-scroll {
    display: grid;
    justify-items: center;
    margin-top: 0.75rem;
    min-height: 2.5rem;
}

.shop-infinite-scroll-status {
    color: var(--text2);
    font-family: "Cinzel", serif;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.collection-source-media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.collection-source-media-card {
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--border);
}

.collection-source-media-asset {
    width: 100%;
    height: 17rem;
    object-fit: cover;
    display: block;
}

.collection-source-media-card figcaption {
    padding: 0.9rem 1rem;
    color: var(--text2);
    font-size: 0.92rem;
}

.shop-show-more-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    color: var(--gold);
    font-family: "Cinzel", serif;
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.shop-show-more-icon {
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.shop-show-more-icon svg {
    width: 1rem;
    height: 1rem;
}

.shop-show-more-link:hover .shop-show-more-icon {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(1px);
}

.public-scroll-top {
    position: fixed;
    top: auto;
    left: auto;
    right: 1rem;
    right: max(1rem, env(safe-area-inset-right));
    bottom: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    margin: 0;
    padding: 0;
    width: 3.2rem;
    height: 3.2rem;
    border: 1px solid var(--border2);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(24, 21, 16, 0.94), rgba(14, 12, 9, 0.98));
    color: var(--gold);
    box-shadow: var(--card-hover-shadow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0.9rem);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease, border-color var(--transition), background var(--transition);
    z-index: 1150;
}

.public-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.public-scroll-top:hover,
.public-scroll-top:focus-visible {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(36, 31, 24, 0.98), rgba(17, 15, 11, 1));
    outline: none;
}

.public-scroll-top-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.public-scroll-top-icon svg {
    width: 1.1rem;
    height: 1.1rem;
}

[data-theme="light"] .public-scroll-top {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 241, 235, 0.98));
    color: var(--gold-dark);
    border-color: rgba(180, 155, 100, 0.38);
    box-shadow: 0 16px 40px rgba(60, 40, 10, 0.12), 0 4px 16px rgba(60, 40, 10, 0.08);
}

[data-theme="light"] .public-scroll-top:hover,
[data-theme="light"] .public-scroll-top:focus-visible {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(237, 232, 223, 1));
    color: var(--gold);
    border-color: var(--gold);
}

.contact-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
    gap: clamp(1.25rem, 2vw, 2rem);
    align-items: start;
}

.contact-main-column {
    display: grid;
    gap: 1.4rem;
    min-width: 0;
}

.contact-intro-card,
.contact-guidance-card,
.contact-story-card,
.contact-detail-card,
.contact-form-frame {
    display: grid;
    gap: 1rem;
}

.contact-side-column {
    display: grid;
    gap: 1rem;
}

.contact-intro-card {
    padding: clamp(1.4rem, 2vw, 2rem);
}

.contact-intro-copy {
    display: grid;
    gap: 0.85rem;
    max-width: 44rem;
}

.contact-card-eyebrow {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.contact-intro-title,
.contact-guidance-title,
.contact-form-title {
    margin: 0;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.02;
    color: var(--text);
}

.contact-intro-title {
    font-size: clamp(2.1rem, 3vw, 3.55rem);
    max-width: 14ch;
}

.contact-guidance-title,
.contact-form-title {
    font-size: clamp(1.8rem, 2.25vw, 2.65rem);
    max-width: 13ch;
}

.contact-card-copy {
    margin: 0;
    color: var(--text2);
    line-height: 1.78;
    max-width: 62ch;
}

.contact-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.contact-feature-card {
    display: grid;
    gap: 0.45rem;
    padding: 1.1rem;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(201, 168, 76, 0.035));
}

.contact-feature-label {
    color: var(--text3);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-feature-card strong {
    color: var(--text);
    font-size: 1.02rem;
    font-weight: 600;
}

.contact-feature-card p {
    margin: 0;
    color: var(--text2);
    line-height: 1.65;
    font-size: 0.95rem;
}

.contact-direct-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-detail-card {
    padding: 1.25rem;
    min-height: 100%;
    align-content: start;
}

.contact-detail-card-primary {
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02)), var(--card-bg);
}

.contact-detail-card-wide {
    grid-column: 1 / -1;
}

.contact-detail-link,
.contact-detail-value {
    margin: 0;
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.contact-detail-link {
    text-decoration: none;
}

.contact-detail-link:hover,
.contact-detail-link:focus-visible {
    color: var(--gold);
}

.contact-detail-copy {
    margin: 0;
    color: var(--text3);
    line-height: 1.7;
    max-width: 34ch;
}

.contact-detail-value-pre {
    white-space: pre-line;
}

.contact-support-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
    gap: 1rem;
    align-items: start;
}

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

.contact-story-card,
.contact-guidance-card {
    padding: 1.3rem;
}

.contact-guidance-list {
    margin: 0;
    padding-left: 1.15rem;
    display: grid;
    gap: 0.85rem;
    color: var(--text2);
    line-height: 1.75;
}

.contact-form-card {
    width: 100%;
    padding: 0;
}

.contact-form-card-top {
    margin-bottom: clamp(1.25rem, 2vw, 1.8rem);
}

.contact-form-top-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(1rem, 1.8vw, 1.4rem);
    align-items: start;
}

.contact-form-intro-pane,
.contact-form-frame {
    display: grid;
    gap: 1rem;
    padding: clamp(1.25rem, 1.8vw, 1.7rem);
}

.contact-form-frame {
    border-left: 1px solid var(--border);
    gap: 1rem;
}

.contact-form-header {
    display: grid;
    gap: 0.7rem;
}

.contact-response-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(201, 168, 76, 0.28);
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.07), rgba(201, 168, 76, 0.015));
}

.contact-response-banner-label {
    color: var(--text3);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-response-banner strong {
    color: var(--gold);
    font-family: "Cinzel", serif;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-form {
    gap: 0.95rem;
}

.contact-form-row {
    gap: 0.8rem;
}

.contact-message-input {
    min-height: 9rem;
}

.contact-form-actions {
    display: grid;
    gap: 0.75rem;
}

.contact-submit-button {
    width: 100%;
    justify-content: center;
}

.contact-submit-note {
    margin: 0;
    color: var(--text3);
    font-size: 0.92rem;
    line-height: 1.6;
}

@media (max-width: 1280px) {
    .contact-form-top-layout {
        grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    }

    .contact-content-grid {
        grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.88fr);
    }

    .contact-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-feature-card:last-child {
        grid-column: 1 / -1;
    }
}

.brand-badge::after {
    content: "✦";
}

.profile-shell {
    display: grid;
    grid-template-columns: minmax(16rem, 22rem) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.profile-shell > .auth-card.profile-card {
    width: 100%;
    max-width: none;
}

.profile-eyebrow {
    margin: 0;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.profile-card-header {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 1.35rem;
}

.profile-card-title {
    margin: 0;
    max-width: none;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(1.55rem, 2vw, 2rem);
    font-weight: 500;
    line-height: 1.25;
    color: var(--text);
}

.profile-aside-name {
    margin: 0;
    font-family: "Cinzel", serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text);
    overflow-wrap: anywhere;
}

.content-shell-empty {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 0.85rem;
    padding: 2.5rem 1.5rem;
}

.content-shell-empty-copy {
    margin: 0;
    max-width: 28rem;
}

.profile-aside,
.profile-card {
    background: var(--surface);
}

.profile-aside {
    display: grid;
    gap: 1.2rem;
    padding: 1.6rem;
    border: 1px solid var(--border);
    align-content: start;
}

.profile-avatar {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--border2);
    background: var(--surface2);
    display: grid;
    place-items: center;
    color: var(--gold);
    font-family: "Cinzel", serif;
}

.profile-avatar-initial {
    font-size: 2rem;
    line-height: 1;
}

.profile-avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-status-list {
    display: grid;
    gap: 0.8rem;
}

.profile-status-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
    color: var(--text2);
}

.profile-status-value {
    display: grid;
    justify-items: end;
    gap: 0.25rem;
    text-align: right;
}

.profile-status-item strong {
    color: var(--gold);
    font-weight: 500;
}

.profile-coupon-code {
    letter-spacing: 0.08em;
    font-variant-numeric: tabular-nums;
}

.profile-inline-link {
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.profile-address-input {
    min-height: 8rem;
}

.profile-file-input {
    padding-top: 0.78rem;
    padding-bottom: 0.78rem;
}

.profile-file-input::file-selector-button {
    margin-right: 0.9rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--border2);
    background: transparent;
    color: var(--gold);
    font-family: "Cinzel", serif;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.profile-preference-block {
    display: grid;
    gap: 0.75rem;
    padding: 1.1rem 1.15rem;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.06), rgba(201, 168, 76, 0.015));
}

.profile-preference-toggle {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
    cursor: pointer;
    color: var(--text);
}

.profile-preference-toggle input {
    margin-top: 0.2rem;
    width: 1.05rem;
    height: 1.05rem;
    accent-color: var(--gold);
}

.profile-preference-toggle span {
    display: grid;
    gap: 0.3rem;
}

.profile-preference-toggle strong {
    font-size: 0.95rem;
    font-weight: 600;
}

.profile-preference-toggle small {
    color: var(--text2);
    line-height: 1.55;
    font-size: 0.88rem;
}

.profile-actions {
    margin-top: 0.4rem;
}

.newsletter {
    background: linear-gradient(180deg, var(--bg3), var(--bg2));
    padding: 6rem 0;
}

.newsletter-inner {
    max-width: 50rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.25rem;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    max-width: 38rem;
    margin: 2rem auto 1rem;
}

.newsletter-honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.newsletter-turnstile-wrap {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    min-height: 0;
}

.newsletter-turnstile-wrap:not(.is-visible) {
    height: 0;
    margin: 0;
    overflow: hidden;
    pointer-events: none;
}

.newsletter-turnstile-wrap.is-visible {
    margin-top: 0.15rem;
}

.newsletter-feedback {
    grid-column: 1 / -1;
    margin-top: 0.15rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border2);
    background: color-mix(in srgb, var(--surface) 88%, transparent);
    text-align: center;
}

.newsletter-feedback-title {
    display: block;
    font-family: "Cinzel", serif;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.newsletter-feedback-message {
    display: block;
    color: var(--text2);
    font-size: 0.94rem;
    line-height: 1.55;
}

.newsletter-feedback.is-success {
    border-color: rgba(72, 160, 94, 0.45);
    background: rgba(72, 160, 94, 0.12);
}

.newsletter-feedback.is-success .newsletter-feedback-title {
    color: #3d8f57;
}

.newsletter-feedback.is-error {
    border-color: rgba(180, 72, 72, 0.45);
    background: rgba(180, 72, 72, 0.12);
}

.newsletter-feedback.is-error .newsletter-feedback-title {
    color: #b44848;
}

.newsletter-feedback.is-info {
    border-color: rgba(201, 168, 76, 0.45);
    background: rgba(201, 168, 76, 0.1);
}

.newsletter-feedback.is-info .newsletter-feedback-title {
    color: var(--gold);
}

.newsletter-input {
    min-height: 3.5rem;
    padding: 0.95rem 1rem;
    border: 1px solid var(--border2);
    background: var(--surface);
    color: var(--text);
    font-size: 1rem;
}

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

.newsletter-privacy {
    color: var(--text3);
    font-size: 0.88rem;
}

@media (max-width: 1200px) {
    .hero-visual {
        width: 55%;
    }
}

@media (max-width: 980px) {
    .hero {
        min-height: auto;
        height: auto;
        padding: 4rem 0 3rem;
    }

    .hero-visual {
        position: relative;
        width: 100%;
        min-height: 22rem;
        margin-top: 2rem;
    }

    .hero-layout {
        display: grid;
        gap: 1.5rem;
    }

    .hero-content,
    .hero-scroll {
        padding-left: 0;
        left: 0;
    }

    .hero-scroll {
        margin-top: 0.25rem;
        margin-left: 0;
    }

    .collections-grid,
    .coll-grid,
    .journal-grid,
    .testimonials-grid,
    .promo2-inner,
    .arrivals-layout,
    .story-inner,
    .product-detail-layout,
    .review-grid,
    .contact-content-grid,
    .contact-support-grid,
    .collection-source-media-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-hero,
    .product-review-summary {
        grid-template-columns: 1fr;
    }

    /* Mobile: image → variations → details card.
       Hero uses align-items: start for the desktop grid; stretch so exploded
       summary children (qty, CTAs, trust, accordion) fill the column. */
    [data-product-detail-page] .product-detail-hero:has(.product-variation-groups) {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    [data-product-detail-page] .product-detail-hero:has(.product-variation-groups) > .product-detail-gallery,
    [data-product-detail-page] .product-detail-hero:has(.product-variation-groups) .product-variation-groups,
    [data-product-detail-page] .product-detail-hero:has(.product-variation-groups) .product-detail-summary-stack,
    [data-product-detail-page] .product-detail-hero:has(.product-variation-groups) .product-purchase-form,
    [data-product-detail-page] .product-detail-hero:has(.product-variation-groups) .product-detail-summary-card > .product-detail-purchase-row,
    [data-product-detail-page] .product-detail-hero:has(.product-variation-groups) .product-detail-trust,
    [data-product-detail-page] .product-detail-hero:has(.product-variation-groups) .product-complete-set,
    [data-product-detail-page] .product-detail-hero:has(.product-variation-groups) .product-detail-accordion {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        align-self: stretch;
    }

    [data-product-detail-page] .product-detail-hero:has(.product-variation-groups) > .product-detail-gallery {
        order: 1;
    }

    [data-product-detail-page] .product-detail-hero:has(.product-variation-groups) > .product-detail-summary {
        display: contents;
    }

    [data-product-detail-page] .product-detail-hero:has(.product-variation-groups) .product-detail-summary-card {
        display: contents;
        padding: 0;
        border: 0;
        background: transparent;
    }

    [data-product-detail-page] .product-detail-hero:has(.product-variation-groups) .product-variation-groups {
        order: 2;
        margin: 0;
        padding: 0.35rem 1.1rem 0.5rem;
    }

    [data-product-detail-page] .product-detail-hero:has(.product-variation-groups) .product-detail-summary-stack {
        order: 3;
        display: grid;
        gap: 0.75rem;
        padding: 1.15rem 1.1rem 1.2rem;
        border: 1px solid var(--border);
        border-top: 1px solid rgba(201, 168, 76, 0.35);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01)), var(--card-bg);
    }

    [data-product-detail-page] .product-detail-hero:has(.product-variation-groups) .product-purchase-form,
    [data-product-detail-page] .product-detail-hero:has(.product-variation-groups) .product-detail-summary-card > .product-detail-purchase-row {
        order: 4;
        margin: 0;
        padding: 0.15rem 1.1rem 1rem;
        border-left: 1px solid var(--border);
        border-right: 1px solid var(--border);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01)), var(--card-bg);
    }

    [data-product-detail-page] .product-detail-hero:has(.product-variation-groups) .product-purchase-form .product-purchase-actions {
        width: 100%;
        flex: none;
    }

    [data-product-detail-page] .product-detail-hero:has(.product-variation-groups) .product-detail-trust {
        order: 5;
        margin: 0;
        padding: 0 1.1rem 0.85rem;
        border-left: 1px solid var(--border);
        border-right: 1px solid var(--border);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01)), var(--card-bg);
    }

    [data-product-detail-page] .product-detail-hero:has(.product-variation-groups) .product-complete-set {
        order: 6;
        margin: 0;
        padding: 0 1.1rem 0.85rem;
        border-left: 1px solid var(--border);
        border-right: 1px solid var(--border);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01)), var(--card-bg);
    }

    [data-product-detail-page] .product-detail-hero:has(.product-variation-groups) .product-detail-accordion {
        order: 7;
        margin: 0;
        padding: 0 1.1rem 0.35rem;
        border: 1px solid var(--border);
        border-top: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01)), var(--card-bg);
    }

    .coll-card {
        grid-template-columns: 1fr;
    }

    .coll-card .coll-visual {
        min-height: 15rem;
    }

    .product-detail-summary {
        position: static;
    }

    .product-detail-media,
    .product-detail-fallback {
        min-height: 0;
        max-height: none;
        aspect-ratio: 1 / 1;
    }

    .product-detail-gallery {
        max-width: none;
    }

    .product-detail-page.section-compact {
        padding-top: 1rem;
/*        padding-bottom: 2rem;*/
    }


    [data-product-gallery-pdp] .product-detail-thumbs {
        display: none;
    }

    [data-product-gallery-pdp] .product-detail-stage {
        position: relative;
        padding: 0;
        overflow: hidden;
    }

    [data-product-gallery-pdp] .product-detail-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;
        scrollbar-width: none;
    }

    [data-product-gallery-pdp] .product-detail-track:not(:has([data-product-panel] + [data-product-panel])) {
        overflow-x: hidden;
        scroll-snap-type: none;
        touch-action: pan-y;
    }

    [data-product-gallery-pdp] .product-detail-media,
    [data-product-gallery-pdp] .product-detail-fallback {
        touch-action: pan-x pan-y;
    }

    [data-product-gallery-pdp] .product-detail-track:not(:has([data-product-panel] + [data-product-panel])) .product-detail-media,
    [data-product-gallery-pdp] .product-detail-track:not(:has([data-product-panel] + [data-product-panel])) .product-detail-fallback {
        touch-action: pan-y;
    }

    [data-product-gallery-pdp] .product-detail-track::-webkit-scrollbar {
        display: none;
    }

    [data-product-gallery-pdp] .product-detail-panel {
        display: grid !important;
        flex: 0 0 100%;
        width: 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        gap: 0;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    [data-product-gallery-pdp] .product-detail-caption {
        display: none;
    }

    [data-product-gallery-pdp] .product-detail-media,
    [data-product-gallery-pdp] .product-detail-fallback {
        aspect-ratio: 1 / 1;
        max-height: none;
        min-height: 0;
        border-radius: 0;
    }

    [data-product-gallery-pdp] .product-detail-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.45rem;
        min-height: 0.85rem;
        margin-top: 0.15rem;
    }

    [data-product-gallery-pdp] .product-detail-zoom {
        position: absolute;
        right: 0.75rem;
        bottom: 0.75rem;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.75rem;
        height: 2.75rem;
        padding: 0;
        border: 1px solid rgba(201, 168, 76, 0.45);
        border-radius: 999px;
        background: rgba(14, 12, 9, 0.72);
        color: var(--gold);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
        cursor: pointer;
        transition: border-color var(--transition), background var(--transition), transform var(--transition);
    }

    [data-product-gallery-pdp] .product-detail-zoom:hover,
    [data-product-gallery-pdp] .product-detail-zoom:focus-visible {
        border-color: var(--gold);
        background: rgba(22, 18, 14, 0.88);
        outline: none;
        transform: translateY(-1px);
    }

    [data-product-gallery-pdp] .product-detail-zoom svg {
        width: 1.15rem;
        height: 1.15rem;
    }

    [data-product-detail-page] .product-detail-purchase-row {
        position: static;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin: 0;
        padding: 0.85rem 0 0;
        border-top: 1px solid var(--border);
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    [data-product-detail-page] .product-detail-purchase-row--actions-only {
        justify-content: stretch;
    }

    [data-product-detail-page] .product-detail-purchase-row--actions-only .product-purchase-actions {
        width: 100%;
    }

    [data-product-detail-page] .product-detail-qty-stepper {
        flex: none;
        width: fit-content;
        justify-content: flex-start;
        background: var(--surface2);
    }

    [data-product-detail-page] .product-detail-qty-label {
        display: inline-flex;
        padding: 0 0.65rem;
    }

    [data-product-detail-page] .product-detail-qty-btn {
        width: 2.15rem;
        height: 2.25rem;
    }

    [data-product-detail-page] .product-detail-qty-input {
        width: 2.5rem;
        height: 2.25rem;
        font-size: 0.9rem;
    }

    [data-product-detail-page] .product-purchase-actions {
        flex: none;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.55rem;
        min-width: 0;
        flex-wrap: nowrap;
    }

    [data-product-detail-page] .product-purchase-actions .btn-primary,
    [data-product-detail-page] .product-purchase-actions .btn-outline,
    [data-product-detail-page] .product-oos-tooltip {
        flex: none;
        width: 100%;
        min-width: 0;
    }

    [data-product-detail-page] .product-purchase-actions .btn-primary,
    [data-product-detail-page] .product-purchase-actions .btn-outline {
        min-height: 2.9rem;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        border-radius: 999px;
    }

    [data-product-detail-page] .product-purchase-actions [data-buy-now] {
        min-height: 3.85rem;
        padding: 0.78rem 1rem 0.82rem;
    }

    [data-product-detail-page] .product-purchase-actions .product-commerce-icon {
        display: inline-flex;
    }

    body:has([data-product-detail-page]) .public-scroll-top {
        bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    }

    [data-theme="light"] [data-product-detail-page] .product-detail-purchase-row {
        background: transparent;
        border-top-color: var(--border);
        box-shadow: none;
    }

    [data-theme="light"] [data-product-gallery-pdp] .product-detail-zoom {
        background: rgba(255, 255, 255, 0.88);
        color: var(--gold-dark);
        border-color: rgba(180, 155, 100, 0.45);
    }

    .product-detail-notes.section-compact,
    .product-reviews-section.section-compact,
    .product-detail-related.section-compact {
        padding: 2.25rem 0;
        border-top: 0;
    }

    .product-reviews-section.section-compact {
        padding: 2rem 0 2.4rem;
    }

    .product-detail-summary-card {
        padding: 1rem 1.05rem;
        gap: 0.55rem;
    }

    .product-detail-title {
        font-size: clamp(1.55rem, 6vw, 2rem);
    }

    [data-product-detail-page] .product-detail-title {
        font-size: clamp(1.9rem, 7vw, 2.45rem);
    }

    .product-detail-breadcrumbs {
        margin-bottom: 1rem;
        font-size: 0.7rem;
    }

    .product-detail-notes .product-detail-section-card {
        padding: 1rem 1.05rem;
    }

    .product-review-summary {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 0 1.25rem;
        justify-items: center;
        text-align: center;
    }

    .product-review-summary-score {
        justify-items: center;
    }

    .product-review-histogram {
        width: min(100%, 22rem);
    }

    .product-review-community {
        order: 3;
    }

    .product-detail-related .section-header {
        margin-bottom: 1.5rem;
    }

    .product-detail-purchase-row {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .product-purchase-actions {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .product-purchase-actions .btn-primary,
    .product-purchase-actions .btn-outline {
        flex: 1 1 0;
        min-width: 0;
        width: auto;
        justify-content: center;
    }

    .product-review-summary-score {
        justify-items: center;
    }

    .product-review-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-top-layout {
        grid-template-columns: 1fr;
    }

    .contact-feature-grid,
    .contact-direct-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-form-frame {
        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .product-review-form-card {
        width: 100%;
    }

    .shop-drawer-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(10, 8, 6, 0.48);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.28s ease;
        z-index: 1080;
    }

    .shop-layout.is-filter-drawer-open .shop-drawer-backdrop {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .shop-filter-panel {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(22rem, 88vw);
        height: 100vh;
        padding: 1rem;
        background: var(--bg);
        border-right: 1px solid var(--border);
        transform: translateX(-100%);
        transition: transform 0.28s ease;
        z-index: 1090;
        overflow-y: auto;
    }

    .shop-layout.is-filter-drawer-open .shop-filter-panel {
        display: block;
        transform: translateX(0);
    }

    .shop-sidebar-mobile-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .shop-drawer-close {
        width: 2.8rem;
        height: 2.8rem;
        border: 1px solid var(--border);
        background: var(--card-bg);
        display: inline-grid;
        place-items: center;
        position: relative;
    }

    .shop-drawer-close span {
        position: absolute;
        width: 0.95rem;
        height: 1.5px;
        background: currentColor;
    }

    .shop-drawer-close span:first-child {
        transform: rotate(45deg);
    }

    .shop-drawer-close span:last-child {
        transform: rotate(-45deg);
    }

    .shop-mobile-filter-toggle {
        display: inline-flex;
    }

    .form-row,
    .profile-form-grid,
    .profile-shell {
        grid-template-columns: 1fr;
    }

    .collection-card:first-child {
        grid-row: span 1;
        aspect-ratio: 3 / 4;
    }

    .collections-section .collection-card:first-child {
        grid-row: auto;
    }

    .shop-catalog-header {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .shop-catalog-actions {
        justify-items: start;
    }

    .shop-toolbar-row {
        grid-template-columns: 1fr;
    }

    .shop-toolbar-reset {
        width: 100%;
        justify-self: stretch;
    }

    .public-scroll-top {
        right: 0.85rem;
        right: max(0.85rem, env(safe-area-inset-right));
        bottom: 0.85rem;
        bottom: max(0.85rem, env(safe-area-inset-bottom));
        width: 3rem;
        height: 3rem;
    }
}

@media (max-width: 720px) {
    .contact-content-grid,
    .contact-form-top-layout,
    .contact-feature-grid,
    .contact-direct-grid,
    .contact-support-grid,
    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-intro-card,
    .contact-story-card,
    .contact-guidance-card,
    .contact-detail-card,
    .contact-form-intro-pane,
    .contact-form-frame {
        padding: 1.15rem;
    }

    .contact-intro-title,
    .contact-guidance-title,
    .contact-form-title {
        max-width: none;
    }

    .contact-response-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form-frame {
        border-top: 0;
        padding-top: 0;
    }

    .contact-detail-card-wide,
    .contact-feature-card:last-child {
        grid-column: auto;
    }
}

@media (max-width: 560px) {
    .contact-main-column {
        gap: 1rem;
    }

    .contact-message-input {
        min-height: 10.75rem;
    }

    .contact-submit-note,
    .contact-detail-copy,
    .contact-card-copy {
        font-size: 0.9rem;
    }
}

@media (max-width: 720px) {
    .public-scroll-top {
        right: 0.75rem;
        right: max(0.75rem, env(safe-area-inset-right));
        bottom: 0.75rem;
        bottom: max(0.75rem, env(safe-area-inset-bottom));
        width: 2.85rem;
        height: 2.85rem;
    }

    .public-scroll-top-icon svg {
        width: 1rem;
        height: 1rem;
    }
}

@media (max-width: 720px) {
    .hero-title {
        font-size: 3.25rem;
    }

    .hero-eyebrow {
        gap: 0.6rem;
        letter-spacing: 0.25em;
    }

    .hero-eyebrow::before,
    .hero-eyebrow::after {
        width: 1.4rem;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .product-detail-breadcrumbs {
        gap: 0.35rem;
        font-size: 0.68rem;
    }

    .product-detail-kicker-row .product-detail-sku {
        margin-left: 0;
        width: 100%;
    }

    .product-review-card-head {
        grid-template-columns: minmax(0, 1fr) auto;
        justify-content: space-between;
    }

    .product-detail-media,
    .product-detail-fallback {
        min-height: 0;
        max-height: none;
        aspect-ratio: 1 / 1;
    }

    .product-detail-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .product-detail-thumb {
        min-height: 4.5rem;
    }

    .product-purchase-actions .btn-primary,
    .product-purchase-actions .btn-outline {
        font-size: 0.62rem;
        padding: 0.4rem 0.5rem;
        min-height: 2.35rem;
    }

    .product-review-summary {
        padding: 0 0 1.1rem;
    }

    .product-review-summary-score strong {
        font-size: 3rem;
    }

    .product-rating-input label {
        font-size: 1.7rem;
    }

    .shop-page-frame {
        padding-inline: 0.85rem;
    }

    .shop-toolbar-card {
        padding: 1rem;
    }
}

@media (max-width: 980px) {
    .product-review-grid {
        grid-template-columns: 1fr;
    }

    .product-review-file-picker {
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
    }

    .product-review-file-button,
    .product-review-load-more-button,
    .product-review-view-all {
        width: 100%;
    }
}

@media (max-width: 720px) {
    .product-review-card {
        padding: 0.95rem;
    }

    .product-review-title {
        font-size: 1.08rem;
    }

    .product-review-media-card {
        width: 4.7rem;
        flex-basis: 4.7rem;
    }

    .product-review-media {
        height: 4.7rem;
    }

    .product-review-file-picker {
        min-height: 0;
        padding: 0.8rem 0.85rem;
    }

    .product-review-file-text {
        font-size: 0.88rem;
    }
}
.product-purchase-form {
    margin-top: 0.35rem;
    gap: 0;
}

.product-purchase-actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.product-purchase-actions .btn-primary,
.product-purchase-actions .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    min-height: 2.4rem;
    padding: 0.45rem 0.65rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.product-purchase-actions .admin-nav-icon,
.admin-icon-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-purchase-actions .admin-nav-icon svg,
.admin-icon-action svg {
    width: 1rem;
    height: 1rem;
}

[data-add-to-bag] .add-to-bag-btn__label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

[data-add-to-bag].is-loading,
[data-add-to-bag].is-added {
    pointer-events: none;
}

[data-add-to-bag].is-loading .add-to-bag-btn__label,
[data-add-to-bag].is-added .add-to-bag-btn__label {
    opacity: 0.92;
}

.add-to-bag-btn__spinner {
    display: inline-block;
    width: 0.95rem;
    height: 0.95rem;
    border: 2px solid color-mix(in srgb, currentColor 24%, transparent);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: add-to-bag-spin 0.7s linear infinite;
    flex-shrink: 0;
}

.add-to-bag-btn__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.95rem;
    height: 0.95rem;
    flex-shrink: 0;
}

.add-to-bag-btn__check svg {
    width: 100%;
    height: 100%;
}

[data-add-to-bag].is-added {
    border-color: color-mix(in srgb, var(--gold) 65%, var(--border2));
    background: color-mix(in srgb, var(--gold) 10%, var(--surface2));
    color: var(--text);
}

.add-to-bag-feedback {
    flex-basis: 100%;
    width: 100%;
    margin: 0.35rem 0 0;
    color: #d97777;
    font-size: 0.82rem;
    line-height: 1.45;
}

.product-card-purchase-form .add-to-bag-feedback,
.product-card-actions .add-to-bag-feedback {
    margin-top: 0.45rem;
}

/* Shop progressive rendering and infinite-scroll loading placeholders. */
.shop-products-grid > .product-card {
    content-visibility: auto;
    contain-intrinsic-size: auto 34rem;
}

.shop-infinite-skeletons {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
}

.shop-product-skeleton {
    min-height: 24rem;
    pointer-events: none;
}

.shop-product-skeleton > span {
    display: block;
    height: .8rem;
    margin: .75rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface2) 72%, var(--gold) 8%);
    animation: shop-skeleton-pulse 1.1s ease-in-out infinite alternate;
}

.shop-product-skeleton > .shop-product-skeleton-media {
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0;
    border-radius: 0;
}

@keyframes shop-skeleton-pulse { to { opacity: .45; } }

@media (max-width: 900px) {
    .shop-infinite-skeletons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@keyframes add-to-bag-spin {
    to {
        transform: rotate(360deg);
    }
}

.commerce-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
    gap: 1rem;
    align-items: start;
}

.commerce-item-list {
    display: grid;
    gap: 0.85rem;
}

.commerce-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
}

.commerce-order-item {
    grid-template-columns: auto minmax(0, 1fr) auto auto auto auto;
}

.commerce-inline-form {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.commerce-qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border2);
    background: var(--surface2);
    width: fit-content;
}

.commerce-qty-stepper.is-busy {
    opacity: 0.7;
    cursor: progress;
}

.commerce-qty-stepper.is-busy .commerce-qty-btn {
    cursor: progress;
}

.commerce-qty-btn {
    width: 2.25rem;
    height: 2.35rem;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    touch-action: manipulation;
    user-select: none;
    transition: background var(--transition), color var(--transition);
}

.commerce-qty-btn:hover:not(:disabled) {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
}

.commerce-qty-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.commerce-qty-input {
    width: 3.25rem;
    min-height: 2.35rem;
    border: 0;
    border-left: 1px solid var(--border2);
    border-right: 1px solid var(--border2);
    border-radius: 0;
    background: transparent;
    color: var(--text);
    text-align: center;
    font-size: 0.95rem;
    -moz-appearance: textfield;
    appearance: textfield;
}

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

.commerce-item-total {
    font-weight: 600;
    min-width: 6.5rem;
    text-align: right;
}

.bag-page {
    max-width: 100%;
    overflow-x: clip;
}

.bag-page .commerce-item {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
}

.bag-page .commerce-item.is-busy {
    opacity: 0.72;
}

.bag-page .commerce-item-info {
    display: grid;
    gap: 0.22rem;
    min-width: 0;
}

.bag-page .commerce-item-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.bag-page .commerce-item-title-link {
    color: inherit;
    text-decoration: none;
}

.bag-page .commerce-item-title-link:hover {
    color: var(--gold);
}

.bag-page .commerce-item-variant,
.bag-page .commerce-item-price,
.bag-page .commerce-item-sku,
.bag-page .commerce-item-note {
    margin: 0;
}

.bag-page .commerce-item-variant {
    color: var(--text2);
    font-size: 0.88rem;
}

.bag-page .commerce-item-price {
    margin-top: 0.12rem;
    font-weight: 600;
}

.bag-page .commerce-item-sku,
.bag-page .commerce-item-note {
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}

.bag-page .commerce-item-actions {
    grid-column: 2;
    display: grid;
    gap: 0.45rem;
    min-width: 0;
}

.bag-page .commerce-item-qty-row {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    align-items: center;
    gap: 0.55rem 0.7rem;
    min-width: 0;
}

.bag-page .commerce-item-qty-label {
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bag-page .commerce-item-qty-static {
    color: var(--text);
    font-size: 0.92rem;
}

.bag-page .commerce-item-total {
    min-width: 0;
    text-align: right;
    font-size: 1rem;
}

.bag-page .commerce-item-total-stack {
    min-width: 0;
    display: grid;
    justify-items: end;
    gap: 0.12rem;
}

.bag-page .commerce-item-offer-note {
    margin: 0;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: color-mix(in srgb, #2e7d4f 80%, var(--text));
}

.bag-page .commerce-item-offer-note[hidden] {
    display: none !important;
}

.bag-page .commerce-item-remove-form {
    justify-self: start;
}

.bag-page .commerce-item-remove {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 2.25rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text2);
    cursor: pointer;
    font-family: "Cinzel", serif;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bag-page .commerce-item-remove .product-commerce-icon {
    width: 0.85rem;
    height: 0.85rem;
    opacity: 0.82;
}

.bag-page .commerce-item-remove:hover {
    color: var(--gold);
}

.bag-page .commerce-item-remove:hover .product-commerce-icon {
    opacity: 1;
}

.bag-shell {
    align-items: start;
}

.bag-trust-badges,
.checkout-trust-badges {
    margin-bottom: 0;
}

.bag-trust-badges + .product-purchase-trust,
.checkout-trust-badges + .product-purchase-trust {
    margin: 0.85rem 0 1.25rem;
}

.bag-trust-badges .trust-badges,
.checkout-trust-badges .trust-badges {
    margin-bottom: 0;
}

.trust-badge-link {
    color: var(--trust-ink-soft);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.trust-badge-link:hover {
    color: var(--trust-ink);
}

.bag-summary-actions {
    display: grid;
    gap: 0.7rem;
    margin-top: 0.35rem;
}

[data-bag-summary] {
    gap: 0.85rem;
}

[data-bag-summary] .bag-summary-stack {
    display: grid;
    gap: 0.85rem;
    min-width: 0;
}

[data-bag-summary] .checkout-free-delivery,
[data-bag-summary] .commerce-promo-progress,
[data-bag-summary] .bag-offer-cues,
[data-bag-summary] .bag-coupon,
[data-bag-summary] .bag-gift-panel {
    margin: 0;
}

[data-bag-summary] .bag-offer-cues {
    gap: 0.5rem;
}

[data-bag-summary] .bag-summary-totals {
    display: grid;
    gap: 0.5rem;
}

[data-bag-summary] .bag-summary-stack:not(:has(> :not([hidden]))) {
    display: none;
}

[data-bag-summary] .bag-summary-totals [data-cart-offer-savings]:empty {
    display: none;
}

[data-bag-summary] .bag-summary-totals [data-cart-offer-savings]:not(:empty) {
    display: grid;
    gap: 0.5rem;
}

[data-bag-summary] .commerce-summary-total {
    padding-top: 0.5rem;
    margin-top: 0.05rem;
}

[data-bag-summary] .bag-summary-actions {
    margin-top: 0;
    gap: 0.5rem;
}

.bag-checkout-cta {
    width: 100%;
    min-height: 3rem;
    justify-content: center;
}

.bag-clear-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.4rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text2);
    cursor: pointer;
    font-family: "Cinzel", serif;
    font-size: 0.76rem;
    letter-spacing: 0.1em;
    text-transform: none;
}

.bag-clear-action:hover {
    color: var(--gold);
}

.bag-confirm-dialog {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background: rgba(10, 8, 6, 0.72);
}

.bag-confirm-dialog.is-closed,
.bag-confirm-dialog[hidden] {
    display: none !important;
    pointer-events: none;
}

body.bag-confirm-open {
    overflow: hidden;
}

.bag-confirm-card {
    position: relative;
    width: min(100%, 24rem);
    max-width: 100%;
    padding: 1.5rem 1.4rem;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--card-hover-shadow);
}

.bag-confirm-card h2 {
    margin: 0 0 0.45rem;
    font-size: 1.45rem;
}

.bag-confirm-card p {
    margin: 0 0 1.15rem;
    color: var(--text2);
}

.bag-confirm-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.bag-confirm-actions .btn-primary,
.bag-confirm-actions .btn-outline {
    min-height: 2.75rem;
    justify-content: center;
}

.commerce-summary-total strong {
    font-size: 1.15rem;
}

.commerce-summary-card {
    display: grid;
    gap: 0.7rem;
    container-type: inline-size;
    container-name: checkout-totals;
}

.commerce-promo-progress {
    margin: 0 0 0.35rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid rgba(201, 168, 76, 0.28);
    background: rgba(201, 168, 76, 0.08);
    color: var(--text-muted, #6b6458);
    font-size: 0.86rem;
    line-height: 1.4;
}

.commerce-summary-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.commerce-summary-discount strong {
    color: color-mix(in srgb, #2e7d4f 82%, var(--text));
    font-weight: 600;
}

.commerce-summary-line[hidden],
.commerce-promo-progress[hidden] {
    display: none !important;
}

.checkout-free-delivery {
    --fd-green: #2d6a45;
    --fd-green-strong: #24573a;
    --fd-green-muted: rgba(45, 106, 69, 0.13);
    --fd-track: rgba(45, 106, 69, 0.14);
    --fd-fill: linear-gradient(90deg, #3d8c59 0%, #2d6a45 58%, #4ca36c 100%);
    --fd-progress: 0%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
        "icon copy perk"
        "icon meter perk"
        "icon scale perk";
    align-items: center;
    column-gap: 0.8rem;
    row-gap: 0.38rem;
    margin: 0 0 0.2rem;
    padding: 0.68rem 0.8rem;
    border: 1px solid var(--border);
    background:
        linear-gradient(180deg, var(--fd-green-muted), transparent 48%),
        color-mix(in srgb, var(--bg2) 78%, var(--card-bg));
    min-width: 0;
}

html[data-theme="dark"] .checkout-free-delivery {
    --fd-green: #7dcea0;
    --fd-green-strong: #93dbb0;
    --fd-green-muted: rgba(125, 206, 160, 0.1);
    --fd-track: rgba(125, 206, 160, 0.16);
    --fd-fill: linear-gradient(90deg, #3c8558 0%, #5fb67d 62%, #7dcea0 100%);
    background:
        linear-gradient(180deg, rgba(125, 206, 160, 0.08), transparent 50%),
        color-mix(in srgb, var(--surface2) 82%, var(--card-bg));
}

.checkout-free-delivery[hidden] {
    display: none !important;
}

.checkout-free-delivery-icon {
    grid-area: icon;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--fd-green);
    background: var(--fd-green-muted);
}

.checkout-free-delivery-truck,
.checkout-free-delivery-gift,
.checkout-free-delivery-check {
    width: 1.12rem;
    height: 1.12rem;
}

.checkout-free-delivery-copy {
    grid-area: copy;
    margin: 0;
    color: var(--text);
    font-size: 0.84rem;
    line-height: 1.35;
    min-width: 0;
    overflow-wrap: anywhere;
}

.checkout-free-delivery-copy[hidden] {
    display: none !important;
}

.checkout-free-delivery-copy strong {
    color: var(--fd-green-strong);
    font-weight: 600;
}

.checkout-free-delivery-meter {
    grid-area: meter;
    height: 0.4rem;
    border-radius: 999px;
    background: var(--fd-track);
    overflow: hidden;
}

.checkout-free-delivery-fill {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--fd-fill);
    position: relative;
    transform: translateZ(0);
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.checkout-free-delivery.is-progress-ready .checkout-free-delivery-fill {
    width: var(--fd-progress);
}

.checkout-free-delivery-fill::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, 0.26) 50%, transparent 66%);
    pointer-events: none;
}

html[data-theme="dark"] .checkout-free-delivery-fill::after {
    background: linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, 0.12) 50%, transparent 66%);
}

.checkout-free-delivery-scale {
    grid-area: scale;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.72rem;
    line-height: 1.2;
}

.checkout-free-delivery-perk {
    grid-area: perk;
    display: grid;
    justify-items: center;
    align-content: center;
    align-self: stretch;
    gap: 0.2rem;
    padding-left: 0.75rem;
    border-left: 1px solid var(--border);
    color: var(--fd-green);
    min-width: 4.35rem;
}

.checkout-free-delivery-perk span {
    font-family: "Cinzel", serif;
    font-size: 0.54rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-align: center;
    max-width: 4.5rem;
}

.checkout-free-delivery-gift[hidden],
.checkout-free-delivery-check[hidden] {
    display: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .checkout-free-delivery-fill {
        transition: none;
        width: var(--fd-progress);
    }
}

@media (max-width: 720px) {
    .checkout-free-delivery {
        grid-template-columns: auto minmax(0, 1fr);
        grid-template-areas:
            "icon copy"
            "meter meter"
            "scale scale";
        column-gap: 0.65rem;
        row-gap: 0.42rem;
        padding: 0.68rem 0.72rem;
    }

    .checkout-free-delivery-perk {
        display: none;
    }

    .checkout-free-delivery-icon {
        width: 2.05rem;
        height: 2.05rem;
    }

    .checkout-free-delivery-copy {
        font-size: 0.8rem;
    }
}

@container checkout-totals (max-width: 26rem) {
    .checkout-free-delivery {
        grid-template-columns: auto minmax(0, 1fr);
        grid-template-areas:
            "icon copy"
            "meter meter"
            "scale scale";
        column-gap: 0.65rem;
    }

    .checkout-free-delivery-perk {
        display: none;
    }
}

.commerce-summary-total {
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
}

.commerce-trust-page .content-hero-compact .section-title {
    max-width: none;
}

.trust-badges {
    --trust-ink: #1c4d7c;
    --trust-ink-soft: #5d7fa3;
    --trust-icon-bg: #e4eef8;
    --trust-line: #e6e8ea;
    --trust-card: #ffffff;
    --trust-stroke: #ececec;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0 0 1.35rem;
    padding: 0.95rem 0.2rem 0.85rem;
    overflow: hidden;
    list-style: none;
    border: 1px solid var(--trust-stroke);
    border-radius: 0.7rem;
    background: var(--trust-card);
    box-shadow: none;
}

[data-theme="dark"] .trust-badges {
    --trust-ink: #b7d3ee;
    --trust-ink-soft: #8eacc8;
    --trust-icon-bg: rgba(183, 211, 238, 0.14);
    --trust-line: rgba(183, 211, 238, 0.22);
    --trust-card: #18222e;
    --trust-stroke: rgba(183, 211, 238, 0.2);
}

.trust-badge {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    justify-items: center;
    align-content: start;
    gap: 0.34rem;
    min-width: 0;
    text-align: center;
    padding: 0.1rem 0.65rem 0.15rem;
}

.trust-badge + .trust-badge {
    border-left: 0;
}

.trust-badge + .trust-badge::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: var(--trust-line);
}

.trust-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    border: 0;
    background: var(--trust-icon-bg);
    color: var(--trust-ink);
}

.trust-badge-icon svg {
    width: 1.18rem;
    height: 1.18rem;
}

.trust-badge-title {
    color: var(--trust-ink);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.trust-badge-copy {
    color: var(--trust-ink-soft);
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

@media (min-width: 1025px) {
    .commerce-trust-page .content-hero {
        padding: 1.75rem 0 1rem;
    }

    .commerce-trust-page .section-compact {
        padding-top: 1.35rem;
        padding-bottom: 3.25rem;
    }

    .trust-badges {
        margin-bottom: 1.15rem;
        padding: 1rem 0.3rem 0.9rem;
    }

    .trust-badge {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto;
        justify-items: center;
        text-align: center;
        padding: 0.12rem 0.7rem;
    }

    .trust-badge-icon,
    .trust-badge-title,
    .trust-badge-copy {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (min-width: 1280px) {
    .trust-badges {
        padding: 1rem 0.35rem 0.9rem;
    }
}

.checkout-submit [data-checkout-submit-text] {
    position: relative;
    z-index: 1;
}

.checkout-page {
    padding-top: 1.5rem;
    padding-bottom: 3.5rem;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(17.5rem, 0.75fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: start;
}

.checkout-form {
    display: grid;
    gap: 1.15rem;
    min-width: 0;
}

.checkout-panel {
    padding: clamp(1.2rem, 2.4vw, 1.75rem);
    border: 1px solid var(--border);
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
}

.checkout-panel-header {
    margin-bottom: 1.1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border);
}

.checkout-panel-eyebrow {
    margin: 0 0 0.45rem;
    color: var(--gold);
    font-family: "Cinzel", serif;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.checkout-panel-title,
.checkout-summary-title {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.65rem, 2.4vw, 2rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text);
}

.checkout-panel-copy {
    margin: 0.45rem 0 0;
    color: var(--text2);
    font-size: 0.92rem;
    line-height: 1.55;
}

.checkout-fields {
    display: grid;
    gap: 0.95rem;
}

.checkout-field {
    display: grid;
    gap: 0.4rem;
    min-width: 0;
}

.checkout-field .form-label {
    gap: 0.4rem;
}

.required-mark {
    color: var(--gold);
    font-weight: 600;
    margin-left: 0.12rem;
}

.checkout-amount-free {
    color: var(--gold);
    font-family: "Cinzel", serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-field .form-input,
.checkout-page .custom-select-trigger {
    min-height: 3rem;
}

.checkout-field .field-validation,
.checkout-payment-methods > .field-validation {
    display: block;
    text-transform: none;
    letter-spacing: 0.01em;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.35;
    color: #b94b4b;
}

.checkout-field .field-validation:empty,
.checkout-payment-methods > .field-validation:empty {
    display: none;
}

.checkout-page .input-validation-error,
.checkout-page .custom-select.has-error .custom-select-trigger {
    border-color: rgba(185, 75, 75, 0.7);
    box-shadow: 0 0 0 3px rgba(185, 75, 75, 0.12);
}

.checkout-field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
}

.checkout-address {
    min-height: 6.5rem;
    resize: vertical;
}

.checkout-payment-methods {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    border: 0;
}

.checkout-payment-option {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 0.9rem;
    padding: 1rem 1.05rem;
    border: 1px solid var(--border2);
    background: var(--surface2);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    cursor: pointer;
}

.checkout-payment-option:hover {
    border-color: color-mix(in srgb, var(--gold) 55%, var(--border2));
}

.checkout-payment-option.is-selected {
    border-color: var(--gold);
    background: color-mix(in srgb, var(--gold) 10%, var(--surface2));
    box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.28);
}

.checkout-payment-option input {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.2rem;
    accent-color: var(--gold);
}

.checkout-payment-copy strong {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    color: var(--text);
    font-size: 0.98rem;
}

.checkout-payment-copy small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    text-transform: none;
    line-height: 1.45;
}

.checkout-payment-option.is-selected .checkout-payment-copy small {
    color: var(--text2);
}

.checkout-payment-perk {
    display: inline-flex;
    align-items: center;
    padding: 0.22rem 0.55rem;
    border: 1px solid #1f4e79;
    background: #e7f0f8;
    color: #14385c;
    font-family: "Cinzel", serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

[data-theme="dark"] .checkout-payment-perk {
    border-color: #8eb6d8;
    background: color-mix(in srgb, #1f4e79 55%, #0e1218);
    color: #e4eef7;
    box-shadow: inset 0 0 0 1px rgba(142, 182, 216, 0.22);
}

.checkout-bank-perk {
    margin: 0 0 0.85rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid color-mix(in srgb, var(--gold) 35%, var(--border));
    background: color-mix(in srgb, var(--gold) 8%, var(--surface2));
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.45;
}

.checkout-bank-transfer-wrap {
    margin-top: 1rem;
}

.checkout-bank-transfer-wrap[hidden] {
    display: none !important;
}

.checkout-bank-next-step {
    margin: 0;
    padding: 0.9rem 1rem;
    border: 1px solid color-mix(in srgb, var(--gold) 35%, var(--border));
    background: color-mix(in srgb, var(--gold) 8%, var(--surface2));
}

.checkout-bank-next-title {
    margin: 0 0 0.35rem;
    color: var(--text);
    font-family: "Cinzel", serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-bank-next-copy {
    margin: 0;
    color: var(--text2);
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkout-bank-transfer-panel {
    padding: 1.15rem 1.2rem;
    border: 1px solid color-mix(in srgb, var(--accent, #c4a574) 55%, var(--border));
    background: var(--surface2);
}

.checkout-bank-transfer-header {
    margin-bottom: 0.85rem;
}

.checkout-bank-transfer-title {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text);
}

.checkout-bank-reference {
    margin: 0 0 0.85rem;
    color: var(--text2);
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkout-bank-instructions {
    white-space: pre-wrap;
    color: var(--text2);
    line-height: 1.7;
    margin: 0.75rem 0 1rem;
}

.checkout-bank-facts {
    margin-top: 0.75rem;
}

.checkout-bank-qr {
    margin-top: 1rem;
    max-width: 12rem;
}

.checkout-bank-qr img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--border);
    background: #fff;
}

.checkout-summary {
    position: sticky;
    top: 6.5rem;
    align-self: start;
}

.checkout-summary-inner {
    padding: clamp(1.2rem, 2.4vw, 1.75rem);
    border: 1px solid var(--border);
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
    display: grid;
    gap: 1.05rem;
    container-type: inline-size;
    container-name: checkout-totals;
}

.checkout-summary-toggle {
    display: none;
}

.checkout-summary-header {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.checkout-summary-items {
    display: grid;
    gap: 0.85rem;
}

.checkout-summary-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: start;
}

.checkout-summary-media {
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 0.7rem;
}

.checkout-summary-media .order-detail-media-fallback {
    font-size: 1.2rem;
}

.checkout-summary-item-copy {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
}

.checkout-summary-item-copy strong {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.35;
}

.checkout-summary-item-copy span,
.checkout-summary-item-copy small,
.checkout-summary-qty {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.checkout-summary-qty {
    font-weight: 500;
    color: var(--text2);
}

.checkout-summary-item-price {
    color: var(--text);
    font-size: 0.92rem;
    white-space: nowrap;
}

.checkout-summary-totals {
    display: grid;
    gap: 0.6rem;
    padding-top: 0.35rem;
    border-top: 1px solid var(--border);
    container-type: inline-size;
    container-name: checkout-totals;
}

.checkout-summary-payable {
    align-items: baseline;
}

.checkout-summary-payable span,
.checkout-summary-payable strong {
    color: var(--text);
    font-size: 1.05rem;
}

.checkout-summary-payable strong {
    font-size: 1.2rem;
    font-weight: 600;
}

.checkout-submit-wrap {
    display: grid;
    gap: 0.75rem;
}

.checkout-submit-wrap .checkout-free-delivery {
    margin: 0;
}

.checkout-submit {
    width: 100%;
    justify-content: center;
    min-height: 3.1rem;
}

.checkout-submit-bar-mobile {
    display: none;
}

.checkout-trust {
    display: grid;
    gap: 0.2rem;
    text-align: center;
}

.checkout-trust-line {
    margin: 0;
    color: var(--text2);
    font-size: 0.78rem;
    line-height: 1.45;
}

.checkout-trust-line strong {
    color: var(--text);
    font-family: "Cinzel", serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.checkout-trust-line[hidden] {
    display: none !important;
}

.checkout-summary-note {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.45;
    text-align: center;
}

.visually-hidden,
.content-hero-visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0 !important;
}

@media (max-width: 960px) {
    .commerce-shell,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-trust-page .checkout-page {
        padding-top: 0.75rem;
        padding-bottom: 1.5rem;
    }

    .checkout-trust-page .section-compact {
        padding-top: 0.75rem;
    }

    .checkout-panel-header .checkout-panel-copy {
        display: none;
    }

    .checkout-panel-header {
        margin-bottom: 0.85rem;
        padding-bottom: 0.65rem;
    }

    .checkout-panel-title,
    .checkout-summary-title {
        font-size: 1.32rem;
    }

    .checkout-summary {
        position: static;
    }

    .checkout-summary-inner {
        margin-top: 0;
        padding: 1rem 1.05rem 1.15rem;
        gap: 0.85rem;
    }

    .checkout-summary-header {
        display: block;
        padding-bottom: 0.65rem;
    }

    .checkout-summary-item {
        gap: 0.7rem;
    }

    .checkout-summary-media {
        width: 3.75rem;
        height: 3.75rem;
    }

    .checkout-summary-item-copy strong {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .checkout-submit-desktop,
    .checkout-submit-bar-mobile {
        display: none;
    }

    .checkout-submit {
        min-height: 3.15rem;
        font-size: 0.72rem;
        letter-spacing: 0.1em;
    }

    .commerce-item {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .commerce-item .commerce-inline-form,
    .commerce-item .commerce-item-total,
    .commerce-item > form.inline-form {
        grid-column: 2;
    }

    .bag-page .commerce-item {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 0.85rem 0.9rem;
        padding: 0.9rem;
    }

    .bag-page .commerce-item .order-detail-media {
        width: 4.75rem;
        height: 4.75rem;
    }

    .bag-page .commerce-item .commerce-inline-form,
    .bag-page .commerce-item .commerce-item-total,
    .bag-page .commerce-item > form.inline-form {
        grid-column: auto;
    }

    .bag-page .commerce-item-actions {
        grid-column: 1 / -1;
        gap: 0.35rem;
        padding-top: 0.35rem;
        border-top: 1px solid var(--border);
    }

    .bag-page .commerce-item-qty-row {
        grid-template-columns: auto auto minmax(0, 1fr);
        width: 100%;
    }

    .bag-page .commerce-item-remove-form {
        justify-self: start;
    }

    .bag-page .commerce-item-remove {
        min-height: 2.35rem;
    }

    .commerce-order-item {
        grid-template-columns: auto minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .checkout-field-row {
        grid-template-columns: 1fr;
    }

    .checkout-page {
        padding-top: 0.85rem;
        padding-bottom: 1.35rem;
    }

    .checkout-panel {
        padding: 1rem 0.95rem;
    }

    .checkout-fields {
        gap: 0.85rem;
    }

    .commerce-trust-page .content-hero {
        padding: 1.35rem 0 0.9rem;
    }

    .commerce-trust-page .content-hero-compact .section-title {
        margin-bottom: 0.4rem;
        font-size: clamp(1.7rem, 7vw, 2.1rem);
    }

    .commerce-trust-page .content-hero .section-sub {
        font-size: 0.9rem;
        line-height: 1.5;
        letter-spacing: 0.03em;
        max-width: none;
    }

    .commerce-trust-page .section-compact {
        padding-top: 1.15rem;
        padding-bottom: 2.25rem;
    }

    .trust-badges {
        margin-bottom: 1rem;
        padding: 0.82rem 0.08rem 0.72rem;
    }

    .trust-badge {
        padding: 0.05rem 0.38rem 0.08rem;
        gap: 0.26rem;
    }

    .trust-badge-icon {
        width: 2.05rem;
        height: 2.05rem;
    }

    .trust-badge-icon svg {
        width: 1.02rem;
        height: 1.02rem;
    }

    .trust-badge-title {
        font-size: 0.86rem;
    }

    .trust-badge-copy {
        font-size: 0.62rem;
        letter-spacing: 0.01em;
    }

    .bag-checkout-cta {
        min-height: 3.05rem;
    }

    .checkout-submit {
        min-height: 3.15rem;
        font-size: 0.74rem;
        letter-spacing: 0.1em;
    }
}

@media (max-width: 480px) {
    .trust-badges {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding: 0.82rem 0.08rem 0.72rem;
    }

    .trust-badge {
        min-width: 0;
        justify-items: center;
        text-align: center;
        padding: 0.05rem 0.38rem 0.08rem;
        gap: 0.26rem;
    }

    .trust-badge-icon {
        width: 2.05rem;
        height: 2.05rem;
    }

    .trust-badge-icon svg {
        width: 1.02rem;
        height: 1.02rem;
    }

    .trust-badge-title {
        font-size: 0.86rem;
        line-height: 1.15;
    }

    .trust-badge-copy {
        font-size: 0.62rem;
        letter-spacing: 0.01em;
    }
}
.order-detail-section {
    padding-bottom: 3rem;
}

.order-detail-container {
    width: min(100%, 72rem);
    margin-inline: auto;
}

.order-detail-header {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.order-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    color: var(--text-soft);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color var(--transition);
}

.order-detail-back:hover {
    color: var(--gold);
}

.order-detail-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
}

.order-detail-title {
    margin: 0.35rem 0 0.5rem;
    font-size: clamp(1.55rem, 2.4vw, 2.35rem);
    line-height: 1.15;
    word-break: break-word;
}

.order-detail-meta {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.order-detail-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem;
}

.order-detail-badge {
    display: inline-flex;
    align-items: center;
    min-height: 2.1rem;
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.order-detail-badge-muted {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-soft);
}

.order-detail-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.75fr);
    gap: 1.25rem;
    align-items: start;
}

.order-detail-card {
    padding: 1.35rem 1.4rem;
    border: 1px solid var(--border);
}

.order-detail-card-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid var(--border);
}

.order-detail-card-header h2 {
    margin: 0;
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.order-detail-items {
    display: grid;
    gap: 0.9rem;
}

.order-detail-item {
    display: grid;
    grid-template-columns: 5.5rem minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 0.95rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
}

.order-detail-media {
    width: 5.5rem;
    height: 5.5rem;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 0.85rem;
    background: linear-gradient(160deg, rgba(201, 168, 76, 0.08), transparent), var(--surface2);
}

.order-detail-media-link,
.order-detail-media-preview {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.order-detail-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-detail-media-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: var(--gold);
    font-family: var(--font-display, serif);
    font-size: 1.45rem;
}

.order-detail-copy {
    display: grid;
    gap: 0.35rem;
    min-width: 0;
}

.order-detail-copy h3 {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.35;
}

.order-detail-item-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.order-detail-item-link:hover {
    color: var(--gold);
}

.order-detail-chip {
    width: fit-content;
    padding: 0.2rem 0.55rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.order-detail-sku,
.order-detail-qty {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.order-detail-separator {
    margin-inline: 0.35rem;
    opacity: 0.6;
}

.order-detail-line-total {
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

.order-detail-aside {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 6.5rem;
    min-width: 0;
}

.order-detail-summary-card {
    display: grid;
    gap: 1rem;
    min-width: 0;
    overflow: hidden;
}

.order-detail-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1rem;
    margin: 0;
}

.order-detail-fact {
    display: grid;
    gap: 0.3rem;
    min-width: 0;
}

.order-detail-fact-span {
    grid-column: 1 / -1;
}

.order-detail-fact dt {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.76rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.order-detail-fact dd {
    margin: 0;
    color: var(--text);
    font-size: 0.96rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.order-detail-totals {
    display: grid;
    gap: 0.55rem;
    padding-top: 0.35rem;
    border-top: 1px solid var(--border);
}

.order-detail-actions {
    display: grid;
    gap: 0.75rem;
}

@media (max-width: 960px) {
    .order-detail-heading {
        flex-direction: column;
    }

    .order-detail-badges {
        justify-content: flex-start;
    }

    .order-detail-shell {
        grid-template-columns: 1fr;
    }

    .order-detail-aside {
        position: static;
    }

    .order-detail-item {
        grid-template-columns: 4.75rem minmax(0, 1fr);
    }

    .order-detail-line-total {
        grid-column: 2;
        justify-self: start;
        padding-top: 0.15rem;
    }

    .order-detail-facts {
        grid-template-columns: 1fr;
    }
}

.order-success-section .order-detail-header {
    gap: 1.5rem;
}

.order-success-banner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1.2rem 1.25rem;
    border: 1px solid rgba(201, 168, 76, 0.28);
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(255, 255, 255, 0.02));
}

.order-success-icon {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(201, 168, 76, 0.45);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.order-success-snapshot {
    display: grid;
    gap: 0.7rem;
    margin: 1rem 0 0;
}

@media (min-width: 720px) {
    .order-success-snapshot {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem 1.25rem;
    }
}

.order-success-snapshot div {
    display: grid;
    gap: 0.15rem;
}

.order-success-snapshot dt {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.order-success-snapshot dd {
    margin: 0;
    color: var(--text);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.4;
    word-break: break-word;
}

.order-success-placed {
    margin: 0.85rem 0 0;
}

.order-success-reference {
    margin: 0 0 0.35rem;
    color: var(--text);
    font-size: 1rem;
}

.order-success-reference strong {
    color: var(--gold);
    font-weight: 600;
    word-break: break-word;
}

@media (max-width: 640px) {
    .order-success-banner {
        grid-template-columns: 1fr;
    }
}

.order-confirmation-page {
    --oc-gold: #c9a84c;
    --oc-gold-border: rgba(201, 168, 76, 0.38);
    --oc-panel-bg: color-mix(in srgb, var(--card-bg) 92%, #000 8%);
    --oc-success: #c9a84c;
}

.order-confirmation-page .order-detail-container {
    max-width: 52rem;
}

.order-confirmation-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-family: "Jost", sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.order-confirmation-breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.order-confirmation-breadcrumbs a:hover {
    color: var(--gold);
}

.order-confirmation-hero {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.1rem;
    align-items: start;
    margin-bottom: 0.85rem;
    text-align: left;
}

.order-confirmation-icon {
    display: grid;
    place-items: center;
    width: 3.65rem;
    height: 3.65rem;
    border-radius: 50%;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.order-confirmation-icon--success {
    border: 1.5px solid var(--oc-gold-border);
    background: color-mix(in srgb, var(--oc-gold) 12%, transparent);
    color: var(--oc-gold);
}

.order-confirmation-hero-copy {
    min-width: 0;
}

.order-confirmation-hero-copy .order-detail-title {
    margin: 0 0 0.35rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.85rem, 4vw, 2.35rem);
    font-weight: 500;
    line-height: 1.08;
}

.order-confirmation-hero-sub {
    margin: 0;
    color: var(--text2);
    font-size: 0.92rem;
    line-height: 1.55;
    max-width: 38rem;
}

.order-confirmation-hero-sub + .order-confirmation-hero-sub {
    margin-top: 0.15rem;
}

.order-confirmation-status-row {
    margin-bottom: 0.85rem;
}

.order-confirmation-status-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--oc-gold-border);
    border-radius: 0.85rem;
    background: var(--oc-panel-bg);
    overflow: hidden;
}

.order-confirmation-status-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 4.1rem;
    padding: 0.85rem 1rem;
}

.order-confirmation-status-cell--order {
    border-right: 1px solid var(--oc-gold-border);
}

.order-confirmation-status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    color: var(--oc-gold);
}

.order-confirmation-status-icon svg {
    width: 1.15rem;
    height: 1.15rem;
}

.order-confirmation-status-copy {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
}

.order-confirmation-status-label {
    color: color-mix(in srgb, var(--oc-gold) 72%, var(--text-muted));
    font-family: "Jost", sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.order-confirmation-status-value {
    color: var(--text);
    font-family: "Jost", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
}

.order-confirmation-stack {
    display: grid;
    gap: 0.85rem;
}

.order-confirmation-panel {
    padding: 1.1rem 1.15rem;
    border: 1px solid var(--oc-gold-border);
    border-radius: 0.85rem;
    background: var(--oc-panel-bg);
}

.order-confirmation-panel-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.95rem;
}

.order-confirmation-panel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    flex-shrink: 0;
    color: var(--oc-gold);
}

.order-confirmation-panel-icon svg {
    width: 100%;
    height: 100%;
}

.order-confirmation-panel-title {
    margin: 0;
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text);
}

.order-confirmation-panel-copy {
    margin: 0;
    color: var(--text2);
    font-size: 0.9rem;
    line-height: 1.5;
}

.order-confirmation-bank-panel--confirmed {
    border-color: color-mix(in srgb, #7d9a6a 45%, var(--oc-gold-border));
}

.order-confirmation-bank-grid {
    display: grid;
    gap: 1.15rem;
}

@media (min-width: 960px) {
    .order-confirmation-bank-grid {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        gap: 1.5rem;
    }

    .order-confirmation-bank-qr {
        width: 12.25rem;
    }
}

.order-confirmation-bank-fields {
    display: grid;
    gap: 0.85rem;
}

.order-confirmation-bank-field {
    display: grid;
    gap: 0.2rem;
}

.order-confirmation-bank-label {
    color: var(--text-muted);
    font-family: "Jost", sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.order-confirmation-bank-value {
    color: var(--text);
    font-family: "Jost", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
    word-break: break-word;
}

.order-confirmation-bank-value--amount {
    color: var(--oc-gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
    font-weight: 600;
}

.order-confirmation-bank-value-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.order-confirmation-copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3.35rem;
    min-height: 1.75rem;
    padding: 0.2rem 0.65rem;
    flex-shrink: 0;
    border: 1px solid var(--oc-gold-border);
    border-radius: 0.35rem;
    background: transparent;
    color: var(--oc-gold);
    font-family: "Jost", sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.order-confirmation-copy-btn:hover,
.order-confirmation-copy-btn:focus-visible {
    background: color-mix(in srgb, var(--oc-gold) 12%, transparent);
    outline: none;
}

.order-confirmation-bank-qr-wrap {
    display: grid;
    justify-items: center;
    gap: 0.45rem;
    margin: 0;
}

.order-confirmation-bank-qr {
    display: block;
    width: min(100%, 11.75rem);
    margin: 0;
    padding: 0;
    border-radius: 0.45rem;
    background: #ffffff;
    overflow: hidden;
    line-height: 0;
}

.order-confirmation-bank-qr img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    aspect-ratio: 1;
    object-fit: cover;
}

.order-confirmation-bank-qr-label {
    margin: 0;
    color: var(--text-muted);
    font-family: "Jost", sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.order-confirmation-bank-reference {
    margin: 0;
    color: var(--text2);
    font-size: 0.88rem;
    line-height: 1.45;
}

.order-confirmation-bank-reference strong {
    color: var(--oc-gold);
    word-break: break-word;
}

.order-confirmation-whatsapp-banner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
    padding: 0.95rem 1rem;
    border: 1px solid color-mix(in srgb, #25d366 35%, var(--oc-gold-border));
    border-radius: 0.85rem;
    background: color-mix(in srgb, #25d366 6%, var(--oc-panel-bg));
}

.order-confirmation-whatsapp-icon {
    display: inline-flex;
    width: 1.5rem;
    height: 1.5rem;
    color: #25d366;
}

.order-confirmation-whatsapp-icon svg {
    width: 100%;
    height: 100%;
}

.order-confirmation-whatsapp-banner p {
    margin: 0;
    color: var(--text2);
    font-size: 0.88rem;
    line-height: 1.55;
}

.order-confirmation-whatsapp-banner strong {
    color: var(--text);
    white-space: nowrap;
}

.order-confirmation-page .order-detail-items {
    gap: 0.75rem;
}

.order-confirmation-page .order-detail-item--confirmation {
    grid-template-columns: 4.5rem minmax(0, 1fr) auto;
    padding: 0.85rem;
    border: 1px solid color-mix(in srgb, var(--oc-gold-border) 70%, var(--border));
    border-radius: 0.75rem;
    background: color-mix(in srgb, var(--oc-panel-bg) 88%, transparent);
}

.order-confirmation-page .order-detail-item--confirmation .order-detail-media {
    width: 4.5rem;
    height: 4.5rem;
}

.order-confirmation-page .order-detail-item--confirmation .order-detail-copy h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.2;
}

.order-confirmation-page .order-detail-item--confirmation .order-detail-sku {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}

.order-confirmation-page .order-detail-item--confirmation .order-detail-qty {
    color: var(--text2);
    font-size: 0.78rem;
}

.order-confirmation-page .order-detail-item--confirmation .order-detail-line-total {
    font-family: "Jost", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--oc-gold);
}

.order-confirmation-info-desktop {
    display: none;
}

.order-confirmation-info-mobile {
    display: grid;
    gap: 0.65rem;
}

@media (min-width: 960px) {
    .order-confirmation-info-desktop {
        display: block;
    }

    .order-confirmation-info-mobile {
        display: none;
    }
}

.order-confirmation-info-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.order-confirmation-info-panel .order-confirmation-panel-head {
    margin-bottom: 0.85rem;
}

.order-confirmation-delivery-list {
    display: grid;
    gap: 0.7rem;
    margin: 0;
}

.order-confirmation-delivery-item {
    display: grid;
    gap: 0.15rem;
}

.order-confirmation-delivery-item dt {
    margin: 0;
    color: var(--text-muted);
    font-family: "Jost", sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.order-confirmation-delivery-item dd {
    margin: 0;
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.45;
    word-break: break-word;
}

.order-confirmation-page .order-detail-totals {
    gap: 0.55rem;
}

.order-confirmation-page .commerce-summary-line {
    font-size: 0.88rem;
}

.order-confirmation-page .commerce-summary-total {
    padding-top: 0.65rem;
    margin-top: 0.15rem;
    border-top: 1px solid var(--oc-gold-border);
}

.order-confirmation-page .commerce-summary-total strong {
    color: var(--oc-gold);
    font-size: 1rem;
}

.order-confirmation-accordion {
    border: 1px solid var(--oc-gold-border);
    border-radius: 0.85rem;
    background: var(--oc-panel-bg);
    overflow: hidden;
}

.order-confirmation-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    list-style: none;
    cursor: pointer;
}

.order-confirmation-accordion-toggle::-webkit-details-marker {
    display: none;
}

.order-confirmation-accordion-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text);
}

.order-confirmation-accordion-chevron {
    display: inline-flex;
    width: 1rem;
    height: 1rem;
    color: var(--oc-gold);
    transition: transform var(--transition);
}

.order-confirmation-accordion-chevron svg {
    width: 100%;
    height: 100%;
}

.order-confirmation-accordion[open] .order-confirmation-accordion-chevron {
    transform: rotate(180deg);
}

.order-confirmation-accordion-body {
    padding: 0 1rem 1rem;
    border-top: 1px solid color-mix(in srgb, var(--oc-gold-border) 65%, transparent);
}

.order-confirmation-reassurance {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
    padding: 1rem 1.05rem;
    border: 1px solid var(--oc-gold-border);
    border-radius: 0.85rem;
    background: var(--oc-panel-bg);
    text-align: left;
}

.order-confirmation-reassurance-icon {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    color: var(--oc-gold);
    font-size: 1.15rem;
    line-height: 1;
}

.order-confirmation-reassurance-title {
    display: block;
    margin-bottom: 0.2rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
}

.order-confirmation-reassurance p {
    margin: 0;
    color: var(--text2);
    font-size: 0.88rem;
    line-height: 1.55;
}

.order-confirmation-actions {
    display: grid;
    gap: 0.65rem;
    padding-top: 0.15rem;
}

.order-confirmation-action-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    min-height: 3rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--oc-gold);
    border-radius: 999px;
    background: var(--oc-gold);
    color: #14110e;
    font-family: "Jost", sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.order-confirmation-action-primary:hover {
    background: color-mix(in srgb, var(--oc-gold) 88%, #fff 12%);
    border-color: color-mix(in srgb, var(--oc-gold) 88%, #fff 12%);
    color: #14110e;
}

.order-confirmation-action-icon {
    display: inline-flex;
    width: 0.95rem;
    height: 0.95rem;
}

.order-confirmation-action-icon svg {
    width: 100%;
    height: 100%;
}

.order-confirmation-action-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.order-confirmation-action-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--oc-gold-border);
    border-radius: 999px;
    background: transparent;
    color: var(--text);
    font-family: "Jost", sans-serif;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.order-confirmation-action-secondary:hover {
    border-color: var(--oc-gold);
    color: var(--oc-gold);
    background: color-mix(in srgb, var(--oc-gold) 8%, transparent);
}

@media (max-width: 959px) {
    .order-confirmation-hero-copy--details {
        text-align: left;
        justify-self: stretch;
    }

    .order-confirmation-status-cell {
        min-height: 3.6rem;
        padding: 0.75rem 0.85rem;
        gap: 0.55rem;
    }

    .order-confirmation-status-icon {
        width: 1.65rem;
        height: 1.65rem;
    }

    .order-confirmation-status-icon svg {
        width: 1rem;
        height: 1rem;
    }

    .order-confirmation-status-value {
        font-size: 0.88rem;
    }

    .order-confirmation-bank-qr {
        width: min(100%, 10.75rem);
    }

    .order-confirmation-bank-value-row {
        flex-wrap: wrap;
    }

    .order-confirmation-page .order-detail-item--confirmation {
        grid-template-columns: 4.25rem minmax(0, 1fr);
    }

    .order-confirmation-page .order-detail-item--confirmation .order-detail-line-total {
        grid-column: 2;
        justify-self: start;
        padding-top: 0.15rem;
    }

    .order-confirmation-action-row {
        grid-template-columns: 1fr;
    }

    .order-confirmation-whatsapp-banner strong {
        white-space: normal;
    }
}

@media (max-width: 640px) {
    .order-confirmation-icon {
        width: 3.25rem;
        height: 3.25rem;
        font-size: 1.25rem;
    }
}

.sale-countdown {
    color: var(--text);
}

.sale-countdown[hidden] {
    display: none !important;
}

.sale-countdown__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    flex-wrap: wrap;
}

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

.sale-countdown__eyebrow {
    margin: 0 0 0.35rem;
    font-family: "Cinzel", serif;
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
}

.sale-countdown__title {
    margin: 0;
    font-family: "Cinzel", serif;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
}

.sale-countdown__digits {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.sale-countdown__unit {
    min-width: 3.1rem;
    text-align: center;
}

.sale-countdown__value {
    display: block;
    font-family: "Cinzel", serif;
    font-size: 1.45rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    line-height: 1.1;
}

.sale-countdown__label {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.sale-countdown__sep {
    color: var(--gold);
    opacity: 0.45;
    font-size: 1.1rem;
    transform: translateY(-0.45rem);
}

.sale-countdown--hero {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.35rem 1.25rem;
}

.sale-countdown--banner {
    position: relative;
    margin: 0 0 1rem;
    padding: 0.85rem 2.75rem 0.85rem 1rem;
    border: 1px solid var(--border);
    background: var(--bg2);
}

.sale-countdown--banner .sale-countdown__inner {
    justify-content: space-between;
}

.sale-countdown--banner .sale-countdown__copy {
    text-align: left;
}

.sale-countdown--banner .sale-countdown__title {
    font-size: 0.92rem;
}

.sale-countdown--banner .sale-countdown__value {
    font-size: 1.15rem;
}

.sale-countdown__close {
    position: absolute;
    top: 0.45rem;
    right: 0.55rem;
    width: 2rem;
    height: 2rem;
    border: 0;
    background: transparent;
    color: var(--text-muted);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.sale-countdown__close:hover,
.sale-countdown__close:focus-visible {
    color: var(--gold);
}

.sale-countdown--inline {
    margin: 0.15rem 0 0.85rem;
    padding: 0.75rem 0 0;
    border-top: 1px solid var(--border);
}

[data-product-detail-page] .sale-countdown--inline {
    margin: 0.1rem 0 0;
    padding: 0.75rem 0.9rem 0.8rem;
    border: 1px solid rgba(201, 168, 76, 0.38);
    background: rgba(201, 168, 76, 0.07);
}

[data-product-detail-page] .sale-countdown--inline .sale-countdown__inner {
    justify-content: space-between;
    gap: 0.75rem 1rem;
}

[data-product-detail-page] .sale-countdown--inline .sale-countdown__title {
    font-size: 0.86rem;
    letter-spacing: 0.14em;
    font-weight: 500;
}

[data-product-detail-page] .sale-countdown--inline .sale-countdown__value {
    font-size: 1.28rem;
    font-weight: 500;
}

.sale-countdown--inline .sale-countdown__inner {
    justify-content: flex-start;
    gap: 1.15rem;
}

.sale-countdown--inline .sale-countdown__copy {
    text-align: left;
}

.sale-countdown--inline .sale-countdown__title {
    font-size: 0.82rem;
}

.sale-countdown--inline .sale-countdown__value {
    font-size: 1.05rem;
}

.sale-countdown--inline .sale-countdown__unit {
    min-width: 2.4rem;
}

.product-detail-media-stack {
    display: grid;
    min-width: 0;
}

.product-detail-media-stack:has(.sale-countdown--overlay) .product-detail-stage {
    border-bottom: 0;
}

.sale-countdown--overlay {
    margin: 0;
    padding: 0.5rem 0.75rem 0.55rem;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-top: 1px solid rgba(201, 168, 76, 0.28);
}

.sale-countdown--overlay .sale-countdown__inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.65rem 0.9rem;
    flex-wrap: wrap;
}

.sale-countdown--overlay .sale-countdown__copy {
    text-align: center;
}

.sale-countdown--overlay .sale-countdown__title {
    font-size: 0.92rem;
    letter-spacing: 0.12em;
    line-height: 1.2;
    color: var(--gold);
    font-weight: 500;
}

.sale-countdown--overlay .sale-countdown__value {
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 500;
}

.sale-countdown--overlay .sale-countdown__label {
    margin-top: 0.12rem;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
}

.sale-countdown--overlay .sale-countdown__unit {
    min-width: 2.1rem;
}

.sale-countdown--overlay .sale-countdown__sep {
    font-size: 1.15rem;
    transform: translateY(-0.35rem);
}

.sale-countdown--overlay .sale-countdown__digits {
    gap: 0.28rem;
}

@media (max-width: 720px) {
    .sale-countdown__inner {
        gap: 1rem;
    }

    .sale-countdown--hero .sale-countdown__value {
        font-size: 1.2rem;
    }

    .sale-countdown--banner .sale-countdown__inner {
        justify-content: center;
        padding-right: 0.5rem;
    }

    .sale-countdown--banner .sale-countdown__copy {
        text-align: center;
        width: 100%;
    }

    .sale-countdown--overlay {
        padding: 0.45rem 0.6rem 0.5rem;
    }

    .sale-countdown--overlay .sale-countdown__title {
        font-size: 0.82rem;
    }

    .sale-countdown--overlay .sale-countdown__value {
        font-size: 1.2rem;
    }

    .sale-countdown--overlay .sale-countdown__unit {
        min-width: 1.85rem;
    }

    .sale-countdown--overlay .sale-countdown__inner {
        gap: 0.4rem 0.65rem;
    }
}

body.checkout-mode .public-scroll-top {
    display: none !important;
}

@media (max-width: 980px) {
    body.checkout-mode .announcement,
    body.checkout-mode .nav-center,
    body.checkout-mode .public-nav-toggle,
    body.checkout-mode .public-nav-drawer,
    body.checkout-mode .public-nav-backdrop,
    body.checkout-mode .mobile-category-rail {
        display: none !important;
    }

    body.checkout-mode .footer {
        padding: 1.5rem 0 1.15rem;
    }

    body.checkout-mode .footer-copytext,
    body.checkout-mode .footer-social,
    body.checkout-mode .footer-founders,
    body.checkout-mode .footer-col:not(.footer-meta) {
        display: none;
    }

    body.checkout-mode .footer-main {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    body.checkout-mode .footer-nav {
        grid-template-columns: 1fr;
    }

    body.checkout-mode .footer-shell {
        gap: 1.15rem;
    }

    body.checkout-mode .nav-inner {
        min-height: 3.4rem;
    }

    .checkout-trust-page.commerce-trust-page .section-compact {
        padding-top: 0.7rem;
        padding-bottom: 1.35rem;
    }
}

.order-number-title {
    max-width: none !important;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.order-status-pair {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.status-badge {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.08rem;
    min-height: 2.65rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.03);
}

.status-badge-kicker {
    color: var(--text-muted);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.status-badge-value {
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.status-badge--pending {
    border-color: color-mix(in srgb, var(--gold) 28%, var(--border));
}

.status-badge--progress {
    border-color: color-mix(in srgb, var(--gold) 55%, var(--border));
    background: color-mix(in srgb, var(--gold) 8%, transparent);
}

.status-badge--success {
    border-color: color-mix(in srgb, #7d9a6a 45%, var(--border));
    background: color-mix(in srgb, #7d9a6a 8%, transparent);
}

.status-badge--danger {
    border-color: color-mix(in srgb, #b56a62 40%, var(--border));
    background: color-mix(in srgb, #b56a62 8%, transparent);
}

.status-badge--muted {
    opacity: 0.82;
}

.order-history-section {
    padding-bottom: 2.5rem;
}

.order-history-section .container,
.order-detail-container {
    width: min(100%, 72rem);
    margin-inline: auto;
}

.order-history-list {
    display: grid;
    gap: 0.7rem;
}

.order-history-head,
.order-history-card {
    display: grid;
    grid-template-columns: minmax(8.5rem, 1.4fr) minmax(7.25rem, 1fr) minmax(6.75rem, 0.9fr) minmax(7.25rem, 0.9fr) minmax(5.75rem, auto) minmax(7.25rem, auto);
    gap: 0.75rem 1rem;
    align-items: center;
}

.order-history-head {
    padding: 0 1.1rem 0.35rem;
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.order-history-card {
    min-width: 0;
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
}

.order-history-card .order-history-statuses,
.order-history-card .order-status-pair {
    display: contents;
}

.order-history-identity {
    min-width: 0;
}

.order-history-number {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.order-history-date {
    margin: 0.2rem 0 0;
    color: var(--text-muted);
    font-size: 0.86rem;
}

.order-history-method {
    margin: 0;
    color: var(--text);
    font-size: 0.92rem;
}

.order-history-total {
    margin: 0;
    color: var(--text);
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}

.order-history-total span {
    display: none;
}

.order-history-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding-inline: 1.1rem;
    text-align: center;
    white-space: nowrap;
}

.order-summary-group {
    margin-bottom: 1.15rem;
    padding-bottom: 1.05rem;
    border-bottom: 1px solid var(--border);
}

.order-summary-group:last-of-type {
    margin-bottom: 1.15rem;
}

.order-summary-group-title {
    margin: 0 0 0.7rem;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.order-payment-panel {
    margin: 0 0 1.15rem;
    padding: 1rem 1.05rem;
    border: 1px solid var(--border);
    background: var(--surface2);
}

.order-payment-panel--required {
    border-color: color-mix(in srgb, var(--gold) 45%, var(--border));
}

.order-payment-panel--confirmed {
    border-color: color-mix(in srgb, #7d9a6a 40%, var(--border));
    background: color-mix(in srgb, #7d9a6a 7%, var(--surface2));
}

.order-payment-panel-title,
.order-payment-panel .checkout-bank-transfer-title {
    margin: 0 0 0.45rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    font-weight: 500;
}

.order-payment-panel-copy {
    margin: 0 0 0.75rem;
    color: var(--text2);
    font-size: 0.92rem;
    line-height: 1.5;
}

.order-success-status {
    margin-top: 0.95rem;
}

.checkout-bank-qr img {
    display: block;
    width: min(100%, 12rem);
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
}

@media (max-width: 960px) {
    .order-history-head {
        display: none;
    }

    .order-history-card {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1.05rem 1rem;
    }

    .order-history-card .order-history-statuses,
    .order-history-card .order-status-pair {
        display: flex;
        flex-wrap: wrap;
        gap: 0.45rem;
    }

    .order-history-total {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 0.75rem;
        text-align: left;
        padding-top: 0.15rem;
        border-top: 1px solid var(--border);
    }

    .order-history-total span {
        display: inline;
        color: var(--text-muted);
        font-size: 0.68rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .order-history-action {
        width: 100%;
    }

    .order-detail-item {
        gap: 0.85rem;
        padding: 0.9rem 0.85rem;
    }

    .order-detail-copy h3 {
        overflow-wrap: anywhere;
    }
}

@media (max-width: 640px) {
    .order-history-number,
    .order-success-snapshot dd {
        overflow-wrap: anywhere;
    }

    .status-badge {
        min-width: 0;
        flex: 1 1 auto;
    }

    .order-detail-actions .btn-outline,
    .order-detail-actions .btn-primary,
    .order-history-action {
        min-height: 2.85rem;
    }
}

.bag-coupon {
    margin: 0.4rem 0 0.7rem;
}

.bag-coupon summary {
    cursor: pointer;
    color: var(--muted, #6b6258);
    font-size: 0.92rem;
}

.bag-coupon-form {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.45rem;
}

.bag-coupon-form input {
    flex: 1;
    min-width: 0;
}

.bag-coupon-outcome {
    margin: 0.35rem 0 0;
    font-size: 0.88rem;
}

.bag-offer-cues {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    margin: 0 0 0.75rem;
    padding: 0;
}

.bag-offer-cue {
    font-size: 0.9rem;
    color: color-mix(in srgb, #2e7d4f 80%, var(--text));
}

.bag-offer-cue p {
    margin: 0;
    line-height: 1.35;
}

.bag-offer-cue-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.bag-offer-cue-action {
    flex: 0 0 auto;
    margin: 0;
    min-height: 2.25rem;
    padding: 0.3rem 0.15rem;
    border: 0;
    background: none;
    color: inherit;
    cursor: pointer;
    font: inherit;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-decoration: underline;
    text-underline-offset: 0.18em;
    white-space: nowrap;
}

.bag-offer-cue-action span {
    margin-left: 0.3rem;
    text-decoration: none;
    opacity: 0.75;
}

.bag-offer-set-group {
    display: grid;
    gap: 0.45rem;
    margin: 0.85rem 0 0;
    padding: 0.7rem 0 0;
    border-top: 1px solid var(--border);
}

.bag-offer-set-group:first-of-type {
    margin-top: 0.35rem;
    padding-top: 0.15rem;
    border-top: 0;
}

.bag-offer-set-title {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text2, color-mix(in srgb, var(--text) 62%, transparent));
}

.bag-offer-more-sets {
    margin-top: 0.75rem;
}

.bag-offer-more-sets summary {
    cursor: pointer;
    font-size: 0.82rem;
}

.bag-offers-drawer {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.bag-offers-drawer[hidden] {
    display: none !important;
}

.bag-offers-overlay {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(20, 16, 12, 0.46);
    cursor: pointer;
}

.bag-offers-sheet {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(32rem, 100%);
    max-height: min(82vh, 40rem);
    overflow: hidden;
    border: 1px solid var(--border);
    border-bottom: 0;
    border-radius: 1rem 1rem 0 0;
    background: var(--surface, #fff);
    box-shadow: 0 -0.6rem 2rem rgba(20, 16, 12, 0.16);
}

.bag-offers-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem 0.55rem;
    border-bottom: 1px solid var(--border);
}

.bag-offers-sheet-header h2 {
    margin: 0;
    font-size: 1rem;
}

.bag-offers-close {
    margin: 0;
    min-height: 2.25rem;
    padding: 0.2rem 0.15rem;
    border: 0;
    background: none;
    color: var(--text2);
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
}

.bag-offers-sheet-body {
    overflow: auto;
    padding: 0.75rem 1rem 1.1rem;
    flex: 1;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}

.bag-offers-sheet-footer {
    padding: 0.65rem 1rem max(0.85rem, env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    background: var(--surface, #fff);
}

.bag-offers-sheet-footer .bag-checkout-cta {
    width: 100%;
}

.bag-offers-section + .bag-offers-section {
    margin-top: 1.25rem;
}

.bag-offers-section h3 {
    margin: 0;
    font-size: 0.88rem;
    color: color-mix(in srgb, #2e7d4f 80%, var(--text));
}

.bag-offer-products-drawer {
    margin-top: 0.2rem;
}

body.bag-offers-open {
    overflow: hidden;
}

body.bag-offers-open .bag-checkout-dock {
    visibility: hidden;
    pointer-events: none;
}

@media (min-width: 961px) {
    .bag-offers-drawer {
        inset: 0;
        align-items: stretch;
        justify-content: flex-end;
    }

    .bag-offers-sheet {
        height: 100%;
        max-height: none;
        border-radius: 0;
        border-bottom: 1px solid var(--border);
        border-left: 1px solid var(--border);
        border-top: 0;
        border-right: 0;
    }
}

@media (max-width: 960px) {
    .bag-checkout-dock {
        position: sticky;
        bottom: 0;
        z-index: 46;
        margin-top: 0;
        padding: 0.35rem 0 max(0.35rem, env(safe-area-inset-bottom));
        background: var(--surface, #fff);
        box-shadow: 0 -0.4rem 1.1rem rgba(20, 16, 12, 0.06);
    }
}

.bag-offer-products {
    display: grid;
    gap: 0.45rem;
    margin: 0.45rem 0 0;
}

.bag-offer-product {
    display: grid;
    grid-template-columns: 3.4rem 1fr auto;
    gap: 0.5rem;
    align-items: center;
}

.bag-offer-product-media {
    display: block;
    width: 3.4rem;
    height: 3.4rem;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 0.45rem;
    overflow: hidden;
    background: var(--surface2);
    cursor: zoom-in;
}

a.bag-offer-product-media {
    cursor: pointer;
}

.bag-offer-product-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bag-offer-product form {
    margin: 0;
}

.bag-offer-in-bag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted, color-mix(in srgb, var(--text) 62%, transparent));
    white-space: nowrap;
}

.bag-offer-product-copy {
    display: grid;
    gap: 0.1rem;
    min-width: 0;
}

.bag-offer-product-copy strong,
.bag-offer-product-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
}

.bag-offer-product-name:hover {
    text-decoration: underline;
}

.bag-offer-product-copy span {
    font-size: 0.78rem;
    color: var(--text-muted, color-mix(in srgb, var(--text) 70%, transparent));
}

.product-pair-with {
    margin: 0.85rem 0 0;
}

.product-pair-with-title {
    margin: 0 0 0.45rem;
    font-size: 0.88rem;
    font-weight: 600;
}

.product-complete-set {
    margin: 0.35rem 0 0;
}

.product-complete-set .product-offer-cues {
    margin: 0 0 0.3rem;
}

.product-complete-set .product-pair-with {
    margin: 0;
}

.product-complete-set .product-pair-with-title {
    margin: 0 0 0.45rem;
}

.bag-image-preview-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 1.25rem;
    background: rgba(12, 10, 8, 0.72);
}

.bag-image-preview-dialog {
    max-width: min(36rem, 100%);
    max-height: min(86vh, 100%);
}

.bag-image-preview-dialog img {
    display: block;
    max-width: 100%;
    max-height: min(82vh, 100%);
    object-fit: contain;
    border-radius: 0.6rem;
}

.bag-gift-panel {
    margin: 0.55rem 0 0.8rem;
    padding: 0.65rem 0.7rem;
    border: 1px solid var(--border);
    border-radius: 0.6rem;
}

.bag-gift-kicker {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2e7d4f;
}

.bag-gift-title {
    margin: 0.15rem 0 0.4rem;
    font-weight: 600;
}

.bag-gift-selected,
.bag-gift-choice button {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-align: left;
}

.bag-gift-selected img,
.bag-gift-choice img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 0.4rem;
}

.bag-gift-choices {
    display: grid;
    gap: 0.4rem;
}

.bag-gift-choice button {
    width: 100%;
    border: 1px solid var(--border);
    background: transparent;
    padding: 0.35rem;
    border-radius: 0.45rem;
}

.bag-gift-choice.is-selected button {
    border-color: #2e7d4f;
}

.bag-gift-choice.is-unavailable button {
    opacity: 0.5;
}

.product-offer-cues {
    list-style: none;
    margin: 0.35rem 0 0.7rem;
    padding: 0;
    color: color-mix(in srgb, var(--text) 82%, transparent);
    font-size: 0.92rem;
}

.checkout-coupon-status {
    margin: 0 0 0.5rem;
    font-size: 0.88rem;
}

.order-gift-flag {
    margin: 0.15rem 0 0;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2e7d4f;
}

html[data-theme="dark"] .bag-offer-cue,
html[data-theme="dark"] .bag-gift-kicker,
html[data-theme="dark"] .order-gift-flag,
html[data-theme="dark"] .bag-offers-section h3,
html[data-theme="dark"] .bag-page .commerce-item-offer-note {
    color: #8fd4a8;
}

html[data-theme="dark"] .bag-offers-sheet,
html[data-theme="dark"] .bag-offers-sheet-footer,
html[data-theme="dark"] .bag-checkout-dock {
    background: var(--surface);
}

html[data-theme="dark"] .bag-offers-overlay {
    background: rgba(0, 0, 0, 0.62);
}

html[data-theme="dark"] .bag-offers-sheet .bag-offer-product-copy strong,
html[data-theme="dark"] .bag-offers-sheet .bag-offer-product-name,
html[data-theme="dark"] .bag-offers-sheet .bag-offer-set-title {
    color: var(--text);
}

html[data-theme="dark"] .bag-offers-sheet .bag-offer-product-copy span,
html[data-theme="dark"] .bag-offers-sheet .bag-offer-in-bag {
    color: color-mix(in srgb, var(--text) 78%, transparent);
}

.offers-hub {
    max-width: 42rem;
    margin: 0 auto;
}

.offers-hub-jumps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0 0 1.15rem;
}

.offers-hub-chip {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.2rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.offers-hub-chip:hover {
    border-color: color-mix(in srgb, var(--text) 28%, var(--border));
}

.offers-hub-list {
    display: grid;
    gap: 1.15rem;
}

.offers-hub-card {
    display: grid;
    gap: 0.75rem;
    padding: 1.15rem 1.1rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: var(--surface);
    scroll-margin-top: 5.5rem;
}

.offers-hub-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    column-gap: 0.85rem;
    row-gap: 0.35rem;
    align-items: start;
}

.offers-hub-card h2 {
    margin: 0;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    font-family: "Cinzel", serif;
    font-size: 1.22rem;
    font-weight: 500;
    line-height: 1.25;
}

.offers-hub-guide {
    margin: 0;
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text-muted, color-mix(in srgb, var(--text) 72%, transparent));
}

.offers-hub-shop {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    box-sizing: border-box;
    min-height: 2.15rem;
    height: 2.15rem;
    padding: 0 0.95rem;
    white-space: nowrap;
}

.offers-hub-set {
    display: grid;
    gap: 0.55rem;
    padding: 0.75rem 0 0;
}

.offers-hub-set + .offers-hub-set,
.offers-hub-more-sets {
    margin-top: 0.55rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.offers-hub-set-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.offers-hub-more-sets summary {
    cursor: pointer;
    font-size: 0.82rem;
}

.offers-hub-tiles {
    display: flex;
    gap: 0.7rem;
    margin: 0;
    padding-bottom: 0.45rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: color-mix(in srgb, var(--gold-dark, #b08a4a) 65%, transparent) transparent;
}

.offers-hub-tiles::-webkit-scrollbar {
    width: 2px !important;
    height: 2px !important;
}

.offers-hub-tiles::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

.offers-hub-tiles::-webkit-scrollbar-track {
    background: transparent;
}

.offers-hub-tiles::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--gold-dark, #b08a4a) 75%, transparent);
    border: none;
    border-radius: 999px;
}

.offers-hub-tiles > .bag-offer-product {
    flex: 0 0 min(17rem, 84%);
    scroll-snap-align: start;
    align-items: start;
    grid-template-columns: 4.5rem 1fr auto;
    gap: 0.65rem;
    padding: 0.15rem 0;
}

.offers-hub .bag-offer-product-media {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 0.55rem;
}

.offers-hub .bag-offer-product-name {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 0.86rem;
}

.offers-hub-hint {
    margin: 1.2rem 0 0;
    font-size: 0.85rem;
    color: var(--text-muted, color-mix(in srgb, var(--text) 68%, transparent));
}

@media (max-width: 1023px) {
    .offers-hub-tiles {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .offers-hub-tiles::-webkit-scrollbar {
        display: none;
        width: 0 !important;
        height: 0 !important;
    }
}

@media (min-width: 1024px) {
    .offers-hub-tiles {
        display: grid;
        grid-template-columns: 1fr 1fr;
        overflow: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
        scrollbar-width: none;
    }

    .offers-hub-tiles > .bag-offer-product {
        flex: none;
        min-width: 0;
    }
}

html[data-theme="dark"] .offers-hub-card,
html[data-theme="dark"] .offers-hub-chip {
    background: var(--surface);
}

html[data-theme="dark"] .offers-hub-card h2,
html[data-theme="dark"] .offers-hub-set-title,
html[data-theme="dark"] .offers-hub .bag-offer-product-name,
html[data-theme="dark"] .offers-hub-card .bag-offer-product-copy strong {
    color: var(--text);
}
