:root {
    --bg: #f6efe5;
    --bg-soft: #fffaf4;
    --surface: rgba(255, 252, 247, 0.9);
    --surface-strong: rgba(255, 255, 255, 0.95);
    --ink: #1f1b18;
    --muted: #675c52;
    --line: rgba(122, 91, 46, 0.14);
    --gold: #a47b3c;
    --gold-deep: #8c652a;
    --gold-soft: #edd8b2;
    --success: #2a6a4c;
    --danger: #a43d32;
    --shadow: 0 20px 50px rgba(85, 59, 24, 0.12);
    --shadow-soft: 0 14px 28px rgba(85, 59, 24, 0.08);
    --radius-xl: 34px;
    --radius-lg: 28px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --container: min(1180px, calc(100% - 24px));
}

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

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Optima", "Candara", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.96), transparent 22%),
        radial-gradient(circle at 92% 8%, rgba(233, 212, 176, 0.42), transparent 21%),
        radial-gradient(circle at 50% 100%, rgba(255, 244, 226, 0.58), transparent 28%),
        linear-gradient(180deg, #fffdf9 0%, var(--bg) 46%, #f2eadf 100%);
}

body.is-locked {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(31, 27, 24, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(164, 123, 60, 0.48);
    box-shadow: 0 0 0 4px rgba(164, 123, 60, 0.12);
}

textarea {
    resize: vertical;
}

.page-shell {
    position: relative;
    overflow-x: clip;
    isolation: isolate;
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(16px);
    z-index: -1;
    pointer-events: none;
}

.page-shell::before {
    width: 420px;
    height: 420px;
    top: 180px;
    left: -180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
}

.page-shell::after {
    width: 500px;
    height: 500px;
    top: 720px;
    right: -220px;
    background: radial-gradient(circle, rgba(233, 212, 176, 0.28), rgba(233, 212, 176, 0));
}

.container {
    width: var(--container);
    max-width: 100%;
    margin: 0 auto;
}

.section {
    position: relative;
    padding: 36px 0;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.accent-line {
    width: 56px;
    height: 2px;
    margin: 26px 0;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.page-title,
.hero-copy h1,
.section-heading h2,
.story-copy h2,
.site-footer h2,
.auth-modal-copy h2 {
    margin: 0;
    font-family: "Georgia", "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.03;
    overflow-wrap: anywhere;
}

.page-title {
    font-size: clamp(2.6rem, 5vw, 5rem);
    text-transform: uppercase;
    background: none;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.hero-copy h1 {
    font-size: clamp(1.8rem, 2.6vw, 2.6rem);
    text-transform: uppercase;
    background: none;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.section-heading h2,
.story-copy h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    text-transform: uppercase;
    background: none;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.section-subtitle,
.page-lead,
.hero-copy .lead,
.story-copy p,
.benefit-card p,
.product-subtitle,
.product-tagline,
.product-description,
.site-footer p,
.drawer-note p,
.auth-modal-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    background: none;
}

.promo-strip {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(164, 123, 60, 0.08);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.52), rgba(255, 246, 233, 0.72));
}

.promo-strip-inner {
    overflow: hidden;
    padding: 10px 0;
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.promo-strip-marquee {
    display: flex;
    width: max-content;
    min-width: 100%;
    will-change: transform;
}

.promo-strip-segment {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 34px;
    padding-right: 34px;
}

.promo-strip-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    white-space: nowrap;
}

.promo-strip-item + .promo-strip-item::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 34px;
    border-radius: 999px;
    background: rgba(164, 123, 60, 0.34);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(251, 247, 241, 0.84);
    border-bottom: 1px solid rgba(164, 123, 60, 0.08);
    box-shadow: 0 8px 26px rgba(115, 87, 48, 0.05);
    z-index: -1;
}

.header-bar {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 10px 0 8px;
}

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

.brand-logo img {
    width: min(90px, 34vw);
    object-fit: contain;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 20px;
    justify-self: center;
    min-width: 0;
}

.desktop-nav a {
    color: var(--muted);
    font-weight: 600;
    transition: color 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
    color: var(--ink);
    transform: translateY(-1px);
    outline: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
    min-width: 0;
}

.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(84, 59, 26, 0.06);
    transition: transform 180ms ease, background 180ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
    transform: translateY(-1px);
    background: #fff;
    outline: none;
}

.icon-button svg,
.account-pill-icon svg,
.wishlist-icon svg {
    width: 22px;
    height: 22px;
}

.account-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 238, 0.76));
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(84, 59, 26, 0.05);
}

.account-pill span:last-child {
    white-space: nowrap;
    font-size: 0.95rem;
    font-weight: 600;
}

.account-pill-icon {
    display: inline-flex;
    color: var(--ink);
}

.cart-button {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 6px;
    right: 5px;
    min-width: 20px;
    padding: 2px 5px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 0.72rem;
    line-height: 1.1;
    text-align: center;
}

.drawer-backdrop,
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 21;
    background: rgba(22, 16, 11, 0.34);
}

.drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 22;
    width: min(380px, calc(100vw - 24px));
    padding: 24px 20px;
    background: rgba(255, 251, 247, 0.98);
    box-shadow: var(--shadow);
    overflow-y: auto;
    transition: transform 220ms ease;
}

.menu-drawer {
    left: 0;
    transform: translateX(-103%);
    border-top-right-radius: 26px;
    border-bottom-right-radius: 26px;
}

.cart-drawer {
    right: 0;
    transform: translateX(103%);
    border-top-left-radius: 26px;
    border-bottom-left-radius: 26px;
}

.drawer.is-open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.drawer-header h2 {
    margin: 0;
    font-family: "Georgia", "Times New Roman", serif;
    font-weight: 500;
    font-size: 1.75rem;
}

.drawer-label {
    margin: 0 0 8px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.drawer-nav {
    display: grid;
    gap: 10px;
}

.drawer-nav a,
.drawer-cta,
.drawer-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 16px;
    border-radius: 18px;
    font-weight: 600;
    text-align: center;
}

.drawer-nav a {
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.7);
    color: var(--muted);
}

.drawer-note {
    margin-top: 22px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 245, 231, 0.84));
}

.drawer-stack {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.drawer-cta {
    background: var(--ink);
    color: #f3dfb4;
    cursor: pointer;
}

.drawer-ghost {
    background: rgba(164, 123, 60, 0.09);
    color: var(--ink);
    cursor: pointer;
}

.cart-guest,
.cart-empty,
.status-box,
.empty-state,
.catalog-stat-card,
.admin-panel {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
}

.cart-guest p,
.cart-empty p,
.empty-state p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.7;
}

.cart-items {
    display: grid;
    gap: 14px;
    margin: 14px 0 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(164, 123, 60, 0.12);
}

.cart-item h3,
.admin-product-item h3,
.footer-column h3 {
    margin: 0 0 6px;
}

.cart-item p,
.cart-summary-row span,
.admin-product-item p,
.footer-note {
    margin: 0;
    color: var(--muted);
}

.cart-price {
    color: var(--gold-deep);
    font-weight: 700;
}

.cart-qty {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.cart-qty button {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(31, 27, 24, 0.12);
    cursor: pointer;
}

.cart-summary {
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.cart-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.checkout-button[aria-disabled="true"] {
    pointer-events: none;
    opacity: 0.5;
}

.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 24;
    display: grid;
    place-items: center;
    padding: 18px;
}

.auth-modal-panel {
    position: relative;
    width: min(540px, 100%);
    padding: 26px;
    padding-right: 86px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 237, 220, 0.94)),
        var(--surface-strong);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
    isolation: isolate;
}

.auth-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    pointer-events: auto;
    box-shadow: 0 10px 24px rgba(85, 59, 24, 0.12);
}

.auth-modal-copy h2 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    margin-bottom: 10px;
}

.auth-tabs {
    display: flex;
    gap: 10px;
    margin: 22px 0 18px;
}

.auth-tab {
    flex: 1;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 16px;
    background: rgba(164, 123, 60, 0.08);
    color: var(--ink);
    cursor: pointer;
    font-weight: 700;
}

.auth-tab.is-active {
    background: var(--ink);
    color: #f3dfb4;
}

.auth-alert {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(164, 61, 50, 0.12);
    color: var(--danger);
}

.auth-alert.is-success {
    background: rgba(42, 106, 76, 0.12);
    color: var(--success);
}

.auth-form {
    display: none;
    gap: 14px;
}

.auth-form.is-active {
    display: grid;
}

.field {
    display: grid;
    gap: 8px;
}

.field span,
.checkbox-field span {
    color: var(--ink);
    font-weight: 600;
}

.field-inline {
    min-width: 0;
}

.checkbox-field {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-top: 8px;
}

.checkbox-field input {
    width: 18px;
    height: 18px;
}

/* ── HERO ── */
.hero {
    padding-top: 10px;
    padding-bottom: 10px;
}

.hero-slider {
    position: relative;
    min-height: clamp(260px, 30vw, 360px);
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(180deg, rgba(239, 227, 210, 0.94), rgba(221, 203, 177, 0.78));
    box-shadow: var(--shadow-soft);
}

.hero-slide {
    position: relative;
    display: none;
    min-height: clamp(260px, 30vw, 360px);
    background-image: var(--hero-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--hero-text-color, #fff);
}

.hero-slide.is-active {
    display: block;
    animation: heroFade 620ms ease;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(20, 14, 10, calc(var(--hero-overlay-opacity, 0.4) + 0.22)) 0%,
            rgba(20, 14, 10, var(--hero-overlay-opacity, 0.4)) 42%,
            rgba(20, 14, 10, calc(var(--hero-overlay-opacity, 0.4) * 0.58)) 100%
        );
    z-index: 1;
}

.hero-media,
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    object-fit: cover;
}

.hero-grid,
.catalog-hero-grid,
.product-detail-grid,
.story-card,
.admin-hero-grid {
    display: grid;
    gap: 28px;
    align-items: center;
}

.hero-grid {
    position: relative;
    z-index: 2;
    gap: 36px;
    min-height: clamp(220px, 26vw, 300px);
    align-content: center;
    padding: 8px 0 14px;
}

.hero-copy {
    max-width: min(470px, 46%);
}

.hero-copy-shell {
    position: relative;
    padding: clamp(24px, 4vw, 34px);
    border-radius: 32px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hero-copy-shell::after {
    display: none;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    margin-bottom: 12px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: inherit;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero-kicker-icon {
    display: inline-flex;
    width: 16px;
    height: 16px;
}

.hero-kicker-icon svg {
    width: 16px;
    height: 16px;
}

.hero-copy,
.hero-visual,
.story-copy,
.story-image-wrap,
.product-detail-copy,
.product-detail-image,
.footer-grid,
.product-card,
.product-card-link,
.admin-panel {
    min-width: 0;
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: inherit;
    font-size: 0.84rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.hero .eyebrow,
.hero-copy h1,
.hero-copy .lead,
.hero-kicker,
.hero-points span {
    color: inherit;
}

.hero-copy .accent-line {
    background: linear-gradient(90deg, currentColor, transparent);
    opacity: 0.9;
}

.hero-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.primary-button,
.secondary-button,
.checkout-button,
.product-button,
.footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    max-width: 100%;
    padding: 0 22px;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button,
.checkout-button,
.product-button {
    background: var(--ink);
    color: #f5e3bc;
    box-shadow: var(--shadow-soft);
}

.checkout-button-secondary {
    background: rgba(164, 123, 60, 0.12);
    color: var(--ink);
    box-shadow: none;
}

.secondary-button,
.footer-button {
    background: rgba(164, 123, 60, 0.1);
    color: var(--ink);
}

.primary-button:hover,
.secondary-button:hover,
.product-button:hover,
.checkout-button:hover,
.footer-button:hover,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.product-button:focus-visible,
.checkout-button:focus-visible,
.footer-button:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.primary-button svg,
.story-link svg {
    width: 18px;
    height: 18px;
}

.auth-inline-button {
    width: 100%;
}

.section-heading {
    margin-bottom: 24px;
    text-align: center;
}

.section-heading-split {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    text-align: left;
}

.section-heading.compact {
    margin-bottom: 18px;
}

.collection-heading {
    margin-bottom: 12px;
}

.collection-toolbar {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.collection-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f3d77c, #d8ae2a);
    color: #231b12;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 12px 24px rgba(170, 128, 24, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.collection-view-all:hover,
.collection-view-all:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(170, 128, 24, 0.28);
    outline: none;
}

.section-link,
.story-link,
.text-link,
.product-secondary-link,
.breadcrumb-link,
.admin-product-item a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-deep);
    font-weight: 700;
}

.section-heading-side {
    display: grid;
    gap: 10px;
    justify-items: end;
}

.section-count {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(164, 123, 60, 0.09);
    color: var(--gold-deep);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-metrics,
.admin-stats {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.hero-metrics article,
.admin-stats article {
    position: relative;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 247, 235, 0.7));
    border: 1px solid rgba(164, 123, 60, 0.1);
    overflow: hidden;
}

.hero-metrics article::before,
.admin-stats article::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--gold), rgba(164, 123, 60, 0));
}

.hero-metrics strong,
.admin-stats strong,
.catalog-stat-card strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.hero-metrics span,
.admin-stats span,
.catalog-stat-card span {
    color: var(--muted);
    line-height: 1.6;
}

.hero-visual {
    position: relative;
    min-height: min(72vw, 620px);
    display: grid;
    place-items: center;
    padding: 8px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.74), transparent 34%),
        linear-gradient(180deg, rgba(255, 252, 247, 0.66), rgba(245, 231, 210, 0.62));
    border: 1px solid rgba(255, 255, 255, 0.78);
    overflow: hidden;
}

.hero-scene-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: min(72vw, 620px);
    border-radius: 28px;
    overflow: hidden;
    background-image: var(--hero-scene-image);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 68% center;
    box-shadow: 0 26px 50px rgba(122, 88, 40, 0.16);
}

.hero-scene-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at left center, rgba(255, 255, 255, 0.06), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(241, 222, 194, 0.08));
    pointer-events: none;
}

.collection-shell,
.catalog-shell {
    padding: clamp(22px, 3vw, 30px);
    /* border-radius: 32px; */
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 239, 0.74)),
        var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-soft);
}

.catalog-copy {
    max-width: 640px;
}

.product-carousel {
    overflow: hidden;
}

.product-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, calc(100% - 8px));
    gap: 18px;
    overflow-x: auto;
    padding: 8px 4px 6px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.product-track::-webkit-scrollbar {
    display: none;
}

.products-grid {
    display: grid;
    gap: 18px;
    align-items: stretch;
}

.product-track > div,
.products-grid > .product-card {
    min-width: 0;
}

.product-track > div {
    display: flex;
    scroll-snap-align: center;
}

.product-track > div > .product-card {
    width: 100%;
    flex: 1 0 auto;
}

.product-card {
    position: relative;
    height: 100%;
    padding: 18px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 242, 0.82)),
        rgba(255, 251, 247, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.collection-section .product-card {
    padding: 0 0 18px;
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff, #faf5ed);
    border: 1px solid rgba(120, 95, 59, 0.1);
    box-shadow: 0 18px 38px rgba(86, 63, 31, 0.08);
}

.product-card::after {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 20px;
    border: 1px solid rgba(164, 123, 60, 0.07);
    pointer-events: none;
}

.product-sheen {
    position: absolute;
    inset: -35% auto auto -30%;
    width: 64%;
    height: 220px;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0));
    transform: rotate(16deg);
    pointer-events: none;
}

.product-card-link {
    position: relative;
    display: block;
    z-index: 1;
}

.collection-section .product-card-link {
    display: grid;
    gap: 0;
}

.product-card-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.collection-section .product-card-head {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    z-index: 2;
    pointer-events: none;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(164, 123, 60, 0.1);
    color: var(--gold-deep);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.collection-section .product-badge {
    background: rgba(255, 255, 255, 0.92);
    color: var(--gold-deep);
    box-shadow: 0 8px 18px rgba(71, 49, 19, 0.08);
}

.stock-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(31, 27, 24, 0.06);
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.collection-section .stock-pill {
    display: none;
}

.wishlist-button {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink);
    cursor: pointer;
    z-index: 1;
    transition: transform 180ms ease, background 180ms ease;
}

.collection-section .wishlist-button {
    top: 18px;
    right: 18px;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.96);
    color: #f15d57;
    box-shadow: 0 16px 28px rgba(71, 49, 19, 0.14);
    z-index: 3;
}

.collection-section .wishlist-button svg {
    width: 24px;
    height: 24px;
}

.quick-bag-button {
    position: absolute;
    right: 18px;
    top: 214px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f0cf3c, #d3a600);
    color: #231b12;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 16px 28px rgba(165, 123, 13, 0.24);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.quick-bag-button svg {
    width: 24px;
    height: 24px;
}

.quick-bag-button:hover,
.quick-bag-button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(165, 123, 13, 0.3);
    outline: none;
}

.wishlist-button:hover,
.wishlist-button:focus-visible {
    transform: translateY(-1px);
    background: #fff;
    outline: none;
}

.wishlist-button.is-active,
.wishlist-action.is-active {
    color: #b85b4e;
}

.collection-section .wishlist-button.is-active {
    background: #fff;
    color: #ff5b55;
}

.wishlist-button svg path,
.wishlist-action svg path {
    transition: fill 180ms ease;
}

.wishlist-button.is-active svg path,
.wishlist-action.is-active svg path {
    fill: currentColor;
}

.product-image-frame {
    display: grid;
    place-items: center;
    min-height: 250px;
    margin: 14px 0;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.2)),
        linear-gradient(180deg, rgba(251, 243, 231, 0.9), rgba(255, 255, 255, 0.96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.collection-section .product-image-frame {
    min-height: 278px;
    margin: 0;
    border-radius: 26px 26px 20px 20px;
    align-items: end;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.04)),
        linear-gradient(180deg, rgba(86, 63, 31, 0.1), rgba(255, 255, 255, 0.96));
}

.product-image-frame img {
    width: auto;
    max-height: 224px;
    transition: transform 220ms ease;
}

.collection-section .product-image-frame img {
    width: auto;
    max-width: 88%;
    max-height: 244px;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
}

.product-copy {
    display: grid;
    gap: 8px;
}

.collection-section .product-copy {
    gap: 10px;
    padding: 18px 22px 0;
}

.product-copy h3 {
    margin: 0;
    font-size: 1.42rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.product-subtitle {
    font-size: 0.95rem;
}

.collection-section .product-copy h3 {
    font-size: 1.18rem;
    line-height: 1.18;
}

.product-tagline {
    color: var(--ink);
    font-weight: 600;
}

.collection-section .product-subtitle {
    color: #8d857c;
}

.collection-section .product-tagline {
    font-size: 1rem;
    line-height: 1.45;
}

.collection-section .product-description,
.collection-section .mini-notes {
    display: none;
}

.product-description {
    font-size: 0.95rem;
}

.mini-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 4px;
}

.mini-notes span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(164, 123, 60, 0.08);
    color: var(--gold-deep);
    font-size: 0.76rem;
    font-weight: 700;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    color: var(--gold-deep);
    font-weight: 700;
    padding-top: 4px;
}

.collection-section .product-meta {
    justify-content: flex-start;
    gap: 10px;
    padding-top: 0;
    font-size: 1.22rem;
}

.collection-section .product-meta span {
    color: #231b12;
}

.collection-section .product-meta small {
    display: none;
}

.product-meta small {
    color: var(--muted);
    font-weight: 600;
}

.product-actions-row {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    position: relative;
    z-index: 1;
}

.collection-section .product-actions-row {
    padding: 0 22px;
    margin-top: 14px;
}

.collection-section .product-secondary-link {
    display: none;
}

.collection-section .product-button {
    min-height: 52px;
    border-radius: 18px;
    background: #231b12;
    color: #f6e7bd;
}

.product-secondary-link {
    justify-content: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(164, 123, 60, 0.08);
    border: 1px solid rgba(164, 123, 60, 0.06);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(31, 27, 24, 0.18);
    cursor: pointer;
}

.dot.is-active {
    background: var(--ink);
    border-color: var(--ink);
}

.benefits-grid {
    display: grid;
    gap: 1px;
    padding: 10px;
    border-radius: var(--radius-xl);
    background: linear-gradient(90deg, rgba(164, 123, 60, 0.08), rgba(164, 123, 60, 0.04));
}

.benefit-card {
    padding: 24px 18px;
    background: rgba(253, 249, 244, 0.84);
    text-align: center;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
}

.benefit-icon svg {
    width: 48px;
    height: 48px;
}

.benefit-card h3 {
    margin: 0 0 8px;
    font-size: 1.06rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── CHECKOUT ── */
.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
    gap: 28px;
    align-items: start;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 18px;
}

.checkout-form textarea {
    resize: vertical;
    font: inherit;
}

.checkout-submit {
    margin-top: 8px;
}

.checkout-alert {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(200, 60, 60, 0.1);
    color: #a83232;
    font-size: 0.9rem;
}

.checkout-summary-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 18px 0;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--muted);
}

.checkout-summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 1.05rem;
}

.order-success-panel {
    max-width: 560px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 48px);
    text-align: center;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
}

.order-success-panel h1 {
    margin: 8px 0 14px;
    font-family: "Georgia", "Times New Roman", serif;
}

.order-success-total {
    margin-bottom: 20px;
}

@media (max-width: 860px) {
    .checkout-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ── OFFER BANNER ── */
.offer-banner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 220px;
    padding: clamp(24px, 4vw, 40px);
    border-radius: var(--radius-xl);
    background: linear-gradient(120deg, #1c1712, #3a2c1c);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.offer-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 12, 9, 0.72), rgba(15, 12, 9, 0.32));
}

.offer-banner-copy {
    position: relative;
    z-index: 1;
    max-width: 520px;
    color: #fff;
}

.offer-banner-copy .eyebrow {
    color: var(--gold);
}

.offer-banner-copy h2 {
    margin: 6px 0 10px;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    text-transform: uppercase;
    color: #fff;
}

.offer-banner-copy p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

.offer-banner-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.offer-code {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.offer-code strong {
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* ── TESTIMONIALS ── */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.testimonial-card {
    padding: 24px;
    border-radius: var(--radius-xl);
    background: rgba(253, 249, 244, 0.9);
    box-shadow: var(--shadow-soft);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
    color: rgba(164, 123, 60, 0.3);
    font-size: 1.05rem;
}

.testimonial-stars .is-filled {
    color: var(--gold);
}

.testimonial-quote {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--muted);
}

/* ── STORY SECTION — bg removed, text white ── */
.story-section {
    position: relative;
}

.story-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: 0;
    border-radius: inherit;
    pointer-events: none;
}

.story-section .container {
    position: relative;
    z-index: 1;
}

.story-card {
    padding: clamp(24px, 4vw, 36px);
    border-radius: var(--radius-xl);
    background: none;
    box-shadow: none;
    border: none;
}

.story-copy h2 {
    color: #fff;
    background: none;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.story-copy .eyebrow {
    color: var(--gold-soft);
}

.story-copy p {
    color: rgba(255, 255, 255, 0.82);
    background: none;
}

.story-copy .accent-line {
    background: linear-gradient(90deg, #fff, transparent);
}

.story-copy .story-link {
    color: var(--gold-soft);
    background: none;
}

.story-image-wrap {
    min-height: 280px;
    overflow: hidden;
    border-radius: 28px;
    background-image:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.26), transparent 42%),
        linear-gradient(180deg, rgba(247, 238, 223, 0.08), rgba(234, 214, 184, 0.12)),
        var(--story-card-image);
    background-repeat: no-repeat;
    background-size: auto, auto, cover;
    background-position: top left, center, center;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-hero-grid,
.admin-hero-grid {
    padding: 22px 0 6px;
}

.catalog-stat-card,
.admin-panel {
    box-shadow: var(--shadow-soft);
}

.catalog-stat-card,
.empty-state {
    text-align: center;
}

.catalog-stat-card small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.filters-bar,
.admin-form-grid {
    display: grid;
    gap: 16px;
}

.filters-bar {
    margin-bottom: 24px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
}

.product-detail-grid {
    align-items: start;
    gap: 32px;
}

.product-detail-image {
    position: sticky;
    top: 112px;
    padding: 24px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.2)),
        linear-gradient(180deg, rgba(251, 243, 231, 0.9), rgba(255, 255, 255, 0.96));
    box-shadow: var(--shadow-soft);
}

.product-detail-image img {
    min-height: 340px;
    max-height: 560px;
    object-fit: contain;
}

.detail-subtitle,
.detail-description {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.75;
}

.detail-meta {
    display: grid;
    gap: 14px;
    margin: 22px 0;
}

.detail-panel-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.detail-panel {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(164, 123, 60, 0.1);
}

.detail-panel strong {
    display: block;
    line-height: 1.6;
}

.detail-notes-block {
    margin-bottom: 10px;
}

.detail-label {
    display: block;
    margin-bottom: 6px;
    color: var(--gold-deep);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.note-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.note-chips span {
    display: inline-flex;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    align-items: center;
    background: rgba(164, 123, 60, 0.1);
    color: var(--gold-deep);
    font-weight: 700;
}

.wishlist-action .wishlist-icon {
    display: inline-flex;
}

.admin-layout {
    display: grid;
    gap: 20px;
}

.admin-panel {
    padding: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 248, 239, 0.74)),
        var(--surface);
}

.admin-copy {
    max-width: 620px;
}

.field-wide {
    grid-column: 1 / -1;
}

.admin-form {
    display: grid;
    gap: 20px;
}

.status-box {
    margin-bottom: 18px;
}

.status-box p {
    margin: 0;
}

.status-box.success {
    color: var(--success);
    background: rgba(42, 106, 76, 0.08);
    border-color: rgba(42, 106, 76, 0.18);
}

.status-box.error {
    color: var(--danger);
    background: rgba(164, 61, 50, 0.08);
    border-color: rgba(164, 61, 50, 0.18);
    display: grid;
    gap: 8px;
}

.admin-products {
    display: grid;
    gap: 14px;
}

.admin-product-item {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(164, 123, 60, 0.1);
}

.admin-product-item img {
    width: 100%;
    height: 86px;
    object-fit: cover;
    border-radius: 14px;
}

.site-footer {
    padding: 24px 0 42px;
}

.footer-grid {
    display: grid;
    gap: 18px;
    padding: 26px;
    border-top: 1px solid var(--line);
    border-radius: 32px 32px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(249, 240, 226, 0.8));
    align-items: start;
}

.site-footer h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
}

.footer-brand {
    max-width: 500px;
}

.footer-column {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-column a,
.footer-button {
    width: fit-content;
}

.footer-column a {
    color: var(--muted);
}

.footer-button {
    padding: 0 16px;
}

.footer-note {
    line-height: 1.7;
}

@media (max-width: 679px) {
    :root {
        --container: min(1180px, calc(100% - 20px));
    }

    .section {
        padding: 28px 0;
    }

    .promo-strip {
        display: none;
    }

    .header-bar {
        grid-template-columns: 44px 1fr 44px;
        gap: 8px;
        padding: 8px 0 6px;
    }

    .header-actions {
        justify-self: end;
    }

    .icon-button,
    .account-pill {
        min-height: 44px;
        height: 44px;
    }

    .header-actions .account-pill {
        display: none;
    }

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

    .brand-logo img {
        width: min(58px, 28vw);
    }

    .hero-slider,
    .hero-slide {
        min-height: 284px;
        border-radius: 0;
    }x

    .hero-slide {
        background-image: var(--hero-mobile-bg-image, var(--hero-bg-image));
        background-position: center right;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        align-items: start;
        min-height: 262px;
        align-content: start;
        padding: 6px 10px 10px;
        border-radius: 0;
        background: none;
        border: 0;
        box-shadow: none;
    }

    .hero-copy {
        max-width: min(212px, 58%);
    }

    .hero-visual {
        min-height: 330px;
        padding: 0;
        background: none;
        border: 0;
        border-radius: 0;
        overflow: visible;
    }

    .hero-actions > * {
        width: auto;
    }

    .detail-actions > * {
        width: 100%;
    }

    .story-card,
    .footer-grid,
    .auth-modal-panel,
    .product-card,
    .admin-panel,
    .hero-copy-shell,
    .collection-shell,
    .catalog-shell {
        padding: 20px;
        border-radius: 26px;
    }

    .product-detail-image {
        position: relative;
        top: auto;
    }

    .hero-copy-shell {
        padding: 0;
        background: none;
        border: 0;
        box-shadow: none;
        border-radius: 0;
    }

    .hero-copy-shell::after,
    .hero-kicker,
    .hero-points,
    .hero-metrics,
    .section-heading-side,
    .product-secondary-link,
    .product-description,
    .mini-notes,
    .stock-pill {
        display: none;
    }

    .hero-copy h1 {
        max-width: 7ch;
        font-size: clamp(1.7rem, 7.4vw, 2.35rem);
        line-height: 0.98;
        margin-top: 4px;
    }

    .hero-copy .lead {
        max-width: 176px;
        font-size: 0.78rem;
        line-height: 1.55;
    }

    .hero-copy .eyebrow {
        margin-bottom: 8px;
        font-size: 0.67rem;
        letter-spacing: 0.18em;
    }

    .hero-copy .accent-line {
        width: 42px;
        margin: 18px 0;
    }

    .hero-actions {
        margin-top: 12px;
    }

    .hero-actions .secondary-button {
        display: none;
    }

    .hero-actions .primary-button {
        min-height: 40px;
        padding: 0 14px;
        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }

    .hero-scene-card {
        min-height: 330px;
        border-radius: 0;
        box-shadow: none;
    }

    .collection-shell {
        padding: 20px 0 0;
        background: none;
        border: 0;
        box-shadow: none;
    }

    .section-heading,
    .section-heading-split {
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .collection-shell .section-heading {
        padding-inline: 14px;
        margin-bottom: 12px;
    }

    .section-heading h2 {
        font-size: clamp(1.5rem, 6.2vw, 1.95rem);
        line-height: 1.08;
    }

    .collection-shell .section-subtitle {
        display: none;
    }

    .product-track {
        display: flex !important;
        flex-wrap: nowrap;
        gap: 14px;
        overflow-x: auto;
        padding: 8px 14px 6px;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 14px;
        -webkit-overflow-scrolling: touch;
    }

    .product-track > div {
        flex: 0 0 calc(100% - 28px);
        min-width: calc(100% - 28px);
        scroll-snap-align: center;
    }

    .product-track > div > .product-card {
        width: 100%;
        min-width: 100%;
    }

    .collection-toolbar {
        margin-bottom: 14px;
    }

    .collection-view-all {
        min-height: 40px;
        padding: 0 18px;
        font-size: 0.84rem;
        border-radius: 14px;
    }

    .product-image-frame {
        min-height: 186px;
    }

    .product-image-frame img {
        max-height: 168px;
    }

    .product-card {
        padding: 16px 14px 14px;
        border-radius: 24px;
    }

    .collection-section .product-card {
        padding: 0 0 14px;
        border-radius: 24px;
    }

    .collection-section .product-image-frame {
        min-height: 210px;
        border-radius: 24px 24px 18px 18px;
    }

    .collection-section .product-image-frame img {
        max-width: 82%;
        max-height: 186px;
        height: auto;
    }

    .collection-section .product-copy {
        padding: 14px 16px 0;
    }

    .collection-section .product-copy h3 {
        font-size: 1rem;
    }

    .collection-section .product-tagline {
        font-size: 0.86rem;
        line-height: 1.5;
    }

    .collection-section .product-actions-row {
        padding: 0 16px;
        margin-top: 12px;
    }

    .collection-section .product-button {
        min-height: 46px;
        font-size: 0.72rem;
    }

    .product-badge {
        min-height: 30px;
        padding: 0 12px;
        font-size: 0.72rem;
    }

    .wishlist-button {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }

    .collection-section .wishlist-button {
        top: 14px;
        right: 14px;
        width: 46px;
        height: 46px;
    }

    .collection-section .wishlist-button svg {
        width: 20px;
        height: 20px;
    }

    .quick-bag-button {
        top: 164px;
        right: 14px;
        width: 46px;
        height: 46px;
    }

    .quick-bag-button svg {
        width: 20px;
        height: 20px;
    }

    .product-copy h3 {
        font-size: 1.06rem;
    }

    .product-subtitle,
    .product-tagline {
        font-size: 0.84rem;
    }

    .product-meta {
        justify-content: center;
        font-size: 0.86rem;
    }

    .product-meta small {
        display: none;
    }

    .product-button {
        min-height: 44px;
        padding: 0 14px;
        font-size: 0.74rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 14px;
        padding: 20px 16px;
        border-radius: 28px 28px 0 0;
    }

    .site-footer {
        padding: 18px 0 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }

    .site-footer h2 {
        font-size: 1.9rem;
    }

    .footer-brand p {
        max-width: 32ch;
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .footer-column {
        gap: 8px;
    }

    .footer-column h3 {
        margin: 0;
        font-size: 0.9rem;
    }

    .footer-column a {
        font-size: 0.86rem;
    }

    .footer-note {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 1px;
        border-radius: 24px;
    }

    .benefit-card {
        min-height: 164px;
        padding: 18px 10px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .benefit-icon svg {
        width: 40px;
        height: 40px;
    }

    .benefit-card h3 {
        font-size: 0.84rem;
        line-height: 1.35;
    }

    .benefit-card p {
        font-size: 0.78rem;
        line-height: 1.55;
    }

    .story-section {
        background-position: 70% center;
    }

    .story-section::before {
        background: linear-gradient(90deg, rgba(20, 16, 13, 0.62), rgba(20, 16, 13, 0.18));
    }

    .story-card {
        padding: 20px 16px 22px;
    }

    .story-copy {
        max-width: 220px;
    }

    .story-copy h2 {
        font-size: clamp(1.7rem, 6.8vw, 2.15rem);
        line-height: 1.02;
    }

    .story-copy p {
        max-width: 200px;
        font-size: 0.84rem;
        line-height: 1.62;
    }

    .story-copy .eyebrow {
        margin-bottom: 8px;
        font-size: 0.67rem;
        letter-spacing: 0.18em;
    }

    .story-copy .accent-line {
        width: 42px;
        margin: 16px 0;
    }

    .story-link {
        font-size: 0.96rem;
    }

    .story-image-wrap {
        min-height: 220px;
        background-position: center;
    }

    .admin-product-item {
        grid-template-columns: 1fr;
    }
}

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

    .hero-metrics,
    .admin-stats,
    .detail-meta,
    .detail-panel-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .filters-bar {
        grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.8fr) auto;
        align-items: end;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 920px) {
    .section {
        padding: 44px 0;
    }

    .site-header [data-menu-toggle] {
        display: none;
    }

    .header-bar {
        grid-template-columns: auto auto 1fr auto;
        gap: 22px;
    }

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

    .desktop-nav {
        display: inline-flex;
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.62);
        border: 1px solid rgba(255, 255, 255, 0.72);
        box-shadow: 0 10px 22px rgba(84, 59, 26, 0.04);
    }

    .story-card,
    .catalog-hero-grid,
    .product-detail-grid,
    .admin-hero-grid {
        grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
        gap: 42px;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 0.8fr));
        gap: 28px;
        padding: 32px 36px;
    }

    .product-track {
        grid-auto-flow: initial;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        overflow: visible;
    }

    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .carousel-dots {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .benefit-card + .benefit-card {
        border-left: 1px solid rgba(164, 123, 60, 0.08);
    }

    .admin-layout {
        grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
        align-items: start;
    }

    .admin-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 50px rgba(85, 59, 24, 0.14);
    }

    .product-card:hover .product-image-frame img {
        transform: translateY(-4px) scale(1.02);
    }
}

@media (min-width: 1180px) {
    .hero-copy .lead,
    .story-copy p,
    .page-lead {
        max-width: 580px;
        font-size: 1.05rem;
    }

    .products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@keyframes heroFade {
    from {
        opacity: 0.45;
        transform: scale(1.01);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

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

    50% {
        transform: translateY(-6px);
    }
}

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

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

@keyframes softPulse {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 10px 20px rgba(84, 59, 26, 0.05);
    }

    50% {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(84, 59, 26, 0.1);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .promo-strip-marquee {
        animation: promoMarquee 24s linear infinite;
    }

    .hero-copy-shell,
    .hero-visual,
    .collection-shell,
    .catalog-shell,
    .story-card,
    .admin-panel {
        animation: riseIn 700ms ease both;
    }

    .brand-logo img {
        animation: drift 6s ease-in-out infinite;
    }

    .account-pill {
        animation: softPulse 4.8s ease-in-out infinite;
    }
}

/* Admin Panel */
body.admin-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), transparent 24%),
        radial-gradient(circle at top right, rgba(237, 216, 178, 0.44), transparent 28%),
        linear-gradient(180deg, #fffdf9 0%, #f6efe5 42%, #f2e8db 100%);
}

.admin-body .page-shell::before,
.admin-body .page-shell::after {
    display: none;
}

.admin-shell {
    width: min(1380px, calc(100% - 28px));
    margin: 18px auto;
    display: grid;
    gap: 18px;
}

.admin-sidebar,
.admin-topbar,
.admin-metric-card,
.admin-panel,
.admin-shortcut-card,
.admin-user-card {
    border: 1px solid rgba(164, 123, 60, 0.12);
    box-shadow: 0 18px 44px rgba(85, 59, 24, 0.08);
}

.admin-sidebar,
.admin-topbar,
.admin-metric-card,
.admin-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 235, 0.8)),
        rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
}

.admin-sidebar {
    border-radius: 34px;
    overflow: hidden;
}

.admin-sidebar-inner {
    display: grid;
    gap: 22px;
    padding: 24px 18px 20px;
}

.admin-brand-card {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(35, 27, 18, 0.98), rgba(78, 56, 27, 0.92));
    color: #f4e5be;
}

.admin-brand-card img {
    width: 74px;
    height: 74px;
    padding: 10px;
    object-fit: contain;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
}

.admin-brand-card strong,
.admin-brand-card span {
    display: block;
}

.admin-brand-card strong {
    margin-bottom: 4px;
    font-size: 1.06rem;
}

.admin-brand-card span {
    color: rgba(244, 229, 190, 0.78);
    line-height: 1.55;
    font-size: 0.88rem;
}

.admin-nav {
    display: grid;
    gap: 10px;
}

.admin-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 18px;
    color: var(--muted);
    font-weight: 700;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.admin-nav-link:hover,
.admin-nav-link:focus-visible,
.admin-nav-link.is-active {
    color: var(--ink);
    background: rgba(164, 123, 60, 0.14);
    transform: translateY(-1px);
    outline: none;
}

.admin-nav-link.is-active {
    box-shadow: inset 0 0 0 1px rgba(164, 123, 60, 0.08);
}

.admin-nav-icon,
.admin-nav-icon svg,
.admin-shortcut-icon,
.admin-shortcut-icon svg,
.admin-action-button svg,
.admin-logout-link svg,
.admin-side-button svg,
.admin-inline-action svg,
.admin-inline-link svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.admin-sidebar-note {
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(164, 123, 60, 0.08), rgba(255, 255, 255, 0.54));
}

.admin-mini-label {
    margin: 0 0 10px;
    color: var(--gold-deep);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.admin-sidebar-note h2,
.admin-panel-head h2,
.admin-product-headline h2 {
    margin: 0;
    font-family: "Georgia", "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.admin-sidebar-note h2 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    line-height: 1.1;
}

.admin-sidebar-note p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.admin-sidebar-actions {
    display: grid;
    gap: 10px;
}

.admin-side-button,
.admin-action-button,
.admin-inline-action,
.admin-inline-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 16px;
    font-weight: 700;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.admin-side-button,
.admin-action-button:not(.is-ghost) {
    background: linear-gradient(180deg, #231b12, #4a3418);
    color: #f5e3bc;
}

.admin-side-button.is-ghost,
.admin-action-button.is-ghost,
.admin-inline-link {
    background: rgba(164, 123, 60, 0.08);
    color: var(--ink);
}

.admin-side-button:hover,
.admin-side-button:focus-visible,
.admin-action-button:hover,
.admin-action-button:focus-visible,
.admin-inline-action:hover,
.admin-inline-action:focus-visible,
.admin-inline-link:hover,
.admin-inline-link:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.admin-main {
    min-width: 0;
    display: grid;
    gap: 18px;
}

.admin-topbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 26px;
    border-radius: 32px;
}

.admin-topbar-copy {
    flex: 1 1 420px;
    min-width: 0;
}

.admin-topbar-copy h1 {
    margin: 0 0 10px;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 3.1rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 0.98;
}

.admin-topbar-copy p:last-child {
    margin: 0;
    max-width: 62ch;
    color: var(--muted);
    line-height: 1.75;
}

.admin-topbar-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}

.admin-profile-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 18px 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(164, 123, 60, 0.1);
}

.admin-profile-pill strong,
.admin-profile-pill span {
    display: block;
}

.admin-profile-pill span:last-child {
    color: var(--muted);
    font-size: 0.84rem;
}

.admin-profile-avatar,
.admin-user-avatar {
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    font-weight: 800;
}

.admin-profile-avatar {
    width: 38px;
    height: 38px;
    background: linear-gradient(180deg, var(--gold), var(--gold-deep));
    color: #fff8eb;
}

.admin-logout-link {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
}

.admin-content {
    display: grid;
    gap: 18px;
    padding-bottom: 18px;
}

.admin-stats-grid,
.admin-insight-grid,
.admin-tile-grid {
    display: grid;
    gap: 18px;
}

.admin-metric-card,
.admin-insight-card {
    position: relative;
    overflow: hidden;
}

.admin-metric-card {
    padding: 24px 22px;
    border-radius: 28px;
}

.admin-metric-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--gold), rgba(164, 123, 60, 0));
}

.admin-metric-card.is-highlight {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.36), transparent 32%),
        linear-gradient(135deg, #2f2115, #5c3f1d 72%);
    color: #fff6e6;
}

.admin-metric-card.is-highlight p,
.admin-metric-card.is-highlight span {
    color: rgba(255, 246, 230, 0.82);
}

.admin-metric-card p,
.admin-metric-card span,
.admin-insight-card span,
.admin-category-copy span,
.admin-watch-item span,
.admin-note-list span,
.admin-user-head span,
.admin-user-meta span,
.admin-product-headline p,
.admin-product-description {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.admin-metric-card strong {
    display: block;
    margin: 10px 0 8px;
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1;
}

.admin-content-grid,
.admin-form-layout,
.admin-form-actions,
.admin-action-stack,
.admin-side-stack,
.admin-user-list,
.admin-category-stack,
.admin-watchlist,
.admin-product-grid {
    display: grid;
    gap: 18px;
}

.admin-panel {
    padding: 22px;
    border-radius: 28px;
}

.admin-panel-lg {
    min-width: 0;
}

.admin-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.admin-panel-head h2,
.admin-product-headline h2 {
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.08;
}

.admin-category-row {
    display: grid;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
}

.admin-bar-track {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(164, 123, 60, 0.1);
}

.admin-bar-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gold), var(--gold-deep));
}

.admin-compact-list {
    display: grid;
    gap: 12px;
}

.admin-compact-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.admin-compact-item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 16px;
    background: rgba(164, 123, 60, 0.08);
}

.admin-compact-item strong,
.admin-shortcut-card strong,
.admin-watch-item strong,
.admin-note-list strong,
.admin-user-head strong,
.admin-user-meta strong,
.admin-product-meta-grid strong {
    display: block;
}

.admin-compact-item span,
.admin-compact-item small {
    display: block;
    color: var(--muted);
    line-height: 1.6;
}

.admin-shortcut-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.admin-shortcut-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(164, 123, 60, 0.1);
    color: var(--gold-deep);
}

.admin-shortcut-card span:last-child {
    color: var(--muted);
    line-height: 1.65;
}

.admin-watch-item,
.admin-user-card {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
}

.admin-watch-item b,
.admin-role-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(164, 123, 60, 0.12);
    color: var(--gold-deep);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-insight-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
}

.admin-insight-card strong {
    display: block;
    margin-top: 8px;
    font-size: 1.5rem;
}

.admin-form-layout {
    align-items: start;
}

.admin-form-actions {
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: flex-start;
}

.admin-helper-text {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.65;
}

.admin-hero-slide-list {
    display: grid;
    gap: 18px;
}

.admin-hero-card,
.admin-hero-summary {
    display: grid;
    gap: 16px;
}

.admin-hero-preview {
    position: relative;
    min-height: 240px;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0)),
        linear-gradient(180deg, rgba(255, 251, 244, 0.86), rgba(242, 227, 202, 0.72));
}

.admin-hero-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.46));
}

.admin-hero-preview img,
.admin-hero-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-hero-preview-copy {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 1;
    color: #fff;
}

.admin-hero-preview-copy span,
.admin-hero-preview-copy strong {
    display: block;
}

.admin-hero-preview-copy span {
    margin-bottom: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 240, 214, 0.84);
}

.admin-hero-preview-copy strong {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    line-height: 1.08;
}

.admin-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-mini-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(164, 123, 60, 0.1);
    color: var(--gold-deep);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.admin-mini-pill.is-active {
    background: rgba(42, 106, 76, 0.12);
    color: var(--success);
}

.admin-note-list {
    display: grid;
    gap: 16px;
}

.admin-note-list div {
    padding: 14px 0;
    border-top: 1px solid rgba(164, 123, 60, 0.1);
}

.admin-note-list div:first-child {
    padding-top: 0;
    border-top: 0;
}

.admin-product-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.admin-product-card {
    display: grid;
    gap: 18px;
}

.admin-product-media {
    position: relative;
    min-height: 240px;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0)),
        linear-gradient(180deg, rgba(255, 251, 244, 0.86), rgba(242, 227, 202, 0.72));
}

.admin-product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 28px;
}

.admin-floating-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(35, 27, 18, 0.84);
    color: #f7e8bf;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-floating-badge.is-featured {
    background: linear-gradient(90deg, #c99632, #8c652a);
    color: #fff9ee;
}

.admin-product-headline {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.admin-product-headline strong {
    font-size: 1.2rem;
    color: var(--gold-deep);
}

.admin-product-meta-grid,
.admin-category-metrics,
.admin-user-meta {
    display: grid;
    gap: 12px;
}

.admin-product-meta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 16px;
}

.admin-product-meta-grid div,
.admin-category-metrics div,
.admin-user-meta div {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.admin-product-meta-grid span,
.admin-category-metrics span,
.admin-user-meta span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.84rem;
}

.admin-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.admin-inline-action {
    border: 0;
    cursor: pointer;
    background: rgba(164, 123, 60, 0.08);
    color: var(--ink);
}

.admin-inline-action.is-danger {
    background: rgba(164, 61, 50, 0.1);
    color: var(--danger);
}

.admin-category-tile h2 {
    margin: 0 0 18px;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.admin-category-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-user-list {
    gap: 14px;
}

.admin-user-card {
    justify-content: flex-start;
}

.admin-user-avatar {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    background: linear-gradient(180deg, rgba(164, 123, 60, 0.18), rgba(164, 123, 60, 0.08));
    color: var(--gold-deep);
}

.admin-user-copy {
    flex: 1 1 auto;
    min-width: 0;
}

.admin-user-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.admin-role-badge.is-admin {
    background: rgba(35, 27, 18, 0.9);
    color: #f6e7be;
}

.admin-filters {
    margin-bottom: 0;
}

@media (min-width: 920px) {
    .admin-shell {
        grid-template-columns: 290px minmax(0, 1fr);
        align-items: start;
    }

    .admin-sidebar {
        position: sticky;
        top: 18px;
    }

    .admin-stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .admin-content-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    }

    .admin-form-layout {
        grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    }

    .admin-tile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-hero-slide-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 919px) {
    .admin-shell {
        width: min(1180px, calc(100% - 20px));
    }

    .admin-sidebar-inner,
    .admin-topbar,
    .admin-panel,
    .admin-metric-card {
        padding: 20px;
    }

    .admin-topbar-copy h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .admin-product-meta-grid,
    .admin-category-metrics,
    .admin-user-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 679px) {
    .admin-shell {
        margin: 12px auto;
        gap: 14px;
    }

    .admin-brand-card,
    .admin-compact-item,
    .admin-user-card {
        grid-template-columns: 1fr;
    }

    .admin-topbar-tools,
    .admin-form-actions,
    .admin-product-actions {
        width: 100%;
    }

    .admin-action-button,
    .admin-profile-pill,
    .admin-side-button,
    .admin-inline-action,
    .admin-inline-link {
        width: 100%;
    }

    .admin-product-headline,
    .admin-user-head,
    .admin-watch-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-insight-grid,
    .admin-product-meta-grid,
    .admin-category-metrics,
    .admin-user-meta {
        grid-template-columns: 1fr;
    }

    .admin-product-grid,
    .admin-hero-slide-list,
    .admin-tile-grid {
        grid-template-columns: 1fr;
    }
}

.admin-login-body {
    display: grid;
    place-items: center;
    padding: 18px;
}

.admin-login-shell {
    width: min(520px, 100%);
}

.admin-login-card {
    padding: 28px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 235, 0.84)),
        rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(164, 123, 60, 0.12);
    box-shadow: 0 24px 56px rgba(85, 59, 24, 0.12);
}

.admin-login-brand {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

.admin-login-brand img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 28px rgba(85, 59, 24, 0.08);
}

.admin-login-brand h1 {
    margin: 0;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(2rem, 6vw, 2.8rem);
    font-weight: 500;
    letter-spacing: -0.04em;
}

.admin-login-copy {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.75;
}

.admin-login-form {
    display: grid;
    gap: 14px;
}

.admin-login-form .primary-button {
    width: 100%;
    margin-top: 4px;
}

.admin-login-note {
    margin: 18px 0;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(164, 123, 60, 0.08);
}

.admin-login-note strong,
.admin-login-note span {
    display: block;
}

.admin-login-note span {
    margin-top: 8px;
    color: var(--muted);
    font-family: "Consolas", "Courier New", monospace;
}

@media (max-width: 679px) {
    .admin-login-card {
        padding: 22px;
        border-radius: 28px;
    }

    .admin-login-brand {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 679px) {
    .collection-section {
        padding: 24px 0 30px;
        overflow: hidden;
    }

    .collection-section .container {
        width: 100%;
        max-width: 100%;
        padding: 0 12px;
    }

    .collection-shell {
        min-height: 0;
        padding: 18px 0 16px;
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .collection-shell::before,
    .collection-shell::after {
        display: none;
    }

    .collection-section .collection-heading,
    .collection-section .collection-toolbar {
        display: flex;
    }

    .collection-section .collection-heading {
        padding: 0 4px;
        margin-bottom: 14px;
        text-align: left;
        justify-content: flex-start;
    }

    .collection-section .collection-toolbar {
        justify-content: flex-start;
        margin-bottom: 6px;
        padding: 0 4px;
    }

    .collection-section .carousel-dots {
        display: flex;
        margin-top: 14px;
    }

    .collection-section .product-carousel {
        overflow: visible;
        margin: 0 -12px;
    }

    .collection-section .product-track {
        align-items: flex-start;
        gap: 12px !important;
        padding: 12px 12px 18px !important;
        overflow-x: auto;
        scroll-padding-inline: 12px;
    }

    .collection-section .product-track > div {
        flex: 0 0 min(255px, 78vw) !important;
        min-width: min(255px, 78vw) !important;
        scroll-snap-align: start;
        transform: translateY(14px);
        transition: transform 220ms ease;
        will-change: transform;
    }

    .collection-section .product-track > div.is-active-card {
        position: relative;
        z-index: 2;
        transform: translateY(-10px);
    }

    .collection-section .product-track > div > .product-card {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
    }
}
