:root {
    --bg: #f7f1e8;
    --bg-alt: #f3eadf;
    --surface: rgba(255, 250, 244, 0.96);
    --surface-strong: #fff8f0;
    --ink: #1d1711;
    --muted: #6f6254;
    --line: rgba(29, 23, 17, 0.12);
    --line-strong: rgba(29, 23, 17, 0.18);
    --gold: #c7a25a;
    --gold-light: #e4c784;
    --gold-dark: #8d6b31;
    --shadow: 0 26px 70px rgba(29, 23, 17, 0.10);
    --shadow-soft: 0 16px 35px rgba(29, 23, 17, 0.08);
    --radius: 28px;
    --radius-lg: 36px;
    --radius-sm: 18px;
    --container: min(1200px, calc(100% - 32px));
    --font-body: "Jost", "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
    --font-heading: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

/* Admin notification center controls */
body.page-admin .admin-notification-tools {
    display: grid;
    gap: 12px;
    margin: 0 0 18px;
}

body.page-admin .admin-notification-tools > label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(29, 23, 17, 0.12);
    border-radius: 8px;
    background: #fff;
    color: rgba(29, 23, 17, 0.58);
}

body.page-admin .admin-notification-tools input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #1d1711;
    font: inherit;
}

body.page-admin .admin-notification-tools > label:focus-within {
    border-color: #9b7427;
    box-shadow: 0 0 0 3px rgba(199, 162, 90, 0.2);
}

body.page-admin .admin-notification-filter-chips {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 2px 5px;
    scrollbar-width: thin;
}

body.page-admin .admin-notification-filter-chips button {
    min-height: 44px;
    padding: 7px 13px;
    border: 1px solid rgba(29, 23, 17, 0.12);
    border-radius: 999px;
    background: #fff;
    color: #554a3e;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
}

body.page-admin .admin-notification-filter-chips button:hover,
body.page-admin .admin-notification-filter-chips button:focus-visible {
    border-color: #9b7427;
}

body.page-admin .admin-notification-filter-chips button:focus-visible {
    outline: 2px solid #9b7427;
    outline-offset: 2px;
}

body.page-admin .admin-notification-filter-chips button.is-active {
    border-color: #1d1711;
    background: #1d1711;
    color: #fff;
}

body.page-admin .admin-notification-no-results {
    margin: 4px 0 0;
    padding: 20px;
    border: 1px dashed rgba(29, 23, 17, 0.18);
    border-radius: 8px;
    color: rgba(29, 23, 17, 0.66);
    text-align: center;
}

body.page-admin .admin-notification-card small {
    color: rgba(29, 23, 17, 0.58);
    overflow-wrap: anywhere;
}

body.page-admin [data-notification-card][hidden],
body.page-admin [data-notification-list] > li[hidden],
body.page-admin .admin-notification-no-results[hidden] {
    display: none !important;
}

/* Compact, native alert disclosure: keyboard and touch work without JS. */
body.page-admin .admin-notification-card {
    overflow: hidden;
}

body.page-admin .admin-notification-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    list-style: none;
}

body.page-admin .admin-notification-summary::-webkit-details-marker {
    display: none;
}

body.page-admin .admin-notification-summary:focus-visible {
    outline: 2px solid #9b7427;
    outline-offset: 4px;
}

body.page-admin .admin-notification-summary-label {
    min-width: 0;
    overflow-wrap: anywhere;
}

body.page-admin .admin-notification-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    min-height: 46px;
    padding: 6px;
    border: 1px solid rgba(199, 162, 90, 0.4);
    border-radius: 999px;
    background: rgba(199, 162, 90, 0.12);
    color: var(--gold-dark);
    font-size: 0.7rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

body.page-admin .admin-notification-toggle-close,
body.page-admin .admin-notification-card[open] .admin-notification-toggle-open {
    display: none;
}

body.page-admin .admin-notification-card[open] .admin-notification-toggle-close {
    display: inline;
}

body.page-admin .admin-notification-details {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(29, 23, 17, 0.1);
}

body.page-admin .admin-notification-details p {
    margin: 0 0 12px;
    overflow-wrap: anywhere;
}

body.page-admin .admin-notification-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 0;
}

body.page-admin .admin-notification-meta div { min-width: 0; }
body.page-admin .admin-notification-meta dt { color: rgba(29, 23, 17, 0.55); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; }
body.page-admin .admin-notification-meta dd { margin: 2px 0 0; overflow-wrap: anywhere; }

@media (max-width: 600px) {
    body.page-admin .admin-notification-summary { gap: 9px; }
}

@media (min-width: 901px) {
    body.page-admin .admin-notification-tools {
        grid-template-columns: minmax(240px, 1fr) auto;
        align-items: center;
    }

    body.page-admin .admin-notification-no-results {
        grid-column: 1 / -1;
    }
}

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

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

html {
    scroll-behavior: smooth;
    scrollbar-color: var(--gold) rgba(29, 23, 17, 0.08);
    scrollbar-width: thin;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(199, 162, 90, 0.08), transparent 24%),
        radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.3), transparent 18%),
        linear-gradient(180deg, #fbf8f3 0%, #f7f1e8 46%, #f4eadf 100%);
    font-family: var(--font-body);
    line-height: 1.55;
    position: relative;
}

::selection {
    color: #241a0f;
    background: rgba(228, 199, 132, 0.62);
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(29, 23, 17, 0.06);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
    border: 2px solid rgba(255, 250, 244, 0.92);
    border-radius: 999px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.36), transparent 0 12%),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.2), transparent 0 14%);
    opacity: 0.42;
}

body.menu-open {
    overflow: hidden;
}

body.is-navigating {
    cursor: progress;
}

body.is-navigating .page-shell {
    opacity: 0.78;
    transform: translateY(4px);
    filter: blur(0.35px);
}

.page-shell {
    min-height: 100vh;
    position: relative;
    transition: opacity 0.18s ease, transform 0.18s ease, filter 0.18s ease;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
    font-weight: 600;
}

p {
    margin-top: 0;
}

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

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

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

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

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

.site-main {
    position: relative;
    z-index: 1;
    padding-bottom: 80px;
}

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

.section-tight {
    padding: 52px 0;
}

.section-slab {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(243, 234, 223, 0.86));
    border-top: 1px solid rgba(29, 23, 17, 0.05);
    border-bottom: 1px solid rgba(29, 23, 17, 0.05);
}

.section-luxury {
    background: linear-gradient(135deg, rgba(29, 23, 17, 0.92), rgba(44, 33, 22, 0.95));
    color: #f7efe5;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-luxury .eyebrow,
.section-luxury .section-copy,
.section-luxury .muted {
    color: rgba(247, 239, 229, 0.78);
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.03;
}

.section-copy {
    color: var(--muted);
    max-width: 64ch;
}

.eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.muted {
    color: var(--muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 999px;
    padding: 14px 22px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
    font-weight: 700;
    box-shadow: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:focus-visible,
.action-icon:focus-visible,
.nav-link:focus-visible,
.category-button:focus-visible,
.filter-chip:focus-visible,
.preview-chip:focus-visible,
.dropdown-link:focus-visible,
.dropdown-pill:focus-visible {
    outline: 2px solid var(--gold-dark);
    outline-offset: 3px;
}

.btn-sm {
    padding: 10px 16px;
    font-size: 0.92rem;
}

.btn-xs {
    padding: 8px 12px;
    font-size: 0.82rem;
}

.btn-block {
    width: 100%;
}

.btn-gold {
    color: #241a0f;
    background: linear-gradient(135deg, var(--gold) 0%, #d8bd77 100%);
    box-shadow: 0 18px 28px rgba(199, 162, 90, 0.2);
}

.btn-gold:hover {
    box-shadow: 0 20px 34px rgba(199, 162, 90, 0.28);
}

.btn-outline {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.64);
    border-color: var(--line);
}

.btn-soft {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.78);
    border-color: var(--line);
}

.icon {
    width: 1.2rem;
    height: 1.2rem;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.icon-set-lucide,
.icon-set-heroicons {
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-set-fontawesome {
    fill: currentColor;
    stroke: none;
    font-size: 1.05em;
}

.icon-xs {
    width: 0.75rem;
    height: 0.75rem;
}

.icon-sm {
    width: 0.95rem;
    height: 0.95rem;
}

.icon-md {
    width: 1.4rem;
    height: 1.4rem;
}

.badge,
.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
}

.badge-new {
    color: #7a4d16;
    background: rgba(227, 199, 136, 0.16);
}

.badge-low {
    color: #8a4a1f;
    background: rgba(231, 181, 124, 0.16);
}

.badge-made {
    color: #6b3c18;
    background: rgba(211, 167, 105, 0.16);
}

.badge-neutral {
    color: var(--muted);
}

/* Toast-style flash — sticky under header, never covers page H1 in flow */
.flash-region {
    position: sticky;
    top: var(--flash-under-header, 5.75rem);
    z-index: 35;
    padding: 12px 0 0;
    margin: 0 0 8px;
    background: linear-gradient(180deg, rgba(247, 241, 232, 0.97) 55%, rgba(247, 241, 232, 0));
}

.flash {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 auto 16px;
    padding: 14px 14px 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(199, 162, 90, 0.38);
    box-shadow: 0 12px 30px rgba(29, 23, 17, 0.08);
    background: #fffaf3;
    color: var(--ink);
    max-width: min(720px, var(--container));
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.flash.is-hiding {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.flash-message {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.55;
    color: var(--ink);
}

.flash-close {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: -4px -4px -4px 0;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.flash-close:hover,
.flash-close:focus-visible {
    background: rgba(29, 23, 17, 0.06);
    color: var(--ink);
    outline: none;
}

.flash-success {
    border-color: rgba(110, 138, 98, 0.42);
    background: linear-gradient(180deg, #fffefb 0%, #f6f1e6 100%);
    box-shadow: 0 12px 30px rgba(29, 23, 17, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.flash-error {
    border-color: rgba(140, 58, 33, 0.34);
    background: linear-gradient(180deg, #fff9f6 0%, #f7eee8 100%);
    color: #5c2416;
}

.flash-error .flash-message {
    color: #5c2416;
}

.flash-info {
    border-color: rgba(199, 162, 90, 0.42);
    background: linear-gradient(180deg, #fffdf8 0%, #f3eadc 100%);
}

.flash-warning {
    border-color: rgba(168, 120, 48, 0.4);
    background: linear-gradient(180deg, #fffbf3 0%, #f5ecd8 100%);
    color: #6b4a1a;
}

.flash-warning .flash-message {
    color: #6b4a1a;
}

.site-main:has(.flash-region) .page-hero-small {
    padding-top: 28px;
}

@media (max-width: 720px) {
    .flash-region {
        padding-top: 10px;
        margin-bottom: 4px;
    }

    .flash {
        margin-bottom: 12px;
        padding: 12px 10px 12px 14px;
        border-radius: 14px;
        max-width: var(--container);
    }

    .flash-message {
        font-size: 0.9rem;
    }

    .site-main:has(.flash-region) .page-hero-small {
        padding-top: 22px;
    }
}

.announcement-bar {
    background: #050505;
    color: #fffaf3;
    border-bottom: 0;
    position: relative;
    z-index: 30;
}

.announcement-inner {
    min-height: 34px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    padding: 6px 0;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.announcement-copy {
    grid-column: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fffaf3;
}

.announcement-link {
    color: var(--gold-light);
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 250, 243, 0.98);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(29, 23, 17, 0.08);
    box-shadow: none;
}

.header-row {
    min-height: 82px;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
    padding: 0;
}

.brand-lockup {
    display: inline-grid;
    justify-items: start;
    gap: 4px;
    min-width: 0;
    flex: 0 0 auto;
}

.brand-logo-image,
.footer-logo-image {
    display: block;
    object-fit: contain;
    flex: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.brand-logo-image {
    width: 160px;
    max-height: 58px;
}

.footer-logo-image {
    width: clamp(120px, 15vw, 182px);
    max-height: 66px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.16));
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #050505;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 8px 0;
    position: relative;
    transition: color 0.18s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--ink);
}

.nav-link-sale {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: end;
    gap: 18px;
}

.action-icon {
    width: 26px;
    height: 26px;
    border-radius: 0;
    border: 0;
    background: transparent;
    color: #050505;
    display: grid;
    place-items: center;
    position: relative;
    box-shadow: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.action-icon svg,
.action-icon .icon {
    width: 23px;
    height: 23px;
}

.action-icon:hover,
.menu-toggle:hover,
.drawer-close:hover {
    transform: translateY(-1px);
    border-color: rgba(199, 162, 90, 0.36);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 30px rgba(29, 23, 17, 0.08);
}

.action-icon-cart {
    margin-right: 4px;
}

.action-count {
    position: absolute;
    top: -7px;
    right: -9px;
    min-width: 17px;
    height: 17px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--gold);
    color: #241a0f;
    font-size: 0.66rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    border: 0;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    align-items: center;
    justify-content: center;
}

.btn-desktop-only {
    display: inline-flex;
}

.category-strip {
    display: none;
}

.category-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 12px 0 16px;
    scrollbar-width: none;
}

.category-row::-webkit-scrollbar {
    display: none;
}

.category-group {
    position: relative;
    flex: 0 0 auto;
}

.category-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(29, 23, 17, 0.03);
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.category-button:hover,
.category-group.is-open .category-button {
    border-color: rgba(199, 162, 90, 0.38);
    color: var(--gold-dark);
    transform: translateY(-1px);
}

.category-caret {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    transition: transform 0.18s ease;
}

.category-group.is-open .category-caret {
    transform: rotate(180deg);
}

.dropdown-panel {
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    width: min(600px, 82vw);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.category-group:hover .dropdown-panel,
.category-group.is-open .dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-panel-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 20px;
    padding: 22px;
    border-radius: 30px;
    background: rgba(255, 252, 247, 0.99);
    border: 1px solid rgba(29, 23, 17, 0.09);
    box-shadow: var(--shadow);
}

.dropdown-panel-copy h3 {
    margin: 6px 0 8px;
    font-size: 1.45rem;
}

.dropdown-eyebrow {
    margin: 0;
    color: var(--gold-dark);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.dropdown-panel-copy p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.dropdown-panel-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
}

.dropdown-pill,
.dropdown-link {
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    padding: 10px 14px;
    font-size: 0.92rem;
    font-weight: 700;
}

.dropdown-pill {
    background: linear-gradient(135deg, var(--gold) 0%, #e0c17f 100%);
    color: #241a0f;
}

.dropdown-link {
    color: var(--ink);
}

.mobile-overlay,
.mobile-drawer {
    display: none;
}

.hero-section {
    padding: 84px 0 44px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: center;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    max-width: 10.5ch;
}

.hero-copy > p:not(.eyebrow),
.hero-copy .hero-copy {
    margin-top: 20px;
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 58ch;
}

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

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-pills span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.64);
    color: var(--ink);
    font-weight: 700;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.hero-metrics div,
.stat-card {
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.64);
    padding: 16px 18px;
    box-shadow: 0 12px 24px rgba(29, 23, 17, 0.04);
}

.hero-metrics strong,
.stat-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.hero-metrics span,
.stat-card span {
    color: var(--muted);
    font-size: 0.92rem;
}

.admin-report-grid {
    margin: -2px 0 22px;
}

.admin-report-note {
    margin-bottom: 22px;
}

.hero-visual {
    display: grid;
    gap: 18px;
}

.hero-editorial-card {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    border: 1px solid rgba(29, 23, 17, 0.08);
    box-shadow: var(--shadow);
}

.hero-editorial-card img {
    width: 100%;
    height: 630px;
    object-fit: cover;
}

.hero-editorial-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 36%, rgba(15, 12, 9, 0.5) 100%);
}

.hero-editorial-copy {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 1;
    color: #fff8ee;
    display: grid;
    gap: 4px;
}

.hero-editorial-copy p {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
}

.hero-editorial-copy strong {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
}

.hero-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.mini-product {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.mini-product img {
    height: 160px;
    width: 100%;
    object-fit: cover;
}

.mini-product div {
    padding: 14px;
    display: grid;
    gap: 4px;
}

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

.mini-product strong {
    font-size: 1rem;
    line-height: 1.2;
}

.mini-product small {
    color: var(--gold-dark);
    font-weight: 700;
}

.collection-grid,
.product-grid,
.lookbook-grid {
    display: grid;
    gap: 18px;
}

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

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

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

.collection-card,
.lookbook-card,
.product-card,
.info-panel,
.summary-panel,
.table-card,
.profile-card,
.admin-panel,
.admin-login-card,
.note-card,
.contact-card,
.empty-state,
.confirmation-card,
.copy-block,
.hero-note,
.luxury-panel {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    will-change: transform;
}

.collection-card:hover,
.lookbook-card:hover,
.product-card:hover,
.info-panel:hover,
.summary-panel:hover,
.profile-card:hover,
.admin-panel:hover,
.note-card:hover,
.cart-item:hover {
    transform: translateY(-3px);
    border-color: rgba(199, 162, 90, 0.24);
    box-shadow: 0 26px 54px rgba(29, 23, 17, 0.12);
}

.collection-card {
    padding: 20px;
    display: grid;
    gap: 12px;
}

.collection-card strong,
.lookbook-copy h3,
.copy-block h2,
.info-panel h2,
.summary-panel h2,
.table-card h2,
.profile-card h2,
.admin-panel h2,
.admin-login-card h2,
.luxury-panel h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.08;
}

.collection-label {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold-dark);
    font-weight: 700;
}

.collection-card p {
    color: var(--muted);
    margin: 0;
}

.collection-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.collection-links span {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(29, 23, 17, 0.04);
    color: var(--ink);
    font-size: 0.84rem;
    border: 1px solid rgba(29, 23, 17, 0.05);
}

.collection-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-weight: 800;
}

.product-card {
    overflow: hidden;
}

.product-media {
    position: relative;
    display: block;
    overflow: hidden;
}

.product-media img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.product-card:hover .product-media img,
.lookbook-card:hover img,
.collection-card:hover .collection-cta .icon {
    transform: scale(1.035);
}

.product-card:hover .product-media img,
.lookbook-card:hover img {
    filter: saturate(1.06) contrast(1.03);
}

.product-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
}

.product-body {
    padding: 18px;
    display: grid;
    gap: 12px;
}

.product-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-meta .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.product-body h3 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.08;
}

.product-subtitle,
.product-description {
    margin: 0;
    color: var(--muted);
}

.product-price-row,
.product-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.product-price-row strong,
.product-price-row-large strong {
    font-family: var(--font-heading);
    font-size: 1.45rem;
}

.compare-price {
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 700;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-tags span {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(29, 23, 17, 0.06);
    background: rgba(29, 23, 17, 0.03);
    font-size: 0.8rem;
    color: var(--muted);
}

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

.inline-form {
    margin: 0;
}

.page-hero {
    padding: 86px 0 36px;
}

.page-hero-small {
    padding-top: 54px;
}

.hero-small-grid,
.cart-layout,
.checkout-layout,
.product-detail-grid,
.account-layout,
.luxury-grid,
.split-panel-grid,
.copy-layout {
    display: grid;
    gap: 28px;
}

.hero-small-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
}

.hero-small-grid h1 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1;
    max-width: 12ch;
}

.hero-side {
    display: grid;
    gap: 14px;
}

.hero-note,
.note-card,
.contact-card {
    padding: 18px;
}

.hero-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.hero-note span {
    color: var(--muted);
}

.copy-layout {
    grid-template-columns: 1.05fr 0.75fr;
}

.copy-main {
    display: grid;
    gap: 18px;
}

.copy-block {
    padding: 22px;
}

.copy-block h2,
.info-panel h2,
.summary-panel h2,
.admin-panel h2,
.profile-card h2,
.table-card h2 {
    margin-bottom: 12px;
}

/* Lookbook specific styles */
.lookbook-hero-section {
    position: relative;
    padding: 80px 0 60px;
    background-image: url('../images/banners/hero-gold-kaftan.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.lookbook-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 12, 9, 0.4) 0%, rgba(15, 12, 9, 0.6) 100%);
}

.lookbook-breadcrumbs {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.lookbook-breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.18s ease;
}

.lookbook-breadcrumbs a:hover {
    color: #fffaf3;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current {
    color: #fffaf3;
    font-weight: 700;
}

.lookbook-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.lookbook-hero-content h1 {
    margin: 0 0 20px;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    color: #fffaf3;
    letter-spacing: -0.03em;
}

.lookbook-hero-description {
    margin: 0 0 32px;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    max-width: 500px;
}

.lookbook-container {
    padding-top: 40px;
}

.lookbook-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.lookbook-tabs-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.lookbook-tab {
    background: transparent;
    border: 1px solid var(--line);
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.18s ease;
}

.lookbook-tab:hover {
    border-color: rgba(199, 162, 90, 0.4);
    color: var(--gold-dark);
}

.lookbook-tab.is-active {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    color: #241a0f;
    border-color: transparent;
}

.lookbook-sort {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}

.lookbook-sort-select {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.86);
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
}

.lookbook-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.lookbook-card {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.lookbook-card-link {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.lookbook-card-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 78px rgba(29,23,17,0.14);
}

.lookbook-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: block;
}

.lookbook-card-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,12,9,0.1) 0%, rgba(15,12,9,0.3) 40%, rgba(15,12,9,0.7) 100%);
    transition: background 0.2s ease;
}

.lookbook-card-overlay {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    color: #fffaf3;
    z-index: 2;
    display: grid;
    gap: 8px;
}

.lookbook-card-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    font-weight: 800;
}

.lookbook-card-title {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.lookbook-collection-count {
    display: inline-block;
    margin-top: 4px;
    font-weight: 800;
    color: rgba(255,255,255,0.95);
    background: rgba(0,0,0,0.25);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.lookbook-newsletter-section {
    background: linear-gradient(135deg, rgba(199, 162, 90, 0.08), rgba(199, 162, 90, 0.04));
    border-top: 1px solid rgba(199, 162, 90, 0.15);
    border-bottom: 1px solid rgba(199, 162, 90, 0.15);
}

.lookbook-newsletter {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
}

.lookbook-newsletter h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 0.15em;
}

.lookbook-newsletter p {
    margin: 0 0 32px;
    color: var(--muted);
    font-size: 1.05rem;
}

.lookbook-newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.lookbook-newsletter-inputs {
    display: flex;
    gap: 12px;
    flex: 1;
    min-width: 280px;
}

.lookbook-newsletter-inputs input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.lookbook-newsletter-inputs input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(199, 162, 90, 0.15);
}

.lookbook-newsletter-inputs button {
    padding: 14px 28px;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

@media (max-width: 1100px) {
    .lookbook-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .lookbook-hero-section {
        min-height: 400px;
        padding: 60px 0 40px;
    }
}

@media (max-width: 768px) {
    .lookbook-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lookbook-hero-section {
        min-height: 350px;
        padding: 50px 0 30px;
    }
    .lookbook-hero-content h1 {
        font-size: 2.5rem;
    }
    .lookbook-tabs {
        flex-direction: column;
        align-items: flex-start;
    }
    .lookbook-tabs-list {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 8px;
    }
    .lookbook-tab {
        white-space: nowrap;
    }
}

@media (max-width: 580px) {
    .lookbook-grid {
        grid-template-columns: 1fr;
    }
    .lookbook-hero-section {
        min-height: 300px;
        padding: 40px 0 20px;
    }
    .lookbook-hero-content h1 {
        font-size: 2rem;
    }
    .lookbook-hero-description {
        font-size: 1rem;
    }
    .lookbook-newsletter-inputs {
        flex-direction: column;
    }
    .lookbook-newsletter-inputs input,
    .lookbook-newsletter-inputs button {
        width: 100%;
    }
}

.copy-block p:last-child {
    margin-bottom: 0;
}

.copy-list {
    margin: 0;
    padding-left: 18px;
    color: var(--ink);
}

.copy-list li + li {
    margin-top: 8px;
}

.copy-aside-sticky {
    position: sticky;
    top: 168px;
}

.aside-stack {
    display: grid;
    gap: 14px;
}

.note-card p:last-child,
.contact-card p:last-child {
    margin-bottom: 0;
}

.shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
}

.shop-search {
    display: flex;
    gap: 10px;
    flex: 1 1 560px;
}

.shop-search input[type="search"],
.shop-sort select,
.field input,
.field select,
.field textarea,
.admin-form input,
.admin-form select,
.admin-form textarea,
.checkout-form input,
.checkout-form select,
.checkout-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea,
.admin-login-card input {
    width: 100%;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    padding: 13px 16px;
    color: var(--ink);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.shop-search input[type="search"]:focus,
.shop-sort select:focus,
.field input:focus,
.field select:focus,
.field textarea:focus,
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus,
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.admin-login-card input:focus {
    outline: none;
    border-color: rgba(199, 162, 90, 0.52);
    box-shadow: 0 0 0 4px rgba(199, 162, 90, 0.10);
}

/* Checkboxes/radios must not inherit the text-input chrome (width, padding, min-height) */
.field input[type="checkbox"],
.field input[type="radio"],
.admin-form input[type="checkbox"],
.admin-form input[type="radio"],
.checkout-form input[type="checkbox"],
.checkout-form input[type="radio"],
.contact-form input[type="checkbox"],
.contact-form input[type="radio"],
.checkbox-row input[type="checkbox"],
.checkbox-row input[type="radio"] {
    width: 18px;
    height: 18px;
    min-height: 0;
    padding: 0;
    border-radius: 4px;
    flex: 0 0 auto;
}

.shop-search input[type="search"] {
    min-width: 0;
    flex: 1 1 auto;
}

.shop-sort {
    flex: 0 0 260px;
}

.shop-sort select {
    appearance: none;
}

.filter-chips,
.category-preview-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip,
.preview-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    padding: 10px 14px;
    font-weight: 700;
}

.filter-chip.active,
.preview-chip:hover {
    border-color: rgba(199, 162, 90, 0.36);
    background: rgba(199, 162, 90, 0.10);
    color: var(--gold-dark);
}

.preview-chip small {
    display: inline-grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(29, 23, 17, 0.06);
    color: var(--ink);
    font-size: 0.76rem;
}

.section-count {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--muted);
    font-weight: 700;
}

.empty-state,
.confirmation-card {
    padding: 26px;
}

.empty-state {
    display: grid;
    gap: 12px;
    place-items: start;
}

.empty-state h1,
.empty-state h2 {
    margin: 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 0.92rem;
}

.breadcrumb a:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    color: rgba(29, 23, 17, 0.3);
}

.product-detail-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.product-gallery {
    display: grid;
    gap: 12px;
}

.product-gallery-main,
.product-gallery-thumbs img {
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.product-gallery-main img {
    width: 100%;
    height: 720px;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.product-gallery-thumbs img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.product-summary {
    padding: 8px 4px;
    display: grid;
    gap: 16px;
}

.product-summary h1 {
    margin: 0;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1;
}

.product-price-row-large {
    justify-content: flex-start;
    gap: 16px;
}

.product-status-row {
    justify-content: flex-start;
}

.product-form {
    display: grid;
    gap: 16px;
    margin-top: 8px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

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

.field > span {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--muted);
}

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

.field-inline {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
}

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

.product-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-top: 8px;
}

.product-facts div {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid var(--line);
}

.product-facts strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-dark);
}

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

.info-panel {
    padding: 22px;
}

.info-panel p:last-child {
    margin-bottom: 0;
}

.cart-layout,
.checkout-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
}

.cart-items,
.checkout-form {
    display: grid;
    gap: 16px;
}

.cart-item {
    display: grid;
    grid-template-columns: 170px 1fr auto;
    gap: 18px;
    align-items: start;
    padding: 18px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
}

.cart-item img {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid rgba(29, 23, 17, 0.06);
}

.cart-item-copy {
    display: grid;
    gap: 14px;
}

.cart-item-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
}

.cart-item-head h3 {
    margin: 0;
    font-size: 1.28rem;
}

.cart-item-head p {
    margin: 4px 0 0;
    color: var(--muted);
}

.cart-item-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.cart-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 0.92rem;
}

.cart-item-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.cart-item-form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cart-item-form-remove {
    margin-left: auto;
}

.remove-btn {
    border: 0;
    background: transparent;
    color: #8d4e2d;
    font-weight: 700;
    cursor: pointer;
}

.summary-panel {
    padding: 22px;
    display: grid;
    gap: 14px;
    position: sticky;
    top: 168px;
}

.summary-row,
.summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.summary-row {
    color: var(--muted);
}

.summary-row-total {
    color: var(--ink);
    padding-top: 10px;
    border-top: 1px solid var(--line);
    font-size: 1.05rem;
}

.summary-note {
    color: var(--muted);
    margin: 0;
}

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

.checkout-note {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid var(--line);
    display: grid;
    gap: 6px;
}

.summary-panel-checkout {
    gap: 12px;
}

.summary-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.summary-item span,
.history-item span {
    color: var(--muted);
    display: block;
    margin-top: 4px;
    font-size: 0.92rem;
}

.account-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
}

.auth-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.auth-card {
    display: grid;
    align-content: start;
    gap: 16px;
}

.profile-card,
.admin-login-card {
    padding: 22px;
}

.side-stack {
    display: grid;
    gap: 16px;
}

.saved-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.saved-item {
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
}

.saved-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 16px;
}

.history-list {
    display: grid;
    gap: 12px;
    min-width: 0;
    max-width: 100%;
}

.history-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.history-item strong {
    display: block;
}

.account-app-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.account-stat-card {
    position: relative;
    overflow: hidden;
    min-height: 112px;
    padding: 18px;
    border-radius: 26px;
    border: 1px solid rgba(199, 162, 90, 0.22);
    background:
        radial-gradient(circle at top right, rgba(228, 199, 132, 0.28), transparent 42%),
        rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-soft);
    display: grid;
    align-content: space-between;
}

.account-stat-card span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.account-stat-card strong {
    color: var(--ink);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    line-height: 1;
}

.account-app-card,
.account-auth-grid {
    scroll-margin-top: 130px;
}

.footer {
    position: relative;
}

.site-footer {
    position: relative;
    z-index: 1;
    padding: 34px 0 40px;
    background: #050505;
    color: #f7efe5;
    margin-top: 34px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr));
    gap: 38px;
}

.footer-brand {
    display: grid;
    justify-items: start;
}

.footer-brand-lockup {
    display: inline-grid;
    justify-items: start;
}

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

.footer-column h4 {
    margin: 0 0 4px;
    color: var(--gold-light);
    text-transform: uppercase;
    font-family: var(--font-body);
    letter-spacing: 0.04em;
    font-size: 0.85rem;
}

.footer-column a,
.footer-column span {
    color: rgba(247, 239, 229, 0.78);
}

.footer-bottom {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    color: rgba(247, 239, 229, 0.7);
    font-size: 0.92rem;
}

.footer-copyright {
    justify-self: start;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.footer-payment-logos,
.footer-legal-links {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-payment-logos {
    justify-self: center;
    justify-content: center;
    gap: 4px;
}

.footer-legal-links {
    justify-self: end;
    justify-content: flex-end;
    gap: 14px;
}

/* Scentility-style payment marks: compact monochrome badges (dark-footer variant). */
.payment-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    height: 26px;
    min-width: 38px;
    width: auto;
    padding: 0 6px;
    border: 1px solid rgba(255, 250, 243, 0.15);
    border-radius: 2px;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    color: #f7efe5;
}

.payment-logo i {
    display: none;
}

.payment-logo img {
    display: block;
    width: auto;
    height: 14px;
    max-width: 64px;
    object-fit: contain;
    object-position: center;
}

.payment-logo-visa img {
    height: 12px;
}

.payment-logo-mastercard {
    min-width: 42px;
}

.payment-logo-mastercard img {
    height: 16px;
}

.payment-logo-verve img {
    height: 11px;
}

.payment-logo-paystack {
    min-width: 54px;
}

.payment-logo-paystack img {
    height: 12px;
    max-width: 72px;
}

.whatsapp-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1f7e3a, #24a144);
    color: #fff;
    box-shadow: 0 18px 38px rgba(19, 96, 40, 0.28);
}

.footer-socials a {
    border: 0;
    padding: 0;
}

.whatsapp-fab span {
    font-weight: 800;
}

.mobile-app-bar,
.account-mobile-more-sheet {
    display: none;
}

button.mobile-app-link {
    border: 0;
    padding: 0;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
}

.account-mobile-shell,
.account-mobile-only,
.account-mobile-hero,
.account-mobile-stats,
.account-mobile-actions,
.account-mobile-panel,
.account-mobile-feed,
.account-mobile-content-wrap,
.account-mobile-guest-auth {
    display: none;
}

.account-desktop-only {
    display: block;
}

.mobile-app-link {
    min-width: 0;
    display: grid;
    place-items: center;
    gap: 4px;
    color: rgba(29, 23, 17, 0.62);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.01em;
    transition: color 0.18s ease, transform 0.18s ease;
}

.mobile-app-link .icon {
    width: 1.22rem;
    height: 1.22rem;
}

.mobile-app-link.is-active {
    color: var(--ink);
}

.mobile-app-link.is-active .icon {
    color: var(--gold-dark);
    filter: drop-shadow(0 6px 10px rgba(199, 162, 90, 0.18));
}

.mobile-app-link:hover {
    color: var(--gold-dark);
    transform: translateY(-1px);
}

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

.confirmation-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.confirmation-card {
    display: grid;
    gap: 6px;
}

.confirmation-card strong,
.table-card h2,
.admin-panel h2 {
    color: var(--gold-dark);
}

/* Thank-you / order confirmation */
body.page-thank-you .thank-you-layout {
    display: grid;
    gap: 22px;
    max-width: 760px;
    margin-inline: auto;
}

body.page-thank-you .thank-you-intro {
    display: grid;
    gap: 10px;
    padding: 8px 2px 4px;
}

body.page-thank-you .thank-you-intro h1 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: 0.01em;
}

body.page-thank-you .thank-you-lede {
    margin: 0;
    max-width: 42rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.55;
}

body.page-thank-you .thank-you-panel {
    display: grid;
    gap: 16px;
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background:
        linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(247, 241, 232, 0.92));
    box-shadow: var(--shadow-soft);
}

body.page-thank-you .thank-you-panel-title {
    margin: 0;
    color: var(--gold-dark);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

body.page-thank-you .thank-you-summary-grid {
    display: grid;
    margin: 0;
    gap: 0;
    border-top: 1px solid var(--line);
}

body.page-thank-you .thank-you-summary-row {
    display: grid;
    grid-template-columns: minmax(9rem, 38%) minmax(0, 1fr);
    gap: 12px 18px;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

body.page-thank-you .thank-you-summary-row dt {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-thank-you .thank-you-summary-row dd {
    margin: 0;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 600;
    overflow-wrap: anywhere;
    text-align: right;
}

body.page-thank-you .thank-you-summary-total {
    padding-top: 16px;
}

body.page-thank-you .thank-you-summary-total dt,
body.page-thank-you .thank-you-summary-total dd {
    color: var(--ink);
    font-size: 1.08rem;
}

body.page-thank-you .thank-you-summary-total dd {
    color: var(--gold-dark);
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
}

body.page-thank-you .thank-you-reference {
    display: inline-block;
    padding: 2px 0;
    border: 0;
    background: transparent;
    color: inherit;
    font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
    font-size: 0.92em;
    font-weight: 600;
    letter-spacing: 0.02em;
}

body.page-thank-you .thank-you-status {
    display: inline-flex;
    align-items: center;
    min-height: 1.8em;
    padding: 0.15em 0.65em;
    border: 1px solid rgba(141, 107, 49, 0.28);
    border-radius: 999px;
    background: rgba(199, 162, 90, 0.12);
    color: var(--gold-dark);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

body.page-thank-you .thank-you-status-confirmed {
    border-color: rgba(74, 110, 68, 0.28);
    background: rgba(74, 110, 68, 0.1);
    color: #3f5c39;
}

body.page-thank-you .thank-you-status-failed {
    border-color: rgba(141, 78, 45, 0.3);
    background: rgba(141, 78, 45, 0.1);
    color: #8d4e2d;
}

body.page-thank-you .thank-you-status-pending-gateway,
body.page-thank-you .thank-you-status-awaiting-transfer,
body.page-thank-you .thank-you-status-pending {
    border-color: rgba(141, 107, 49, 0.28);
    background: rgba(228, 199, 132, 0.22);
    color: var(--gold-dark);
}

body.page-thank-you .thank-you-item-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.page-thank-you .thank-you-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.55);
}

body.page-thank-you .thank-you-item-image {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--bg-alt);
}

body.page-thank-you .thank-you-item-image-placeholder {
    display: grid;
    place-items: center;
    color: var(--gold-dark);
}

body.page-thank-you .thank-you-item-body {
    display: grid;
    gap: 4px;
    min-width: 0;
}

body.page-thank-you .thank-you-item-name {
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.3;
}

body.page-thank-you .thank-you-item-meta,
body.page-thank-you .thank-you-item-qty {
    color: var(--muted);
    font-size: 0.9rem;
}

body.page-thank-you .thank-you-item-price {
    color: var(--ink);
    font-weight: 700;
    white-space: nowrap;
}

body.page-thank-you .thank-you-note-copy {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

body.page-thank-you .thank-you-steps {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0 0 0 1.2rem;
    color: var(--ink);
    line-height: 1.5;
}

body.page-thank-you .thank-you-steps li::marker {
    color: var(--gold-dark);
    font-weight: 700;
}

body.page-thank-you .thank-you-help {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

body.page-thank-you .thank-you-help-copy {
    display: grid;
    gap: 6px;
}

body.page-thank-you .thank-you-help-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

body.page-thank-you .thank-you-actions {
    margin-top: 4px;
}

@media (max-width: 700px) {
    body.page-thank-you .thank-you-summary-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    body.page-thank-you .thank-you-summary-row dd {
        text-align: left;
    }

    body.page-thank-you .thank-you-item {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    body.page-thank-you .thank-you-item-image {
        width: 64px;
        height: 64px;
    }

    body.page-thank-you .thank-you-item-price {
        grid-column: 2;
        justify-self: start;
    }

    body.page-thank-you .thank-you-help {
        grid-template-columns: 1fr;
    }

    body.page-thank-you .thank-you-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

.admin-shell {
    padding: 36px 0 90px;
}

.admin-topbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.admin-login-wrap {
    display: grid;
    place-items: center;
    padding-top: 24px;
}

.admin-login-card {
    display: grid;
    align-content: start;
    gap: 16px;
    width: min(520px, 100%);
}

.admin-stats-grid {
    margin-bottom: 22px;
}

.admin-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.admin-panels-lower {
    margin-top: 18px;
}

.admin-panel {
    padding: 22px;
}

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

.field-help {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.admin-app-nav,
.admin-mobile-bottom-nav,
.admin-mobile-more-sheet {
    display: none;
}

.admin-upload-preview {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(199, 162, 90, 0.22);
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(228, 199, 132, 0.18), transparent 36%),
        rgba(255, 255, 255, 0.7);
}

.admin-upload-preview img {
    width: 150px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.admin-product-thumb {
    width: 64px;
    height: 78px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(29, 23, 17, 0.10);
    box-shadow: 0 10px 22px rgba(29, 23, 17, 0.10);
}

.checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--muted);
    font-weight: 700;
}

.admin-table-wrap {
    overflow-x: auto;
}

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

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.admin-table th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.admin-order-card,
.admin-lead-card,
.admin-notification-card {
    padding: 16px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    display: grid;
    gap: 12px;
}

.admin-order-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.admin-order-card p,
.admin-lead-card p,
.admin-notification-card p {
    margin: 0;
    color: var(--muted);
}

.admin-notification-card span {
    border-radius: 999px;
    padding: 5px 9px;
    background: rgba(199, 162, 90, 0.14);
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
}

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

.faq-item {
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
    padding: 16px 18px;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 800;
}

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

.faq-item p {
    margin: 14px 0 0;
    color: var(--muted);
}

.size-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.table-card {
    padding: 22px;
    overflow: hidden;
}

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

.table-card th,
.table-card td {
    padding: 12px 10px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
}

.table-card th {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-card {
    display: grid;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-method p,
.contact-method strong {
    margin: 0;
}

.contact-method p {
    color: var(--muted);
}

.product-grid .product-card,
.collection-grid .collection-card,
.lookbook-grid .lookbook-card {
    animation: fadeInUp 0.7s ease both;
}

.hero-editorial-card,
.product-card,
.collection-card,
.lookbook-card,
.note-card,
.info-panel,
.summary-panel,
.copy-block,
.profile-card,
.admin-panel,
.admin-login-card,
.table-card,
.cart-item,
.confirmation-card {
    animation: fadeInUp 0.6s ease both;
}

.lookbook-card {
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
}

.lookbook-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

/* Overlay-style lookbook cards (hero image with text overlay) */
.lookbook-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lookbook-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    min-height: 360px;
    background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.02));
}

.lookbook-card-link {
    display: block;
    height: 100%;
    color: inherit;
}

.lookbook-card-image {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    display: block;
    position: relative;
}

.lookbook-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 36%, rgba(0,0,0,0.48) 100%);
    color: #fff;
}

.lookbook-card-eyebrow {
    margin: 0 0 6px 0;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
}

.lookbook-card-title {
    margin: 0 0 8px 0;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 1.02;
    color: #fff;
}

.lookbook-collection-count {
    display: inline-block;
    margin-top: 8px;
    font-weight: 800;
    color: rgba(255,255,255,0.86);
}

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

@media (max-width: 800px) {
    .lookbook-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-copy h1 { font-size: clamp(2rem, 6vw, 3rem); }
}

.lookbook-copy {
    padding: 18px;
    display: grid;
    gap: 12px;
}

.lookbook-copy p {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold-dark);
    font-weight: 800;
    font-size: 0.76rem;
}

.lookbook-copy h3 {
    margin: 0;
    line-height: 1.15;
}

.lookbook-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--gold-dark);
}

.luxury-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
}

.luxury-panel {
    padding: 30px;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: #f7efe5;
}

.luxury-panel p {
    color: rgba(247, 239, 229, 0.78);
}

.luxury-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.luxury-stats .stat-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: #f7efe5;
}

.luxury-stats .stat-card span {
    color: rgba(247, 239, 229, 0.72);
}

.product-actions-detail .btn-outline {
    background: rgba(255, 255, 255, 0.88);
}

.hero-visual-lookbook img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 36px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.page-admin .site-main {
    padding-bottom: 100px;
}

.page-admin .admin-shell {
    position: relative;
}

.page-admin .admin-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(199, 162, 90, 0.10), transparent 30%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.2), transparent 30%);
    pointer-events: none;
}

.page-admin .admin-shell > *:not(.admin-app-nav):not(.admin-mobile-bottom-nav):not(.admin-mobile-more-sheet):not(.admin-desktop-rail) {
    position: relative;
    z-index: 1;
}

.page-admin {
    background: linear-gradient(180deg, #f3eadf 0%, #efe4d4 100%);
}

.page-admin .site-header,
.page-admin .site-footer,
.page-admin .whatsapp-fab {
    display: none !important;
}

.page-admin .site-main {
    min-height: 100vh;
}

.page-not-found .empty-state {
    margin-top: 40px;
}

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

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 1180px) {
    .page-account .site-main,
    .page-admin .site-main {
        padding-bottom: 112px;
    }

    /* Account mobile shell + bottom nav replace storefront header/footer */
    body.page-account .announcement-bar,
    body.page-account .site-header,
    body.page-account .site-footer {
        display: none !important;
    }

    .desktop-nav {
        display: none;
    }

    .header-row {
        grid-template-columns: 170px minmax(0, 1fr);
        min-height: 72px;
    }

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

    .menu-toggle {
        display: inline-flex;
    }

    .btn-desktop-only {
        display: none;
    }

    .hero-grid,
    .hero-small-grid,
    .copy-layout,
    .product-detail-grid,
    .cart-layout,
    .checkout-layout,
    .account-layout,
    .luxury-grid,
    .split-panel-grid {
        grid-template-columns: 1fr;
    }

    .category-strip {
        border-top: 1px solid rgba(29, 23, 17, 0.05);
    }

    .dropdown-panel {
        width: min(540px, 90vw);
    }

    .mobile-overlay,
    .mobile-drawer {
        display: block;
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        z-index: 41;
        background: rgba(29, 23, 17, 0.58);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease;
    }

    .mobile-drawer {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 42;
        width: min(420px, 90vw);
        transform: translateX(102%);
        transition: transform 0.24s ease;
        background: linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(247, 241, 232, 0.99));
        border-left: 1px solid rgba(29, 23, 17, 0.08);
        box-shadow: -26px 0 60px rgba(29, 23, 17, 0.16);
    }

    body.menu-open .mobile-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    body.menu-open .mobile-drawer {
        transform: translateX(0);
    }

    .mobile-drawer-inner {
        display: grid;
        gap: 18px;
        height: 100%;
        overflow: auto;
        padding: 20px;
    }

    .mobile-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(29, 23, 17, 0.08);
        margin-bottom: 18px;
    }

    .drawer-brand {
        display: inline-flex;
        align-items: center;
        min-width: 0;
        flex: 1 1 auto;
    }

    .drawer-brand-logo {
        display: block;
        height: 40px;
        width: auto;
        max-width: min(180px, 52vw);
        object-fit: contain;
    }

    .drawer-close {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.76);
        cursor: pointer;
    }

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

    .mobile-nav-link,
    .mobile-category-item {
        display: grid;
        gap: 4px;
        padding: 14px 16px;
        border-radius: 18px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.74);
    }

    .mobile-nav-link {
        font-weight: 700;
    }

    .mobile-category-list {
        display: grid;
        gap: 10px;
    }

    .mobile-category-item span {
        font-weight: 700;
    }

    .mobile-category-item small {
        color: var(--muted);
    }

    .mobile-app-bar {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: max(12px, env(safe-area-inset-bottom));
        z-index: 44;
        display: grid;
        gap: 4px;
        padding: 10px 12px;
        border: 1px solid rgba(29, 23, 17, 0.12);
        border-radius: 24px;
        background: rgba(255, 250, 244, 0.94);
        box-shadow: 0 20px 44px rgba(29, 23, 17, 0.18);
        backdrop-filter: blur(18px);
    }

    .mobile-app-bar-account {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .mobile-app-bar-account-signed-in {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    body.page-account .account-mobile-more-sheet {
        position: fixed;
        inset: 0;
        z-index: 43;
        display: block;
        pointer-events: none;
    }

    body.page-account .account-mobile-more-sheet.is-open {
        pointer-events: auto;
    }

    body.page-account .account-mobile-more-overlay {
        position: absolute;
        inset: 0;
        border: 0;
        background: rgba(29, 23, 17, 0.52);
        opacity: 0;
        transition: opacity 0.22s ease;
        cursor: pointer;
    }

    body.page-account .account-mobile-more-sheet.is-open .account-mobile-more-overlay {
        opacity: 1;
    }

    body.page-account .account-mobile-more-panel {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        gap: 14px;
        max-height: min(86dvh, 720px);
        overflow-y: auto;
        padding: 18px 18px calc(96px + env(safe-area-inset-bottom));
        border-radius: 28px 28px 0 0;
        background: rgba(255, 250, 244, 0.98);
        box-shadow: 0 -24px 60px rgba(29, 23, 17, 0.18);
        transform: translateY(102%);
        transition: transform 0.26s ease;
    }

    body.page-account .account-mobile-more-sheet.is-open .account-mobile-more-panel {
        transform: translateY(0);
    }

    body.page-account .account-mobile-more-head {
        display: flex;
        align-items: start;
        justify-content: space-between;
        gap: 12px;
    }

    body.page-account .account-mobile-more-head strong {
        display: block;
        font-size: 1.05rem;
    }

    body.page-account .account-mobile-more-head p {
        margin: 4px 0 0;
        color: var(--muted);
        font-size: 0.82rem;
    }

    body.page-account .account-mobile-more-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        padding: 0;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.82);
        cursor: pointer;
    }

    body.page-account .account-mobile-more-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    body.page-account .account-mobile-more-tile {
        display: grid;
        gap: 8px;
        justify-items: center;
        min-height: 88px;
        padding: 12px 8px;
        border-radius: 14px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: var(--shadow-soft);
        color: var(--ink);
        font-size: 0.68rem;
        font-weight: 800;
        text-align: center;
        text-decoration: none;
    }

    body.page-account .account-mobile-more-tile-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: rgba(199, 162, 90, 0.14);
        color: var(--gold-dark);
    }

    body.page-account .account-mobile-more-tile.is-active {
        border-color: rgba(199, 162, 90, 0.42);
        background: rgba(199, 162, 90, 0.12);
        color: var(--gold-dark);
    }

    body.page-account .account-mobile-more-footer {
        display: grid;
        gap: 10px;
        padding-top: 4px;
        border-top: 1px solid var(--line);
    }

    body.page-account .account-mobile-more-home {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 42px;
        border-radius: 12px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.9);
        color: var(--ink);
        font-size: 0.82rem;
        font-weight: 800;
        text-decoration: none;
    }

    body.page-account .account-mobile-more-logout {
        margin: 0;
    }

    body.page-account .account-mobile-more-logout .btn {
        width: 100%;
        justify-content: center;
    }

    body.page-account.account-more-open {
        overflow: hidden;
    }

    .page-account .whatsapp-fab {
        bottom: calc(92px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 900px) {
    .collection-grid,
    .product-grid,
    .lookbook-grid,
    .footer-grid,
    .admin-panels,
    .size-guide-grid,
    .confirmation-grid,
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-editorial-card img {
        height: 460px;
    }

    .hero-stack {
        grid-template-columns: 1fr;
    }

    .product-actions-detail,
    .form-grid-3 {
        grid-template-columns: 1fr;
    }

    .product-gallery-main img {
        height: 520px;
    }

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

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

    .admin-upload-preview {
        grid-template-columns: 1fr;
    }

    .admin-upload-preview img {
        width: 100%;
        max-height: 320px;
    }
}

@media (max-width: 760px) {
    .header-row {
        grid-template-columns: 150px minmax(0, 1fr);
        padding: 14px 0;
    }

    .announcement-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .announcement-copy {
        grid-column: auto;
        flex-wrap: wrap;
    }

    .announcement-socials {
        display: none;
    }

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

    .cart-item img {
        width: 100%;
        height: 260px;
    }

    .cart-item-head,
    .summary-item {
        flex-direction: column;
        align-items: start;
    }

    .summary-panel {
        position: static;
    }

    .hero-copy h1,
    .hero-small-grid h1,
    .product-summary h1 {
        max-width: none;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding-top: 64px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-copyright,
    .footer-payment-logos,
    .footer-legal-links {
        justify-self: center;
        justify-content: center;
    }

    .site-footer,
    .footer-brand,
    .footer-brand-lockup,
    .footer-column {
        justify-items: center;
        text-align: center;
    }

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

    .footer-brand-copy {
        margin-inline: auto;
    }

    .page-account .whatsapp-fab {
        right: 14px;
        bottom: calc(94px + env(safe-area-inset-bottom));
    }

    .shop-search {
        flex-direction: column;
    }

    .shop-sort {
        flex: 1 1 auto;
    }

    .admin-topbar {
        align-items: start;
        flex-direction: column;
    }

    .admin-shell {
        padding-top: 0;
        padding-bottom: 150px;
    }

    .account-app-section {
        padding-top: 34px;
    }

    .account-app-summary {
        gap: 10px;
    }

    .account-stat-card {
        min-height: 94px;
        padding: 15px;
        border-radius: 22px;
    }

    .account-app-layout,
    .side-stack {
        gap: 14px;
    }

    .account-app-card,
    .auth-card,
    .profile-card {
        border-radius: 26px;
    }

    .page-account .page-hero {
        padding-bottom: 38px;
    }

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

    .account-saved-actions {
        flex-direction: column;
    }

    .account-order-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .account-order-side {
        justify-items: stretch;
        width: 100%;
    }

    .account-order-total {
        justify-self: start;
    }

    .account-order-actions {
        flex-direction: column;
        justify-content: stretch;
    }

    .account-order-actions .btn,
    .account-order-actions form,
    .account-order-reorder {
        width: 100%;
    }

    .account-order-actions form .btn,
    .account-order-reorder .btn {
        width: 100%;
    }

    .account-b2b-panel .form-grid {
        grid-template-columns: 1fr;
    }

    .page-admin .admin-topbar {
        padding: 16px;
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.68);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-soft);
    }

    .page-admin .admin-topbar h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    #admin-dashboard,
    #admin-settings,
    #admin-products,
    #admin-orders,
    #admin-leads,
    #admin-notifications,
    #admin-staff {
        scroll-margin-top: 24px;
    }

    .admin-table-wrap {
        margin: 0 -10px;
        padding: 0 10px 8px;
        -webkit-overflow-scrolling: touch;
    }

    .admin-table {
        min-width: 720px;
    }

    .footer-grid {
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .footer-payment-logos {
        flex-wrap: nowrap;
        gap: 4px;
        max-width: 100%;
    }

    .payment-logo,
    body.page-cart .cart-payment-acceptance .payment-logo {
        height: 24px;
        min-width: 34px;
        padding: 0 4px;
    }

    .payment-logo img {
        height: 12px;
        max-width: 56px;
    }

    .payment-logo-mastercard img {
        height: 14px;
    }

    .payment-logo-paystack,
    body.page-cart .cart-payment-acceptance .payment-logo-paystack {
        min-width: 48px;
    }

    .payment-logo-paystack img {
        max-width: 64px;
    }
}

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

    .section {
        padding: 66px 0;
    }

    .section-tight {
        padding: 40px 0;
    }

    .hero-copy h1 {
        font-size: clamp(2.6rem, 11vw, 4.1rem);
    }

    .hero-editorial-card img,
    .lookbook-card img {
        height: 360px;
    }

    .product-media img {
        height: 270px;
    }

    .product-gallery-main img {
        height: 420px;
    }

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

    .page-hero {
        padding-top: 42px;
    }

    .hero-actions,
    .product-actions,
    .summary-actions {
        grid-template-columns: 1fr;
    }

    .mobile-app-bar {
        left: 8px;
        right: 8px;
        padding: 9px 8px;
        border-radius: 20px;
    }

    .mobile-app-link {
        font-size: 0.66rem;
    }

    .brand-logo-image {
        width: min(38vw, 138px);
        max-height: 50px;
    }

    .header-row {
        gap: 12px;
    }

    .header-actions {
        gap: 6px;
    }

    .action-icon,
    .menu-toggle {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }
}

/* Reference-led UI pass: luxury commerce density, backend app feel. */
.announcement-bar {
    background: #070706;
}

.announcement-inner {
    min-height: 34px;
    justify-content: center;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.announcement-link {
    display: none;
}

.site-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: rgba(29, 23, 17, 0.08);
    box-shadow: 0 8px 22px rgba(29, 23, 17, 0.035);
}

.header-row {
    min-height: 72px;
    padding: 10px 0;
}

.brand-logo-image {
    width: clamp(108px, 10vw, 148px);
    max-height: 48px;
}

.desktop-nav {
    gap: 20px;
}

.nav-link {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(29, 23, 17, 0.82);
}

.nav-link-sale {
    color: var(--gold-dark);
}

.action-icon,
.menu-toggle {
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.category-strip {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
}

.category-row {
    overflow: visible;
    padding: 8px 0 12px;
    justify-content: center;
}

.category-button {
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 7px 8px;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dropdown-panel {
    left: 50%;
    width: min(860px, calc(100vw - 36px));
    transform: translate(-50%, 10px);
}

.category-group:hover .dropdown-panel,
.category-group.is-open .dropdown-panel {
    transform: translate(-50%, 0);
}

.dropdown-panel-inner {
    grid-template-columns: 1fr 1fr 260px;
    align-items: stretch;
    border-radius: 16px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.99);
}

.dropdown-panel-copy h3 {
    font-size: 1.7rem;
}

.dropdown-panel-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dropdown-link,
.dropdown-pill {
    border-radius: 0;
    border: 0;
    background: transparent;
    padding: 5px 0;
}

.dropdown-pill {
    color: var(--gold-dark);
}

.dropdown-feature {
    display: grid;
    align-content: end;
    min-height: 230px;
    overflow: hidden;
    border-radius: 10px;
    background: #eadcc9;
    position: relative;
    padding: 18px;
}

.dropdown-feature img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(29, 23, 17, 0.52));
}

.dropdown-feature span,
.dropdown-feature strong {
    position: relative;
    z-index: 1;
    color: #fff8ee;
}

.dropdown-feature span {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.dropdown-feature strong {
    font-family: var(--font-heading);
    font-size: 1.6rem;
}

.hero-section {
    padding: 0;
    background:
        linear-gradient(90deg, rgba(247, 241, 232, 0.98) 0%, rgba(245, 235, 221, 0.9) 46%, rgba(230, 211, 184, 0.72) 100%);
    border-bottom: 1px solid rgba(29, 23, 17, 0.08);
}

.hero-grid {
    min-height: min(720px, calc(100vh - 120px));
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 36px;
}

.hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(3.2rem, 7vw, 6.4rem);
}

.hero-copy h1 em {
    color: var(--gold-dark);
}

.hero-copy > p:not(.eyebrow),
.hero-copy .hero-copy {
    font-size: 1rem;
}

.hero-pills,
.hero-metrics {
    display: none;
}

.hero-actions .btn {
    border-radius: 0;
    padding-inline: 22px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.hero-editorial-card {
    border-radius: 0;
    border: 0;
    box-shadow: none;
}

.hero-editorial-card img {
    height: min(720px, calc(100vh - 120px));
}

.hero-stack {
    display: none;
}

.trust-strip {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(29, 23, 17, 0.08);
}

/* Trust strip is the last storefront band before the footer — drop the
   default main padding (80px) and footer margin (34px) that stacked into
   a large cream void (~114px) between them. */
.site-main:has(.trust-strip) {
    padding-bottom: 0;
}

body:not(.page-admin):has(.trust-strip) .site-footer {
    margin-top: 0;
}

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

.trust-item {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    border-right: 1px solid rgba(29, 23, 17, 0.08);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item .icon {
    color: var(--gold-dark);
}

.trust-item strong,
.trust-item span {
    display: block;
}

.trust-item strong {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.collection-card {
    overflow: hidden;
    padding: 0;
    border-radius: 10px;
}

.collection-card-media {
    height: 230px;
    overflow: hidden;
}

.collection-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.collection-card:hover .collection-card-media img {
    transform: scale(1.045);
}

.collection-card-copy {
    padding: 18px;
    display: grid;
    gap: 10px;
}

.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    position: relative;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 34px rgba(29, 23, 17, 0.06);
}

.product-media img {
    height: 380px;
    background: #eadcc9;
}

.product-badge {
    left: 12px;
    top: 12px;
    border-radius: 0;
    padding: 5px 8px;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--gold);
}

.wishlist-form {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    margin: 0;
}

.wishlist-button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(29, 23, 17, 0.12);
    background: rgba(255, 255, 255, 0.92);
    color: rgba(29, 23, 17, 0.58);
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 22px rgba(29, 23, 17, 0.08);
}

.wishlist-button .icon {
    width: 18px;
    height: 18px;
}

.wishlist-button.is-saved,
.wishlist-button:hover {
    color: #8d4e2d;
}

.product-body {
    padding: 14px 0 0;
    gap: 10px;
}

.product-card-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: start;
    padding: 0 4px;
}

.product-body h3 {
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.product-card-price {
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: 1rem;
}

.product-meta {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
}

.product-subtitle {
    display: none;
}

.product-swatch-row {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 4px;
}

.product-swatch-row span,
.filter-swatches span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--swatch);
    border: 1px solid rgba(29, 23, 17, 0.14);
}

.product-swatch-row em {
    margin-left: auto;
    color: #1f7e3a;
    font-style: normal;
    font-size: 0.76rem;
    font-weight: 800;
}

.product-quick-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 4px;
}

.product-quick-actions .btn {
    border-radius: 0;
    padding: 11px 10px;
    font-size: 0.74rem;
    box-shadow: none;
}

.shop-results-section {
    padding: 26px 0 72px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 285px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.shop-filter-panel {
    position: sticky;
    top: 126px;
    padding: 0 28px 0 0;
    border-radius: 0;
    border: 0;
    border-right: 1px solid rgba(29, 23, 17, 0.12);
    background: transparent;
    box-shadow: none;
}

.shop-listing-intro {
    margin-bottom: 28px;
}

.shop-listing-intro h1 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.shop-listing-intro p {
    max-width: 25ch;
    margin: 14px 0 0;
    color: rgba(29, 23, 17, 0.66);
    font-size: 0.93rem;
    line-height: 1.55;
}

.filter-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.filter-panel-head strong,
.filter-group h3 {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
}

.filter-panel-head a {
    color: var(--gold-dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.filter-panel-head .filter-close-mobile {
    display: none;
}

.filter-group {
    display: grid;
    gap: 8px;
    padding: 18px 0;
    border-top: 1px solid rgba(29, 23, 17, 0.10);
}

.filter-group:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.filter-group p {
    color: var(--muted);
    font-size: 0.9rem;
}

.shop-filter-panel .filter-chip {
    justify-content: space-between;
    border-radius: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
    padding: 8px 0;
}

.filter-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

.page-shop {
    --container: min(1540px, calc(100% - 80px));
}

.page-shop .site-main {
    background:
        radial-gradient(circle at 8% 0%, rgba(199, 162, 90, 0.05), transparent 28%),
        linear-gradient(180deg, #fffaf4 0%, #fbf8f2 52%, #f8efe4 100%);
}

.shop-page-hero {
    padding: 28px 0 0;
    border-bottom: 0;
    background: transparent;
}

.shop-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(29, 23, 17, 0.62);
    font-size: 0.78rem;
    font-weight: 700;
}

.shop-breadcrumb a {
    color: inherit;
}

.shop-breadcrumb strong {
    color: var(--ink);
}

.shop-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 24px;
    align-items: end;
    margin-top: 26px;
}

.shop-title-copy h1 {
    margin: 0;
    font-size: clamp(2.05rem, 4.6vw, 4.2rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.shop-title-copy p:not(.eyebrow) {
    max-width: 55ch;
    margin: 12px 0 0;
    color: var(--muted);
}

.shop-search-premium {
    min-height: 54px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    gap: 0;
    padding: 5px;
    border: 1px solid rgba(29, 23, 17, 0.12);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(29, 23, 17, 0.08);
}

.shop-search-premium label {
    min-width: 0;
}

.shop-search-premium input[type="search"] {
    height: 100%;
    border: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
}

.shop-search-premium input[type="search"]:focus {
    box-shadow: none;
}

.shop-search-premium button {
    border: 0;
    border-radius: 50%;
    background: #050505;
    color: #fffaf3;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 0.18s ease, background 0.18s ease;
}

.shop-search-premium button:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.shop-category-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    overflow-x: auto;
    scrollbar-width: none;
}

.shop-category-strip::-webkit-scrollbar {
    display: none;
}

.shop-category-strip a {
    flex: 0 0 auto;
    padding: 10px 16px;
    border: 1px solid rgba(29, 23, 17, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.shop-category-strip a:hover,
.shop-category-strip a.is-active {
    border-color: rgba(199, 162, 90, 0.42);
    background: #050505;
    color: #fffaf3;
}

.shop-results-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding: 0;
    border-bottom: 0;
}

.shop-results-top > div {
    display: grid;
    gap: 4px;
}

.shop-results-top strong {
    font-size: 0.92rem;
    font-weight: 700;
}

.shop-results-top span {
    color: var(--muted);
    font-size: 0.86rem;
}

.shop-filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: var(--gold-dark);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
}

.shop-sort {
    flex: 0 0 218px;
}

.shop-sort label {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.shop-sort select {
    min-height: 44px;
    border-radius: 6px;
    background: #fff;
    font-weight: 800;
}

.active-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 18px;
}

.active-filter-row a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 7px 11px;
    border: 1px solid rgba(29, 23, 17, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 850;
}

.active-filter-row .clear-filters {
    color: var(--gold-dark);
    background: transparent;
}

.filter-check {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    color: rgba(29, 23, 17, 0.74);
    font-size: 0.82rem;
    font-weight: 760;
}

.filter-check em {
    color: rgba(29, 23, 17, 0.42);
    font-style: normal;
    font-size: 0.74rem;
}

.filter-square {
    width: 13px;
    height: 13px;
    border: 1px solid rgba(29, 23, 17, 0.24);
    border-radius: 3px;
    background: #fff;
    box-shadow: inset 0 0 0 2px #fff;
}

.filter-check:hover,
.filter-check.is-active {
    color: var(--gold-dark);
}

.filter-check.is-active .filter-square {
    border-color: var(--gold-dark);
    background: var(--gold-dark);
}

.filter-option-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-option-grid a {
    min-width: auto;
    min-height: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 3px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(29, 23, 17, 0.74);
    font-size: 0.82rem;
    font-weight: 760;
}

.filter-option-grid a::before {
    content: "";
    width: 13px;
    height: 13px;
    border: 1px solid rgba(29, 23, 17, 0.24);
    border-radius: 3px;
    background: #fff;
    box-shadow: inset 0 0 0 2px #fff;
}

.filter-option-grid a:hover,
.filter-option-grid a.is-active {
    background: transparent;
    color: var(--gold-dark);
}

.filter-option-grid a.is-active::before {
    border-color: var(--gold-dark);
    background: var(--gold-dark);
}

.filter-swatches a {
    width: 25px;
    height: 25px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid transparent;
}

.filter-swatches a span {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--swatch);
    border: 1px solid rgba(29, 23, 17, 0.16);
}

.filter-swatches a:hover,
.filter-swatches a.is-active {
    border-color: var(--gold-dark);
}

.page-shop .product-grid-shop {
    gap: 24px 18px;
}

.page-shop .product-card {
    border-radius: 6px;
    border-color: rgba(29, 23, 17, 0.08);
    background: #fff;
    box-shadow: none;
}

.page-shop .product-media img {
    height: clamp(230px, 17vw, 315px);
    background: #eadcc9;
}

.page-shop .product-badge {
    left: 10px;
    top: 10px;
    background: var(--gold);
    color: #fffaf3;
}

.page-shop .product-badge:not(.product-badge-new) {
    display: none;
}

.page-shop .product-body {
    padding: 12px 12px 16px;
    gap: 8px;
}

.page-shop .product-card-head {
    display: block;
    padding: 0;
}

.page-shop .product-meta,
.page-shop .product-subtitle,
.page-shop .product-quick-actions {
    display: none;
}

.page-shop .product-body h3 {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.page-shop .product-card-price {
    display: block;
    margin-top: 3px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 900;
}

.page-shop .product-swatch-row {
    display: flex;
    margin-top: 8px;
    padding: 0;
}

.page-shop .product-swatch-row em {
    display: none;
}

.filter-apply-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 12px;
    border-radius: 4px;
    background: #050505;
    color: #fffaf3;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.filter-apply-button:hover {
    background: var(--gold-dark);
    color: #fffaf3;
}

.shop-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.shop-pagination a,
.shop-pagination span {
    min-width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(29, 23, 17, 0.10);
    border-radius: 5px;
    background: #fff;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 900;
}

.shop-pagination a:hover,
.shop-pagination a.is-active {
    border-color: var(--gold);
    background: rgba(199, 162, 90, 0.14);
    color: var(--gold-dark);
}

.shop-pagination .is-disabled {
    color: rgba(29, 23, 17, 0.28);
    background: rgba(255, 255, 255, 0.48);
}

.product-gallery {
    grid-template-columns: 86px minmax(0, 1fr);
    grid-template-areas: "thumbs main";
    align-items: start;
}

.product-gallery-main {
    grid-area: main;
}

.product-gallery-thumbs {
    grid-area: thumbs;
    grid-template-columns: 1fr;
}

.product-gallery-thumbs img {
    height: 108px;
    border-radius: 8px;
}

.product-gallery-main,
.product-gallery-thumbs img,
.summary-panel,
.cart-item,
.checkout-note {
    border-radius: 12px;
}

.product-gallery-main img {
    height: 760px;
}

.product-summary {
    padding: 18px 0 0 12px;
}

.product-summary h1 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.product-actions-detail .btn {
    border-radius: 0;
}

.cart-layout,
.checkout-layout {
    grid-template-columns: minmax(0, 1fr) 430px;
}

.summary-panel {
    background: rgba(255, 255, 255, 0.94);
}

.account-dashboard-shell {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.account-dashboard-nav {
    position: sticky;
    top: 150px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
}

.account-dashboard-nav strong {
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
}

.account-dashboard-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 12px;
    color: var(--muted);
    font-weight: 800;
}

.account-dashboard-nav a:hover,
.account-dashboard-nav a.is-active {
    color: var(--gold-dark);
    background: rgba(199, 162, 90, 0.12);
}

.account-app-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
}

/* Account page enhancements */
.account-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #241a0f;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.account-hero-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.account-b2b-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(199, 162, 90, 0.14);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.account-dashboard-grid {
    display: grid;
    gap: 16px;
}

.account-dashboard-panel {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 250, 244, 0.96);
    box-shadow: var(--shadow-soft);
}

.account-dashboard-panel h3 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.03em;
    font-size: 1.1rem;
    color: var(--ink);
}

.account-empty-state {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 28px 20px;
    text-align: center;
    color: var(--muted);
}

.account-empty-state .icon {
    color: var(--gold-light);
    width: 40px;
    height: 40px;
}

.account-order-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 18px;
    align-items: start;
    min-width: 0;
    max-width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(29, 23, 17, 0.10);
    border-radius: 14px;
    background: #fffdf9;
    box-sizing: border-box;
    overflow: hidden;
}

.account-order-main {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.account-order-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px 12px;
    min-width: 0;
}

.account-order-id,
.account-order-head strong,
.account-order-tracking-id {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
    min-width: 0;
    flex: 1 1 auto;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.25;
}

.account-order-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 0 1 auto;
    max-width: 100%;
    min-width: 0;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
    box-sizing: border-box;
}

.account-order-status--delivered {
    background: rgba(15, 122, 77, 0.12);
    color: #0d5e3c;
}

.account-order-status--processing {
    background: rgba(199, 162, 90, 0.14);
    color: var(--gold-dark);
}

.account-order-status--pending {
    background: rgba(102, 112, 100, 0.12);
    color: #4a5548;
}

.account-order-status--cancelled {
    background: rgba(180, 60, 60, 0.10);
    color: #8b3030;
}

.account-order-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 0;
    min-width: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.account-order-meta > span:not(:last-child)::after {
    content: "·";
    margin: 0 8px;
    color: rgba(29, 23, 17, 0.28);
}

.account-order-side {
    display: grid;
    gap: 10px;
    justify-items: end;
    align-content: start;
    min-width: 0;
    max-width: 100%;
}

.account-order-total {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.account-order-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    min-width: 0;
    max-width: 100%;
}

.account-order-actions .btn,
.account-order-reorder,
.account-order-actions form {
    min-width: 0;
    max-width: 100%;
}

.account-order-reorder {
    display: inline-flex;
    margin: 0;
}

.account-order-tracking {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    min-width: 0;
    max-width: 100%;
    margin-top: 2px;
    padding: 8px 12px;
    background: #f8f6f2;
    border-radius: 8px;
    font-size: 0.82rem;
    color: var(--muted);
}

.account-order-tracking strong,
.account-order-tracking-id {
    font-size: 0.86rem;
}

.account-saved-card {
    position: relative;
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
}

.account-saved-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 16px;
}

.account-saved-card strong {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--ink);
    font-size: 0.92rem;
}

.account-saved-card span {
    color: var(--muted);
    font-size: 0.86rem;
}

.account-saved-actions {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.account-password-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 250, 244, 0.96);
    box-shadow: var(--shadow-soft);
}

.account-password-card h3 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--ink);
}

.account-dashboard-nav .nav-divider {
    margin: 10px 0 6px;
    border: none;
    border-top: 1px solid var(--line);
    opacity: 0.5;
}

.account-dashboard-nav .nav-logout-form {
    margin-top: auto;
    padding-top: 10px;
}

.account-dashboard-nav .btn-logout {
    width: 100%;
    justify-content: center;
    gap: 8px;
    color: var(--muted);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.5);
}

.account-dashboard-nav .btn-logout:hover {
    background: rgba(180, 60, 60, 0.08);
    color: #8b3030;
    border-color: rgba(180, 60, 60, 0.2);
}

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

.page-admin {
    background: #f5f3ef;
}

.admin-desktop-rail {
    display: none;
}

@media (min-width: 1060px) {
    .page-admin .admin-shell-dashboard {
        padding-left: 244px;
    }

    .admin-desktop-rail {
        position: fixed;
        left: 18px;
        top: 18px;
        bottom: 18px;
        z-index: 50;
        width: 220px;
        display: grid;
        align-content: start;
        gap: 8px;
        padding: 18px;
        border-radius: 18px;
        background: linear-gradient(180deg, #0d0d0c, #171410);
        color: rgba(255, 248, 238, 0.82);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    }

    .admin-rail-brand {
        display: block;
        margin-bottom: 14px;
        padding: 10px 8px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .admin-rail-brand-logo {
        height: 40px;
        width: auto;
        max-width: 160px;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

    .admin-rail-section-label {
        margin: 14px 0 4px;
        padding: 0 12px;
        color: rgba(199, 162, 90, 0.6);
        font-size: 0.62rem;
        font-weight: 900;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .admin-rail-section-label:first-of-type {
        margin-top: 4px;
    }

    .admin-desktop-rail a,
    .admin-desktop-rail button {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding: 11px 12px;
        border-radius: 12px;
        border: 0;
        background: transparent;
        color: inherit;
        font: inherit;
        font-size: 0.9rem;
        font-weight: 800;
        cursor: pointer;
    }

    .admin-desktop-rail a:hover,
    .admin-desktop-rail a.is-active,
    .admin-desktop-rail button:hover {
        background: rgba(199, 162, 90, 0.16);
        color: #fff8ee;
    }

    .admin-desktop-rail form {
        margin: 20px 0 0;
    }

    .admin-desktop-rail + .admin-topbar form {
        display: none;
    }
}

@media (max-width: 1180px) {
    .category-row {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .dropdown-panel {
        display: none;
    }

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

    .shop-layout,
    .account-dashboard-shell {
        grid-template-columns: 1fr;
    }

    .shop-filter-panel,
    .account-dashboard-nav {
        position: static;
    }

    .shop-filter-panel {
        padding: 0 0 24px;
        border-right: 0;
        border-bottom: 1px solid rgba(29, 23, 17, 0.12);
    }

    .account-dashboard-nav {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        overflow-x: auto;
    }

    .account-dashboard-nav .nav-divider,
    .account-dashboard-nav .nav-logout-form {
        display: none;
    }

    .account-app-layout {
        grid-template-columns: 1fr;
    }

    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .shop-title-row {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .shop-search-premium {
        max-width: 620px;
    }

    .shop-filter-toggle {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 14px;
        border: 1px solid rgba(29, 23, 17, 0.14);
        border-radius: 5px;
        background: #fff;
        color: #050505;
        font-size: 0.76rem;
        font-weight: 900;
        letter-spacing: 0.04em;
        text-decoration: none;
    }

    .shop-filter-panel {
        scroll-margin-top: 120px;
    }

    .filter-panel-head .filter-close-mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        margin-left: auto;
        border: 1px solid rgba(29, 23, 17, 0.14);
        border-radius: 5px;
        background: #fff;
        color: #050505;
    }

    .filter-panel-head {
        flex-wrap: wrap;
        gap: 10px;
    }

    .shop-listing-intro {
        margin-bottom: 16px;
    }

    .shop-listing-intro h1 {
        font-size: 1.3rem;
    }

    .shop-listing-intro p {
        font-size: 0.86rem;
    }

    .filter-group {
        padding: 14px 0;
    }

    .filter-apply-button {
        display: block;
        width: 100%;
        margin-top: 16px;
        padding: 12px;
        text-align: center;
        border: 1px solid rgba(29, 23, 17, 0.14);
        border-radius: 5px;
        background: #050505;
        color: #d9b76d;
        font-size: 0.8rem;
        font-weight: 900;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        text-decoration: none;
    }
}

@media (max-width: 760px) {
    .announcement-inner {
        text-align: center;
        letter-spacing: 0.06em;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 34px 0 0;
    }

    .hero-editorial-card img {
        height: 430px;
    }

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

    .trust-item {
        border-bottom: 1px solid rgba(29, 23, 17, 0.08);
    }

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

    .product-media img {
        height: clamp(200px, 55vw, 280px);
    }

    .shop-filter-panel {
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 0;
    }

    .shop-filter-panel:target {
        max-height: 2000px;
        padding: 16px 0 20px;
        border-bottom: 1px solid rgba(29, 23, 17, 0.12);
    }

    .shop-page-hero {
        padding-top: 22px;
    }

    .shop-title-row {
        gap: 18px;
        margin-top: 20px;
    }

    .shop-title-copy h1 {
        font-size: clamp(2rem, 13vw, 3.15rem);
    }

    .shop-title-copy p:not(.eyebrow) {
        font-size: 0.92rem;
    }

    .shop-search-premium {
        min-height: 50px;
        grid-template-columns: minmax(0, 1fr) 46px;
        border-radius: 18px;
    }

    .shop-search-premium button {
        border-radius: 14px;
    }

    .shop-category-strip {
        padding-bottom: 4px;
    }

    .shop-results-section {
        padding-top: 24px;
    }

    .shop-results-top {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        position: sticky;
        top: 0;
        z-index: 20;
        background: #f7f1e8;
        padding: 12px 0;
        margin: 0 0 16px;
        border-bottom: 1px solid rgba(29, 23, 17, 0.08);
    }

    .shop-results-top > div {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .shop-results-top strong {
        font-size: 0.78rem;
    }

    .shop-sort {
        width: auto;
        flex: 0 0 auto;
        flex-basis: auto;
    }

    .shop-sort label {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .shop-sort span {
        display: none;
    }

    .shop-sort select {
        min-height: 38px;
        padding: 6px 28px 6px 10px;
        font-size: 0.78rem;
    }

    .active-filter-row {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .active-filter-row a {
        flex: 0 0 auto;
    }

    .page-shop .product-media img {
        height: clamp(200px, 55vw, 280px);
    }

    .product-gallery {
        grid-template-columns: 1fr;
        grid-template-areas: "main" "thumbs";
    }

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

    .product-gallery-main img {
        height: 520px;
    }

    .product-summary {
        padding-left: 0;
    }

    .account-dashboard-nav {
        display: none;
    }
}

/* Reference-aligned homepage and footer campaign pass */
.hero-carousel {
    position: relative;
    min-height: min(740px, calc(100vh - 112px));
    overflow: hidden;
    background: #f7efe5;
    border-bottom: 1px solid rgba(29, 23, 17, 0.08);
}

.hero-carousel-track,
.hero-slide,
.hero-carousel .hero-grid {
    min-height: min(740px, calc(100vh - 112px));
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.015);
    transition: opacity 0.7s ease, transform 1.2s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.hero-slide-bg,
.hero-slide-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide-bg {
    object-fit: cover;
    object-position: center;
}

.hero-slide-shade {
    background:
        linear-gradient(90deg, rgba(247, 241, 232, 0.97) 0%, rgba(247, 241, 232, 0.91) 31%, rgba(247, 241, 232, 0.35) 55%, rgba(247, 241, 232, 0.02) 100%),
        linear-gradient(180deg, rgba(255, 250, 244, 0.18), rgba(29, 23, 17, 0.04));
}

.hero-carousel .hero-grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 54px 0 74px;
}

.hero-carousel .hero-copy {
    max-width: 540px;
}

.hero-carousel .hero-copy h1 {
    max-width: 9.6ch;
    font-size: clamp(3.2rem, 7vw, 6.6rem);
    line-height: 0.94;
}

.hero-carousel .hero-copy h1 em {
    display: block;
    color: var(--gold-dark);
    font-style: italic;
    font-weight: 500;
}

.hero-carousel .hero-copy > p:not(.eyebrow),
.hero-carousel .hero-copy .hero-copy {
    max-width: 42ch;
    color: #43372c;
}

.hero-carousel .btn-outline {
    background: rgba(255, 250, 244, 0.65);
    border-color: rgba(141, 107, 49, 0.38);
}

.hero-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(29, 23, 17, 0.1);
    border-radius: 999px;
    background: rgba(255, 250, 244, 0.86);
    color: var(--ink);
    box-shadow: 0 18px 36px rgba(29, 23, 17, 0.1);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.18s ease, background 0.18s ease;
}

.hero-carousel-arrow:hover {
    background: #fffaf4;
    transform: translateY(-50%) scale(1.06);
}

.hero-carousel-prev {
    left: max(16px, calc((100vw - 1200px) / 2 - 62px));
}

.hero-carousel-next {
    right: max(16px, calc((100vw - 1200px) / 2 - 62px));
}

.hero-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 4;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

.hero-carousel-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(29, 23, 17, 0.2);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-carousel-dots button.is-active {
    width: 32px;
    background: var(--gold-dark);
}

.footer-brand-copy {
    max-width: 32ch;
    margin: 18px 0 0;
    color: rgba(247, 239, 229, 0.76);
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.footer-socials a,
.footer-legal-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(247, 239, 229, 0.82);
    font-size: 0.78rem;
    font-weight: 800;
}

.footer-legal-links a:hover {
    color: #fffaf3;
    border-color: rgba(199, 162, 90, 0.36);
}

.footer-socials a {
    width: 30px;
    padding-inline: 0;
}

.footer-socials .icon {
    width: 17px;
    height: 17px;
}

.not-found-card {
    min-height: 440px;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    overflow: hidden;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 28px;
    background: linear-gradient(90deg, #fffaf4, #eadcc8);
    box-shadow: var(--shadow-soft);
}

.not-found-copy {
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 14px;
    padding: clamp(34px, 6vw, 72px);
}

.not-found-copy h1 {
    margin: 0;
    font-size: clamp(4rem, 11vw, 9rem);
    line-height: 0.9;
}

.not-found-copy p:not(.eyebrow) {
    max-width: 34ch;
    color: var(--muted);
}

.not-found-card img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 900px) {
    .hero-carousel,
    .hero-carousel-track,
    .hero-slide,
    .hero-carousel .hero-grid {
        min-height: 660px;
    }

    .hero-slide-bg {
        object-position: 68% center;
    }

    .hero-slide-shade {
        background:
            linear-gradient(180deg, rgba(247, 241, 232, 0.94) 0%, rgba(247, 241, 232, 0.76) 48%, rgba(247, 241, 232, 0.16) 100%),
            linear-gradient(90deg, rgba(247, 241, 232, 0.95), rgba(247, 241, 232, 0.08));
    }

    .hero-carousel .hero-grid {
        align-items: flex-start;
        padding-top: 44px;
    }

    .hero-carousel .hero-copy {
        max-width: 420px;
    }

    .hero-carousel .hero-copy h1 {
        font-size: clamp(2.8rem, 14vw, 4.6rem);
    }

    .hero-carousel-arrow {
        top: auto;
        bottom: 24px;
        transform: none;
    }

    .hero-carousel-arrow:hover {
        transform: scale(1.04);
    }

    .hero-carousel-prev {
        left: 18px;
    }

    .hero-carousel-next {
        right: 18px;
    }

    .not-found-card {
        grid-template-columns: 1fr;
    }

    .not-found-card img {
        min-height: 320px;
        object-position: 68% center;
    }
}

@media (max-width: 620px) {
    .hero-carousel,
    .hero-carousel-track,
    .hero-slide,
    .hero-carousel .hero-grid {
        min-height: 640px;
    }

    .hero-carousel .hero-grid {
        padding-top: 30px;
    }

    .hero-carousel .hero-copy > p:not(.eyebrow),
    .hero-carousel .hero-copy .hero-copy {
        max-width: 32ch;
    }

    .hero-actions {
        gap: 8px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-carousel-dots {
        bottom: 84px;
    }

}

/* Homepage reference match: June 5 mockup */
body.page-home {
    background: #fffaf3;
}

.page-home .site-main {
    padding-bottom: 0;
}

.page-home .announcement-bar {
    background: #050505;
    color: #fffaf3;
    border: 0;
}

.page-home .announcement-inner {
    min-height: 34px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
    align-items: center;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-home .announcement-copy {
    grid-column: 2;
    justify-content: center;
    color: #fffaf3;
}

.announcement-gift {
    color: var(--gold);
}

.announcement-divider {
    color: rgba(255, 250, 243, 0.55);
    margin: 0 6px;
}

.announcement-socials {
    grid-column: 3;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    font-weight: 800;
}

.announcement-socials a {
    color: #fffaf3;
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
}

.announcement-socials .icon {
    width: 16px;
    height: 16px;
}

.page-home .site-header {
    top: 0;
    background: rgba(255, 250, 243, 0.98);
    border-bottom: 1px solid rgba(29, 23, 17, 0.08);
    box-shadow: none;
}

.page-home .header-row {
    min-height: 82px;
    grid-template-columns: 190px minmax(0, 1fr) auto;
}

.page-home .brand-logo-image {
    width: 160px;
    max-height: 58px;
}

.page-home .desktop-nav {
    justify-content: center;
    gap: clamp(18px, 2.4vw, 34px);
}

.page-home .nav-link {
    gap: 4px;
    padding: 8px 0;
    color: #050505;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.page-home .nav-link-sale {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.page-home .header-actions {
    gap: 18px;
}

.page-home .action-icon {
    width: 26px;
    height: 26px;
    border: 0;
    background: transparent;
    color: #050505;
    box-shadow: none;
}

.page-home .action-icon svg,
.page-home .action-icon .icon {
    width: 23px;
    height: 23px;
}

.action-icon-heart {
    font-size: 1.55rem;
    line-height: 1;
}

.action-icon-heart .icon {
    width: 23px;
    height: 23px;
}

.page-home .action-count {
    top: -7px;
    right: -9px;
    min-width: 17px;
    height: 17px;
    border: 0;
    background: var(--gold);
    color: #050505;
    font-size: 0.62rem;
}

.page-home .category-strip {
    display: none;
}

.page-home .hero-carousel,
.page-home .hero-carousel-track,
.page-home .hero-slide,
.page-home .hero-carousel .hero-grid {
    min-height: clamp(430px, 46vw, 560px);
}

.page-home .hero-slide-bg {
    object-position: center top;
}

.page-home .hero-slide-shade {
    background:
        linear-gradient(90deg, rgba(247, 238, 225, 0.92) 0%, rgba(247, 238, 225, 0.78) 34%, rgba(247, 238, 225, 0.1) 58%, rgba(247, 238, 225, 0) 100%),
        linear-gradient(180deg, rgba(255, 250, 243, 0.08), rgba(255, 250, 243, 0.14));
}

.page-home .hero-carousel .hero-grid {
    justify-content: flex-start;
    padding: 42px 0 54px;
}

.page-home .hero-carousel .hero-copy {
    width: min(560px, 52vw);
    text-align: center;
    transform: translateX(34px);
}

.page-home .hero-carousel .eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #050505;
    letter-spacing: 0.34em;
    font-size: 0.86rem;
}

.page-home .hero-carousel .eyebrow::before,
.page-home .hero-carousel .eyebrow::after {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold-dark);
}

.page-home .hero-carousel .hero-copy h1 {
    max-width: none;
    margin-top: 22px;
    font-size: clamp(3.7rem, 6.2vw, 6.15rem);
    line-height: 0.96;
    color: #050505;
}

.page-home .hero-carousel .hero-copy h1 em {
    color: var(--gold-dark);
}

.page-home .hero-carousel .hero-copy > p:not(.eyebrow),
.page-home .hero-carousel .hero-copy .hero-copy {
    max-width: 36ch;
    margin: 18px auto 0;
    color: #141414;
    font-size: 1.18rem;
    line-height: 1.55;
}

.page-home .hero-actions {
    justify-content: center;
    margin-top: 26px;
}

.page-home .hero-actions .btn {
    min-width: 205px;
    min-height: 52px;
    border-radius: 5px;
    font-size: 0.84rem;
}

.page-home .hero-carousel .btn-gold {
    background: #050505;
    color: #fffaf3;
}

.page-home .hero-carousel .btn-outline {
    background: rgba(255, 250, 243, 0.7);
    color: var(--gold-dark);
    border-color: var(--gold-dark);
}

.page-home .hero-carousel-arrow {
    width: 48px;
    height: 48px;
    background: #fffaf3;
    color: #050505;
    font-size: 2.2rem;
}

.page-home .hero-carousel-prev {
    left: 30px;
}

.page-home .hero-carousel-next {
    right: 30px;
}

.page-home .hero-carousel-dots {
    bottom: 38px;
}

.page-home .hero-carousel-dots button {
    width: 11px;
    height: 11px;
    background: rgba(255, 255, 255, 0.9);
}

.page-home .hero-carousel-dots button.is-active {
    width: 11px;
    background: var(--gold-dark);
}

.page-home .trust-strip {
    background: #fffaf3;
}

.page-home .trust-grid {
    border-bottom: 1px solid rgba(29, 23, 17, 0.16);
}

.page-home .trust-item {
    min-height: 82px;
    justify-content: center;
    gap: 18px;
    border-right: 1px solid rgba(29, 23, 17, 0.13);
}

.page-home .trust-item:last-child {
    border-right: 0;
}

.page-home .trust-item .icon {
    color: var(--gold-dark);
    width: 34px;
    height: 34px;
}

.page-home .trust-item strong {
    font-size: 0.85rem;
    text-transform: uppercase;
}

.page-home .trust-item span {
    color: #1d1711;
    font-size: 0.78rem;
}

.home-section {
    padding: 20px 0 0;
}

.home-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 16px;
}

.home-section-head h2,
.home-follow-card h2 {
    margin: 0;
    color: #050505;
    font-size: 1.45rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.home-section-head a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    font-weight: 900;
}

.home-collection-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.home-collection-card {
    position: relative;
    min-height: 235px;
    overflow: hidden;
    border-radius: 7px;
    background: #ead9c4;
}

.home-collection-card img {
    width: 100%;
    height: 100%;
    min-height: 235px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.45s ease;
}

.home-collection-card:hover img {
    transform: scale(1.045);
}

.home-collection-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 20px 14px;
    background: rgba(255, 250, 243, 0.76);
}

.home-collection-copy h3 {
    margin: 0;
    font-size: 1.13rem;
    text-transform: uppercase;
}

.home-collection-copy span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 800;
}

.home-arrival-rail {
    position: relative;
}

.home-arrivals-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.home-product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 8px;
    background: #fffaf3;
}

.home-product-media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #ead9c4;
}

.home-product-media img {
    width: 100%;
    height: 228px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.45s ease;
}

.home-product-card:hover .home-product-media img {
    transform: scale(1.045);
}

.home-product-media span {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 9px;
    border-radius: 3px;
    background: var(--gold);
    color: #fffaf3;
    text-transform: uppercase;
    font-size: 0.66rem;
    font-weight: 900;
}

.home-wishlist-form {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.home-wishlist-form button {
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: #050505;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.home-wishlist-form button.is-saved {
    color: var(--gold-dark);
}

.home-wishlist-form .icon {
    width: 21px;
    height: 21px;
}

.home-product-copy {
    padding: 12px 15px 16px;
}

.home-product-copy h3 {
    margin: 0 0 6px;
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0;
}

.home-product-copy strong {
    display: block;
    color: #050505;
    font-size: 0.94rem;
}

.home-rail-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(29, 23, 17, 0.09);
    border-radius: 999px;
    background: #fffaf3;
    color: #050505;
    font-size: 2rem;
    box-shadow: 0 14px 30px rgba(29, 23, 17, 0.12);
    transform: translateY(-50%);
}

.home-rail-prev {
    left: -18px;
}

.home-rail-next {
    right: -18px;
}

.home-feature-banners {
    padding-top: 18px;
}

.home-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.home-feature-card {
    position: relative;
    min-height: 218px;
    overflow: hidden;
    border-radius: 8px;
    background: #ead9c4;
}

.home-feature-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
}

.home-feature-card-dark::after {
    background: linear-gradient(90deg, rgba(3, 3, 3, 0.95), rgba(3, 3, 3, 0.54) 48%, transparent);
}

.home-feature-card-light::after {
    background: linear-gradient(90deg, rgba(255, 250, 243, 0.95), rgba(255, 250, 243, 0.62) 44%, transparent);
}

.home-feature-card > div {
    position: relative;
    z-index: 2;
    max-width: 300px;
    padding: 42px 42px;
}

.home-feature-card h2 {
    margin: 0 0 12px;
    font-size: 1.7rem;
    text-transform: uppercase;
}

.home-feature-card p {
    margin-bottom: 20px;
}

.home-feature-card a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 900;
}

.home-feature-card-dark {
    color: #fffaf3;
}

.home-feature-card-light {
    color: #050505;
}

.home-help-strip {
    padding: 10px 0 0;
}

.home-help-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 18px 104px;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 8px;
    background: #fbf1e5;
}

.home-help-copy {
    display: flex;
    align-items: center;
    gap: 20px;
}

.home-help-copy > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 2px solid var(--gold);
    border-radius: 999px;
    color: var(--gold-dark);
}

.home-help-copy h2 {
    margin: 0 0 4px;
    font-size: 1.25rem;
    text-transform: uppercase;
}

.home-help-copy p {
    margin: 0;
    font-size: 0.85rem;
}

.btn-black {
    border-radius: 5px;
    background: #050505;
    color: #fffaf3;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.home-follow-strip {
    padding: 10px 0 0;
}

.home-follow-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px 24px;
    align-items: center;
    padding: 14px 18px 18px;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 7px;
    background: #fffaf3;
}

.home-follow-card h2 {
    grid-column: 1 / -1;
    font-size: 1rem;
}

.home-follow-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(86px, 1fr));
    gap: 16px;
}

.home-follow-grid img {
    width: 100%;
    height: 86px;
    border-radius: 5px;
    object-fit: cover;
    object-position: center top;
}

.home-social-row {
    display: flex;
    gap: 28px;
    align-items: center;
    padding: 0 14px;
}

.home-social-row a {
    color: #050505;
    font-weight: 900;
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
}

.home-social-row .icon {
    width: 20px;
    height: 20px;
}

.page-home .site-footer {
    margin-top: 0;
    padding-top: 34px;
    background: #050505;
}

.page-home .footer-grid {
    grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr));
    gap: 38px;
}

.page-home .footer-column h4 {
    color: var(--gold-light);
    text-transform: uppercase;
    font-family: var(--font-body);
    letter-spacing: 0.04em;
    font-size: 0.85rem;
}

.page-home .footer-bottom {
    margin-top: 26px;
}

.page-home .footer-socials a {
    border: 0;
    padding: 0;
}

.page-home .whatsapp-fab {
    width: 64px;
    height: 64px;
    justify-content: center;
    padding: 0;
    border: 4px solid rgba(255, 255, 255, 0.18);
}

.page-home .whatsapp-fab span {
    display: none;
}

@media (max-width: 1180px) {
    .page-home .desktop-nav {
        gap: 16px;
    }

    .page-home .header-row {
        grid-template-columns: 170px minmax(0, 1fr) auto;
    }

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

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

@media (max-width: 860px) {
    .page-home .announcement-inner {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .page-home .announcement-copy,
    .announcement-socials {
        grid-column: auto;
    }

    .page-home .announcement-socials {
        display: none;
    }

    .page-home .header-row {
        min-height: 72px;
        grid-template-columns: 150px auto;
    }

    .page-home .desktop-nav {
        display: none;
    }

    .page-home .hero-carousel,
    .page-home .hero-carousel-track,
    .page-home .hero-slide,
    .page-home .hero-carousel .hero-grid {
        min-height: 640px;
    }

    .page-home .hero-slide-bg {
        object-position: 68% center;
    }

    .page-home .hero-carousel .hero-copy {
        width: min(440px, 86vw);
        text-align: left;
        transform: none;
    }

    .page-home .hero-carousel .eyebrow,
    .page-home .hero-actions {
        justify-content: flex-start;
    }

    .page-home .hero-carousel .hero-copy h1 {
        font-size: clamp(3rem, 13vw, 4.7rem);
    }

    .page-home .hero-carousel .hero-copy > p:not(.eyebrow),
    .page-home .hero-carousel .hero-copy .hero-copy {
        margin-left: 0;
    }

    .page-home .hero-carousel-arrow {
        bottom: 28px;
    }

    .page-home .hero-carousel-dots {
        bottom: 92px;
    }

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

    .home-feature-grid,
    .home-follow-card {
        grid-template-columns: 1fr;
    }

    .home-help-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px;
    }

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

@media (max-width: 620px) {
    .page-home .header-actions {
        gap: 10px;
    }

    .page-home .action-icon-heart {
        display: none;
    }

    .home-collection-grid,
    .home-arrivals-grid {
        grid-template-columns: 1fr;
    }

    .home-rail-arrow {
        display: none;
    }

    .home-feature-card > div {
        padding: 30px 24px;
    }

    .page-home .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Canonical shared header/footer and shop listing alignment */
body:not(.page-admin) .announcement-bar {
    background: #050505;
    color: #fffaf3;
    border: 0;
}

body:not(.page-admin) .announcement-inner {
    min-height: 34px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
    align-items: center;
    padding: 6px 0;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body:not(.page-admin) .announcement-copy {
    grid-column: 2;
    justify-content: center;
    color: #fffaf3;
}

body:not(.page-admin) .announcement-socials {
    grid-column: 3;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

body:not(.page-admin) .site-header {
    top: 0;
    background: rgba(255, 250, 243, 0.98);
    border-bottom: 1px solid rgba(29, 23, 17, 0.08);
    box-shadow: none;
}

body:not(.page-admin) .header-row {
    min-height: 82px;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
    padding: 0;
}

body:not(.page-admin) .brand-logo-image {
    width: 160px;
    max-height: 58px;
}

body:not(.page-admin) .desktop-nav {
    justify-content: center;
    gap: clamp(18px, 2.4vw, 34px);
}

body:not(.page-admin) .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    color: #050505;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: none;
}

body:not(.page-admin) .nav-link-sale {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
}

body:not(.page-admin) .header-actions {
    justify-self: end;
    gap: 18px;
}

body:not(.page-admin) .action-icon {
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #050505;
    box-shadow: none;
}

body:not(.page-admin) .action-icon .icon,
body:not(.page-admin) .action-icon svg {
    width: 23px;
    height: 23px;
}

body:not(.page-admin) .action-count {
    top: -7px;
    right: -9px;
    min-width: 17px;
    height: 17px;
    border: 0;
    font-size: 0.66rem;
}

body:not(.page-admin) .category-strip {
    display: none !important;
}

body:not(.page-admin) .site-footer {
    margin-top: 34px;
    padding-top: 34px;
    background: #050505;
}

body:not(.page-admin) .footer-grid {
    grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr));
    gap: 38px;
}

body:not(.page-admin) .footer-column h4 {
    color: var(--gold-light);
    text-transform: uppercase;
    font-family: var(--font-body);
    letter-spacing: 0.04em;
    font-size: 0.85rem;
}

body:not(.page-admin) .footer-socials a {
    border: 0;
    padding: 0;
}

body.page-shop {
    --container: min(1540px, calc(100% - 80px));
}

.page-shop .shop-page-hero {
    padding: 28px 0 0;
    border: 0;
    background: transparent;
}

.page-shop .shop-results-section {
    padding: 26px 0 72px;
}

.page-shop .shop-layout {
    grid-template-columns: 285px minmax(0, 1fr);
}

.page-shop .shop-filter-panel {
    top: 126px;
    padding: 0 28px 0 0;
    border: 0;
    border-right: 1px solid rgba(29, 23, 17, 0.12);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.page-shop .product-grid-shop {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 18px;
}

@media (max-width: 1180px) {
    body:not(.page-admin) .header-row {
        grid-template-columns: 170px minmax(0, 1fr);
        min-height: 72px;
    }

    body:not(.page-admin) .desktop-nav {
        display: none;
    }

    .page-shop .shop-layout {
        grid-template-columns: 1fr;
    }

    .page-shop .shop-filter-panel {
        padding: 0 0 24px;
        border-right: 0;
        border-bottom: 1px solid rgba(29, 23, 17, 0.12);
    }

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

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

@media (max-width: 760px) {
    body.page-shop {
        --container: min(1200px, calc(100% - 20px));
    }

    body:not(.page-admin) .announcement-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    body:not(.page-admin) .announcement-copy {
        grid-column: auto;
        flex-wrap: wrap;
    }

    body:not(.page-admin) .announcement-socials {
        display: none;
    }

    body:not(.page-admin) .header-row {
        grid-template-columns: 150px minmax(0, 1fr);
        padding: 14px 0;
    }

    body:not(.page-admin) .header-actions {
        gap: 10px;
    }

    .page-shop .shop-results-top {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        position: sticky;
        top: 0;
        z-index: 20;
        background: #f7f1e8;
        padding: 10px 0;
        margin: 0 0 14px;
        border-bottom: 1px solid rgba(29, 23, 17, 0.08);
    }

    .page-shop .shop-results-top > div {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .page-shop .shop-results-top strong {
        font-size: 0.76rem;
    }

    .page-shop .shop-sort {
        width: auto;
        flex: 0 0 auto;
        flex-basis: auto;
    }

    .page-shop .shop-sort label {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .page-shop .shop-sort span {
        display: none;
    }

    .page-shop .shop-sort select {
        min-height: 36px;
        padding: 6px 26px 6px 10px;
        font-size: 0.76rem;
    }

    .page-shop .product-grid-shop {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 10px;
    }

    .page-shop .product-media img {
        height: clamp(180px, 52vw, 260px);
    }

    .page-shop .product-card h3,
    .page-shop .product-card .product-card-name {
        font-size: 0.82rem;
    }

    .page-shop .product-card-price {
        font-size: 0.86rem;
    }

    body:not(.page-admin) .footer-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
}

/* Keep the complete storefront action set beside the wordmark on narrow phones. */
@media (max-width: 420px) {
    body:not(.page-admin) .header-row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 7px;
        padding-block: 12px;
    }

    body:not(.page-admin) .brand-lockup {
        min-width: 0;
        overflow: hidden;
    }

    body:not(.page-admin) .brand-logo-image {
        width: min(27vw, 104px);
        max-width: 100%;
    }

    body:not(.page-admin) .header-actions {
        min-width: 0;
        gap: 2px;
    }

    body:not(.page-admin) .action-icon,
    body:not(.page-admin) .menu-toggle {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
    }

    body:not(.page-admin) .action-icon-cart {
        margin-right: 0;
    }
}

/* Shared homepage-style WhatsApp floating action */
body:not(.page-admin) .whatsapp-fab {
    right: 18px;
    bottom: 18px;
    width: 64px;
    height: 64px;
    justify-content: center;
    gap: 0;
    padding: 0;
    border: 4px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #12a64a 48%, #078438);
    color: #fff;
    box-shadow: 0 18px 38px rgba(19, 96, 40, 0.28);
}

body:not(.page-admin) .whatsapp-fab:hover {
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 22px 44px rgba(19, 96, 40, 0.34);
}

body:not(.page-admin) .whatsapp-fab .icon,
body:not(.page-admin) .whatsapp-fab svg {
    width: 31px;
    height: 31px;
}

body:not(.page-admin) .whatsapp-fab span {
    display: none;
}

@media (max-width: 760px) {
    body:not(.page-admin) .whatsapp-fab {
        right: 14px;
        bottom: 14px;
        width: 58px;
        height: 58px;
    }

    body.page-account .whatsapp-fab {
        bottom: calc(94px + env(safe-area-inset-bottom));
    }
}

/* Reference-aligned product details page */
body.page-product {
    --container: min(1540px, calc(100% - 80px));
}

.page-product .site-main {
    background:
        radial-gradient(circle at 80% 4%, rgba(199, 162, 90, 0.05), transparent 24%),
        linear-gradient(180deg, #fffaf4 0%, #fbf8f2 52%, #f8efe4 100%);
}

.product-detail-page {
    padding: 28px 0 72px;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: rgba(29, 23, 17, 0.62);
    font-size: 0.78rem;
    font-weight: 700;
}

.product-breadcrumb a {
    color: inherit;
}

.product-breadcrumb a:not(:last-child)::after {
    content: "›";
    margin-left: 8px;
    color: rgba(29, 23, 17, 0.32);
}

.page-product .product-detail-grid {
    display: grid;
    grid-template-columns: minmax(520px, 1.42fr) minmax(340px, 0.95fr) minmax(280px, 0.78fr);
    gap: 30px;
    align-items: start;
}

.page-product .product-gallery {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    grid-template-areas: "thumbs main";
    gap: 30px;
    align-items: start;
}

.page-product .product-gallery-main {
    position: relative;
    grid-area: main;
    border: 0;
    border-radius: 6px;
    box-shadow: none;
    overflow: hidden;
    background: #eadcc9;
}

.page-product .product-gallery-main img {
    width: 100%;
    height: min(670px, 46vw);
    min-height: 560px;
    object-fit: cover;
    object-position: center top;
}

.page-product .product-gallery-thumbs {
    grid-area: thumbs;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.page-product .product-gallery-thumbs button {
    width: 100%;
    min-height: 0;
    padding: 0;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
}

.page-product .product-gallery-thumbs button.is-active {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 1px var(--gold-dark);
}

.page-product .product-gallery-thumbs img {
    width: 100%;
    height: 104px;
    display: block;
    border: 0;
    border-radius: 0;
    object-fit: cover;
    object-position: center top;
    box-shadow: none;
}

.page-product .product-thumb-more {
    min-height: 38px;
    display: grid;
    place-items: center;
    color: #050505;
}

.product-zoom-button {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #050505;
    box-shadow: 0 14px 30px rgba(29, 23, 17, 0.12);
    cursor: zoom-in;
}

.product-image-dialog {
    width: min(940px, calc(100% - 28px));
    max-width: none;
    padding: 0;
    border: 0;
    background: transparent;
    overflow: visible;
}

.product-image-dialog::backdrop {
    background: rgba(5, 5, 5, 0.86);
    backdrop-filter: blur(5px);
}

.product-image-dialog-frame {
    position: relative;
    width: fit-content;
    max-width: 100%;
    margin: auto;
}

.product-image-dialog img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 88vh;
    border-radius: 8px;
    object-fit: contain;
    background: #f7f1e8;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.product-image-dialog-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: #050505;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
    cursor: pointer;
}

.product-purchase-panel {
    display: grid;
    gap: 18px;
    padding: 0;
}

.product-kicker {
    width: fit-content;
    margin: 0;
    padding: 9px 14px;
    border: 1px solid rgba(199, 162, 90, 0.36);
    border-radius: 5px;
    color: var(--gold-dark);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.page-product .product-summary h1 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3.35rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.page-product .product-price-row-large strong {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 2vw, 2rem);
    letter-spacing: -0.02em;
}

.page-product .product-description {
    max-width: 44ch;
    margin: 0;
    color: rgba(29, 23, 17, 0.78);
    font-size: 1.02rem;
    line-height: 1.7;
}

.page-product .product-form {
    gap: 22px;
    margin-top: 4px;
    padding-top: 18px;
    border-top: 1px solid rgba(29, 23, 17, 0.10);
}

.product-option-block {
    display: grid;
    gap: 12px;
}

.product-option-block strong,
.product-option-head strong,
.product-quantity-row > strong {
    color: #050505;
    font-size: 0.83rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.product-option-block strong span {
    color: rgba(29, 23, 17, 0.74);
    text-transform: none;
    letter-spacing: 0;
}

.product-color-options {
    display: flex;
    gap: 12px;
}

.product-color-options label,
.product-size-options label {
    cursor: pointer;
}

.product-color-options input,
.product-size-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product-color-options label > span {
    width: 38px;
    height: 38px;
    display: block;
    border: 1px solid transparent;
    border-radius: 50%;
    background: var(--swatch);
    box-shadow: inset 0 0 0 4px #fff, 0 0 0 1px rgba(29, 23, 17, 0.08);
}

.product-color-options input:checked + span {
    border-color: var(--gold-dark);
    box-shadow: inset 0 0 0 4px #fff, 0 0 0 2px var(--gold-dark);
}

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

.product-option-head a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #050505;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.product-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.product-size-options label > span {
    min-width: 45px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(29, 23, 17, 0.12);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.78);
    color: #050505;
    font-weight: 800;
}

.product-size-options input:checked + span {
    border-color: var(--gold-dark);
    color: #050505;
    box-shadow: inset 0 0 0 1px var(--gold-dark);
}

.product-quantity-row {
    grid-template-columns: auto max-content auto auto;
    align-items: center;
    justify-items: start;
    column-gap: 14px;
}

.quantity-stepper {
    display: inline-flex;
    align-items: stretch;
    width: max-content;
    max-width: max-content;
    flex: 0 0 auto;
    justify-self: start;
    align-self: center;
    border: 1px solid rgba(29, 23, 17, 0.12);
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

.product-quantity-row .quantity-stepper,
.product-purchase-panel .quantity-stepper {
    width: max-content;
    max-width: max-content;
    justify-self: start;
}

.quantity-stepper button,
.quantity-stepper input {
    box-sizing: border-box;
    flex: 0 0 42px;
    width: 42px;
    min-width: 42px;
    max-width: 42px;
    height: 38px;
    border: 0;
    border-right: 1px solid rgba(29, 23, 17, 0.10);
    background: transparent;
    color: #050505;
    text-align: center;
    font: inherit;
    font-weight: 900;
}

.quantity-stepper button:last-child {
    border-right: 0;
}

.quantity-stepper input {
    appearance: textfield;
}

.quantity-stepper input::-webkit-outer-spin-button,
.quantity-stepper input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.product-stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #39a35b;
}

.product-stock-text {
    color: #248044;
    font-weight: 800;
}

.page-product .product-actions-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.page-product .product-actions-detail .btn {
    min-height: 46px;
    border-radius: 5px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.82rem;
    font-weight: 900;
}

.page-product .product-actions-detail .btn-outline {
    color: var(--gold-dark);
    border-color: var(--gold-dark);
    background: transparent;
}

.product-side-rail {
    display: grid;
    gap: 12px;
}

.product-side-card {
    display: grid;
    gap: 18px;
    padding: 24px 26px;
    border: 1px solid rgba(29, 23, 17, 0.10);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.62);
}

.product-side-card h2,
.product-side-related h2 {
    margin: 0;
    color: #050505;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-side-item {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    color: rgba(29, 23, 17, 0.78);
    font-size: 0.9rem;
    line-height: 1.45;
}

.product-side-item .icon {
    color: #050505;
}

.product-side-related {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.product-mini-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.product-mini-related-card {
    display: grid;
    gap: 8px;
    color: #050505;
}

.product-mini-related-card img {
    width: 100%;
    height: 142px;
    border-radius: 5px;
    object-fit: cover;
    object-position: center top;
    background: #eadcc9;
}

.product-mini-related-card span {
    font-size: 0.78rem;
    line-height: 1.25;
}

.product-mini-related-card strong {
    font-size: 0.8rem;
}

.product-details-tabs {
    margin-top: 28px;
    padding: 0 30px 26px;
    border: 1px solid rgba(29, 23, 17, 0.10);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.45);
}

.product-tab-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: 1px solid rgba(29, 23, 17, 0.10);
}

.product-tab-nav a {
    position: relative;
    min-height: 54px;
    display: grid;
    place-items: center;
    color: #050505;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.product-tab-nav a.is-active {
    color: var(--gold-dark);
}

.product-tab-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--gold-dark);
}

.product-tab-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
    gap: 54px;
    padding-top: 22px;
    color: rgba(29, 23, 17, 0.74);
    font-size: 0.9rem;
    line-height: 1.6;
}

.product-tab-panel p {
    margin-top: 0;
}

.product-tab-panel ul {
    margin: 12px 0 0;
    padding-left: 18px;
}

.product-tab-panel dl {
    display: grid;
    gap: 7px;
    margin: 0;
}

.product-tab-panel dl div {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 12px;
}

.product-tab-panel dt {
    color: rgba(29, 23, 17, 0.58);
}

.product-tab-panel dd {
    margin: 0;
    color: #050505;
}

@media (max-width: 1280px) {
    .page-product .product-detail-grid {
        grid-template-columns: minmax(480px, 1.3fr) minmax(330px, 0.95fr);
    }

    .product-side-rail {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-side-related {
        margin-top: 0;
    }
}

@media (max-width: 960px) {
    body.page-product {
        --container: min(1200px, calc(100% - 28px));
    }

    .page-product .product-detail-grid,
    .page-product .product-gallery,
    .product-side-rail,
    .product-tab-panel {
        grid-template-columns: 1fr;
    }

    .page-product .product-gallery {
        grid-template-areas: "main" "thumbs";
    }

    .page-product .product-gallery-thumbs {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        order: 2;
    }

    .page-product .product-gallery-main img {
        min-height: 460px;
        height: 62vw;
    }

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

@media (max-width: 620px) {
    .product-detail-page {
        padding-top: 20px;
    }

    .page-product .product-gallery-main img {
        min-height: 390px;
        height: 118vw;
    }

    .page-product .product-gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }

    .page-product .product-gallery-thumbs img {
        height: 86px;
    }

    .product-mini-related-grid,
    .product-tab-nav,
    .product-tab-panel dl div {
        grid-template-columns: 1fr;
    }

    .product-quantity-row {
        grid-template-columns: max-content max-content auto;
        justify-items: start;
        column-gap: 12px;
        row-gap: 10px;
    }

    .product-quantity-row .quantity-stepper {
        width: max-content;
        justify-self: start;
    }

    .product-stock-dot {
        display: none;
    }

    .product-stock-text {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: start;
    }

    .product-details-tabs {
        padding-inline: 16px;
    }
}


/* Global typography and overflow guardrails */
body,
button,
input,
select,
textarea {
    font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-word,
.footer-brand-title,
.admin-brand {
    font-family: var(--font-heading);
}

.btn,
.btn-black,
.btn-gold,
.btn-outline,
.btn-soft,
.filter-apply-button,
.product-actions-detail .btn,
.product-quick-actions .btn,
.home-feature-card a,
.home-help-card .btn,
.cart-item-form .btn,
.summary-panel .btn,
.admin-desktop-rail button,
.mobile-app-link {
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
    line-height: 1.18;
    overflow-wrap: anywhere;
}

.product-card,
.home-product-card,
.collection-card,
.home-collection-card,
.lookbook-card,
.home-feature-card,
.cart-item,
.summary-panel,
.info-panel,
.table-card,
.profile-card,
.account-app-card,
.account-stat-card,
.admin-panel,
.admin-order-card,
.admin-lead-card,
.admin-notification-card,
.contact-card,
.note-card,
.confirmation-card,
.product-side-card,
.product-mini-related-card {
    min-width: 0;
    overflow-wrap: break-word;
    word-break: normal;
}

.product-body,
.home-product-copy,
.collection-card-copy,
.home-collection-copy,
.lookbook-copy,
.cart-item-copy,
.product-side-item,
.product-tab-panel,
.footer-column,
.admin-panel,
.table-card td,
.table-card th {
    min-width: 0;
}

.product-card-head,
.page-shop .product-card-head,
.cart-item-head,
.product-price-row,
.product-option-head,
.product-quantity-row,
.home-product-card-row,
.summary-line {
    min-width: 0;
    flex-wrap: wrap;
}

.product-body h3,
.home-product-copy h3,
.collection-card strong,
.home-collection-copy h3,
.lookbook-copy h3,
.product-mini-related-card span,
.product-side-card h2,
.product-side-related h2,
.cart-item-head h3,
.table-card h2,
.profile-card h2,
.admin-panel h2,
.account-app-card h3,
.account-stat-card strong {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    hyphens: auto;
}

.product-card-price,
.page-shop .product-card-price,
.home-product-price,
.cart-item-price,
.product-price-row strong,
.product-mini-related-card strong {
    max-width: 100%;
    overflow-wrap: anywhere;
}

@media (max-width: 620px) {
    .btn,
    .btn-black,
    .btn-gold,
    .btn-outline,
    .btn-soft,
    .filter-apply-button,
    .product-actions-detail .btn,
    .product-quick-actions .btn {
        min-height: 44px;
        padding-inline: 1rem;
    }

    .product-card-head,
    .page-shop .product-card-head,
    .cart-item-head,
    .product-price-row {
        align-items: flex-start;
    }
}

/* Premium product size and bolt option cards */
.page-product .product-size-block {
    gap: 14px;
}

.page-product .product-size-block .product-option-head {
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(199, 162, 90, 0.22);
    border-radius: 5px;
    background:
        linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(244, 232, 214, 0.76)),
        radial-gradient(circle at 12% 16%, rgba(199, 162, 90, 0.14), transparent 34%);
    box-shadow: 0 14px 32px rgba(29, 23, 17, 0.06);
}

.page-product .product-size-block .product-option-head strong {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding-inline: 4px 10px;
}

.page-product .product-size-block .product-option-head a {
    min-height: 42px;
    display: inline-flex;
    justify-content: center;
    padding: 0.72rem 1rem;
    border: 1px solid rgba(29, 23, 17, 0.12);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.74);
    color: #0c0906;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(29, 23, 17, 0.05);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.page-product .product-size-block .product-option-head a:hover,
.page-product .product-size-block .product-option-head a:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(199, 162, 90, 0.72);
    background: #050505;
    color: #fff8ef;
}

.page-product .product-size-block .product-option-head a .icon {
    color: var(--gold-dark);
}

.page-product .product-size-block .product-option-head a:hover .icon,
.page-product .product-size-block .product-option-head a:focus-visible .icon {
    color: var(--gold-light);
}

.page-product .product-size-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
    gap: 12px;
}

.page-product .product-size-options label {
    min-width: 0;
}

.page-product .product-size-options label > span {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 54px;
    height: auto;
    padding: 0.82rem 0.8rem;
    border: 1px solid rgba(29, 23, 17, 0.12);
    border-radius: 5px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 239, 0.88));
    color: #17110c;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 1.15;
    text-align: center;
    box-shadow: 0 12px 28px rgba(29, 23, 17, 0.05);
    overflow: hidden;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.page-product .product-size-options label > span::after {
    content: "";
    position: absolute;
    inset: auto 10px 8px 10px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(199, 162, 90, 0.62), transparent);
    opacity: 0;
    transform: scaleX(0.55);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.page-product .product-size-options label:hover > span,
.page-product .product-size-options input:focus-visible + span {
    transform: translateY(-2px);
    border-color: rgba(199, 162, 90, 0.58);
    box-shadow: 0 18px 36px rgba(29, 23, 17, 0.09);
}

.page-product .product-size-options input:checked + span {
    border-color: var(--gold-dark);
    background:
        linear-gradient(135deg, #17110c, #050505 62%, #23170b);
    color: #fff8ef;
    box-shadow:
        0 18px 42px rgba(29, 23, 17, 0.18),
        0 0 0 2px rgba(199, 162, 90, 0.24);
}

.page-product .product-size-options input:checked + span::after {
    opacity: 1;
    transform: scaleX(1);
}

@media (max-width: 620px) {
    .page-product .product-size-block .product-option-head {
        flex-direction: column;
        align-items: stretch;
    }

    .page-product .product-size-block .product-option-head strong,
    .page-product .product-size-block .product-option-head a {
        width: 100%;
    }

    .page-product .product-size-options {
        grid-template-columns: repeat(auto-fit, minmax(58px, 1fr));
    }
}

@media (max-width: 390px) {
    .page-product .product-size-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Match product size controls to primary product action button geometry */
.page-product {
    --product-action-height: 46px;
    --product-action-radius: 5px;
}

.page-product .product-size-block .product-option-head {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.page-product .product-size-block .product-option-head strong {
    min-height: var(--product-action-height);
    padding-inline: 0;
}

.page-product .product-size-block .product-option-head a,
.page-product .product-size-options label > span,
.page-product .product-actions-detail .btn {
    min-height: var(--product-action-height);
    border-radius: var(--product-action-radius);
}

.page-product .product-size-block .product-option-head a {
    padding: 0 1rem;
}

.page-product .product-size-options label > span {
    height: var(--product-action-height);
    padding: 0 0.85rem;
}

/* Reference-aligned Lookbook page */
body.page-lookbook {
    --lookbook-container: min(1420px, calc(100% - 72px));
    background: #fbf8f3;
}

body.page-lookbook .site-main {
    padding-bottom: 0;
    background: #fbf8f3;
}

body.page-lookbook .nav-link.is-active {
    color: var(--gold-dark);
}

body.page-lookbook .nav-link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

/* ─── Size Guide Page (lookbook-style) ───────────────────────────────────── */

body.page-size-guide .sizeguide-hero-section {
    min-height: 430px;
    padding: 54px 0 58px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(251, 248, 243, 0.98) 0%, rgba(251, 248, 243, 0.92) 31%, rgba(251, 248, 243, 0.36) 52%, rgba(251, 248, 243, 0.06) 76%),
        url("../images/banners/hero-heritage-indigo.png");
    background-position: center right;
    background-size: cover;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-size-guide .sizeguide-breadcrumbs {
    margin: 0 0 28px;
    color: rgba(29, 23, 17, 0.7);
    font-size: 0.86rem;
    display: flex;
    align-items: center;
    gap: 11px;
}

body.page-size-guide .sizeguide-breadcrumbs a,
body.page-size-guide .breadcrumb-current {
    color: #1d1711;
}

body.page-size-guide .breadcrumb-separator {
    color: rgba(29, 23, 17, 0.42);
}

body.page-size-guide .sizeguide-hero-content {
    max-width: 480px;
}

body.page-size-guide .sizeguide-hero-content h1 {
    position: relative;
    margin: 0 0 34px;
    color: #050505;
    font-size: clamp(3.2rem, 5.4vw, 5.15rem);
    line-height: 0.92;
    letter-spacing: -0.035em;
}

body.page-size-guide .sizeguide-hero-content h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-dark);
}

body.page-size-guide .sizeguide-hero-description {
    max-width: 460px;
    margin: 0 0 30px;
    color: rgba(29, 23, 17, 0.9);
    font-size: 1.05rem;
    line-height: 1.62;
}

body.page-size-guide .sizeguide-hero-content .btn {
    min-height: 46px;
    padding: 0 26px;
    border-radius: 5px;
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.page-size-guide .sizeguide-hero-content .btn:hover {
    background: linear-gradient(180deg, #e0a838, #c8871a);
}

/* How to Measure Steps */
body.page-size-guide .sizeguide-steps-section {
    padding: 64px 0 56px;
    background: #fbf8f3;
}

body.page-size-guide .sizeguide-steps-header {
    text-align: center;
    margin: 0 0 40px;
}

body.page-size-guide .sizeguide-steps-header .eyebrow {
    margin: 0 0 8px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-size-guide .sizeguide-steps-header h2 {
    margin: 0 0 12px;
    color: #050505;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

body.page-size-guide .sizeguide-steps-intro {
    margin: 0 auto;
    max-width: 520px;
    color: rgba(29, 23, 17, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
}

body.page-size-guide .sizeguide-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

body.page-size-guide .sizeguide-step-card {
    padding: 28px 22px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    text-align: center;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

body.page-size-guide .sizeguide-step-card:hover {
    border-color: rgba(199, 162, 90, 0.4);
    box-shadow: 0 6px 20px rgba(29, 23, 17, 0.06);
}

body.page-size-guide .sizeguide-step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
}

body.page-size-guide .sizeguide-step-number {
    font-size: 1.4rem;
    font-weight: 900;
    color: rgba(199, 162, 90, 0.4);
    line-height: 1;
    font-family: var(--font-heading);
}

body.page-size-guide .sizeguide-step-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.page-size-guide .sizeguide-step-icon .icon,
body.page-size-guide .sizeguide-step-icon svg {
    width: 22px;
    height: 22px;
}

body.page-size-guide .sizeguide-step-card h3 {
    margin: 0 0 8px;
    color: #050505;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-size-guide .sizeguide-step-card p {
    margin: 0;
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.84rem;
    line-height: 1.5;
}

/* Size Tables */
body.page-size-guide .sizeguide-tables-section {
    padding: 56px 0;
    background: #050505;
}

body.page-size-guide .sizeguide-tables-header {
    text-align: center;
    margin: 0 0 36px;
}

body.page-size-guide .sizeguide-tables-header .eyebrow {
    margin: 0 0 8px;
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-size-guide .sizeguide-tables-header h2 {
    margin: 0 0 12px;
    color: #fffaf3;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

body.page-size-guide .sizeguide-tables-intro {
    margin: 0 auto;
    max-width: 520px;
    color: rgba(255, 250, 243, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
}

body.page-size-guide .sizeguide-tables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 760px;
    margin: 0 auto;
}

body.page-size-guide .sizeguide-table-card {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(199, 162, 90, 0.18);
    border-radius: 6px;
}

body.page-size-guide .sizeguide-table-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(199, 162, 90, 0.18);
}

body.page-size-guide .sizeguide-table-icon {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-light);
}

body.page-size-guide .sizeguide-table-icon .icon,
body.page-size-guide .sizeguide-table-icon svg {
    width: 18px;
    height: 18px;
}

body.page-size-guide .sizeguide-table-card-header h3 {
    margin: 0;
    color: #fffaf3;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-size-guide .sizeguide-table-card table {
    width: 100%;
    border-collapse: collapse;
}

body.page-size-guide .sizeguide-table-card th {
    padding: 10px 8px;
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-align: left;
    border-bottom: 1px solid rgba(199, 162, 90, 0.18);
}

body.page-size-guide .sizeguide-table-card td {
    padding: 12px 8px;
    color: rgba(255, 250, 243, 0.88);
    font-size: 0.86rem;
    border-bottom: 1px solid rgba(199, 162, 90, 0.08);
}

body.page-size-guide .sizeguide-table-card tr:last-child td {
    border-bottom: 0;
}

body.page-size-guide .sizeguide-table-card td:first-child {
    color: var(--gold-light);
    font-weight: 900;
    letter-spacing: 0.02em;
}

/* Fit Notes */
body.page-size-guide .sizeguide-fit-section {
    padding: 56px 0;
    background: #fbf8f3;
}

body.page-size-guide .sizeguide-fit-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 36px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
}

body.page-size-guide .sizeguide-fit-icon {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.page-size-guide .sizeguide-fit-icon .icon,
body.page-size-guide .sizeguide-fit-icon svg {
    width: 26px;
    height: 26px;
}

body.page-size-guide .sizeguide-fit-card .eyebrow {
    margin: 0 0 6px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-size-guide .sizeguide-fit-card h2 {
    margin: 0 0 10px;
    color: #050505;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

body.page-size-guide .sizeguide-fit-card p {
    margin: 0;
    color: rgba(29, 23, 17, 0.78);
    font-size: 0.92rem;
    line-height: 1.65;
    max-width: 640px;
}

/* CTA Section */
body.page-size-guide .sizeguide-cta-section {
    padding: 0;
    background: #050505;
}

body.page-size-guide .sizeguide-cta-container {
    padding: 56px 0;
}

body.page-size-guide .sizeguide-cta-content {
    text-align: center;
}

body.page-size-guide .sizeguide-cta-icon {
    display: inline-grid;
    place-items: center;
    width: 60px;
    height: 60px;
    margin: 0 0 20px;
    border: 1px solid rgba(199, 162, 90, 0.76);
    border-radius: 50%;
    color: var(--gold-light);
}

body.page-size-guide .sizeguide-cta-icon .icon,
body.page-size-guide .sizeguide-cta-icon svg {
    width: 26px;
    height: 26px;
}

body.page-size-guide .sizeguide-cta-content h2 {
    margin: 0 0 12px;
    color: #fffaf3;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

body.page-size-guide .sizeguide-cta-content p {
    margin: 0 0 28px;
    color: rgba(255, 250, 243, 0.82);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

body.page-size-guide .sizeguide-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

body.page-size-guide .sizeguide-cta-actions .btn {
    min-height: 46px;
    padding: 0 26px;
    border-radius: 5px;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.page-size-guide .sizeguide-cta-actions .btn-gold {
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    border: 0;
}

body.page-size-guide .sizeguide-cta-actions .btn-gold:hover {
    background: linear-gradient(180deg, #e0a838, #c8871a);
}

body.page-size-guide .sizeguide-cta-actions .btn-gold-outline {
    border: 1px solid var(--gold-dark);
    background: transparent;
    color: var(--gold-light);
}

body.page-size-guide .sizeguide-cta-actions .btn-gold-outline:hover {
    background: var(--gold-dark);
    color: #fff8ef;
}

/* Trust strip on size guide page */
body.page-size-guide .trust-strip {
    background: #fbf8f3;
    border-top: 1px solid rgba(29, 23, 17, 0.06);
}

/* Responsive */
@media (max-width: 860px) {
    body.page-size-guide .sizeguide-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    body.page-size-guide .sizeguide-tables-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body.page-size-guide .sizeguide-hero-section {
        min-height: 340px;
        padding: 40px 0 44px;
    }

    body.page-size-guide .sizeguide-hero-content h1 {
        font-size: clamp(2.4rem, 8vw, 3.2rem);
    }

    body.page-size-guide .sizeguide-steps-grid {
        grid-template-columns: 1fr;
    }

    body.page-size-guide .sizeguide-fit-card {
        flex-direction: column;
        gap: 16px;
        padding: 24px 22px;
    }

    body.page-size-guide .sizeguide-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    body.page-size-guide .sizeguide-cta-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ─── Account Page (lookbook-style) ──────────────────────────────────────── */

body.page-account .account-hero-section {
    min-height: 430px;
    padding: 54px 0 58px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(251, 248, 243, 0.98) 0%, rgba(251, 248, 243, 0.92) 31%, rgba(251, 248, 243, 0.36) 52%, rgba(251, 248, 243, 0.06) 76%),
        url("../images/banners/hero-gold-kaftan.png");
    background-position: center right;
    background-size: cover;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-account .account-breadcrumbs {
    margin: 0 0 28px;
    color: rgba(29, 23, 17, 0.7);
    font-size: 0.86rem;
    display: flex;
    align-items: center;
    gap: 11px;
}

body.page-account .account-breadcrumbs a,
body.page-account .breadcrumb-current {
    color: #1d1711;
}

body.page-account .breadcrumb-separator {
    color: rgba(29, 23, 17, 0.42);
}

body.page-account .account-hero-content {
    max-width: 520px;
}

body.page-account .account-hero-content h1 {
    position: relative;
    margin: 0 0 34px;
    color: #050505;
    font-size: clamp(2.6rem, 4.8vw, 4.4rem);
    line-height: 0.92;
    letter-spacing: -0.035em;
}

body.page-account .account-hero-content h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-dark);
}

body.page-account .account-hero-description {
    max-width: 460px;
    margin: 0 0 28px;
    color: rgba(29, 23, 17, 0.9);
    font-size: 1.05rem;
    line-height: 1.62;
}

body.page-account .account-hero-content .btn {
    min-height: 46px;
    padding: 0 26px;
    border-radius: 5px;
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.page-account .account-hero-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(199, 162, 90, 0.3);
    border-radius: 6px;
    max-width: 420px;
}

body.page-account .account-avatar {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

body.page-account .account-hero-name {
    margin: 0;
    color: #050505;
    font-size: 0.95rem;
    font-weight: 700;
}

body.page-account .account-hero-email {
    margin: 2px 0 0;
    color: rgba(29, 23, 17, 0.62);
    font-size: 0.82rem;
}

body.page-account .account-b2b-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
    padding: 2px 10px;
    border-radius: 999px;
    background: rgba(199, 162, 90, 0.12);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}

/* Stats Strip */
body.page-account .account-stats-strip {
    padding: 0;
    background: #fbf8f3;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-account .account-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

body.page-account .account-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 28px 24px;
    border-right: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-account .account-stat-item:last-child {
    border-right: 0;
}

body.page-account .account-stat-icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.page-account .account-stat-icon .icon,
body.page-account .account-stat-icon svg {
    width: 20px;
    height: 20px;
}

body.page-account .account-stat-item > div {
    display: flex;
    flex-direction: column;
}

body.page-account .account-stat-item strong {
    color: #050505;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.1;
}

body.page-account .account-stat-item span {
    color: rgba(29, 23, 17, 0.62);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

/* Dashboard Body */
body.page-account .account-body-section {
    padding: 48px 0 56px;
    background: #fbf8f3;
}

body.page-account .account-body-container {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

/* Sidebar Nav */
body.page-account .account-sidebar-nav {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 24px 20px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
}

body.page-account .account-sidebar-brand {
    display: block;
    margin: 0 0 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-account .account-sidebar-brand-logo {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

body.page-account .account-sidebar-section-label {
    margin: 14px 0 4px;
    padding: 0 14px;
    color: rgba(199, 162, 90, 0.7);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.page-account .account-sidebar-section-label:first-of-type {
    margin-top: 0;
}

body.page-account .account-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 5px;
    color: rgba(29, 23, 17, 0.78);
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
}

body.page-account .account-sidebar-nav a:hover {
    background: rgba(199, 162, 90, 0.06);
    color: var(--gold-dark);
}

body.page-account .account-sidebar-nav a.is-active {
    background: linear-gradient(180deg, rgba(199, 162, 90, 0.12), rgba(199, 162, 90, 0.06));
    color: var(--gold-dark);
}

body.page-account .account-sidebar-nav .nav-divider {
    border: 0;
    border-top: 1px solid rgba(29, 23, 17, 0.06);
    margin: 12px 0 8px;
}

body.page-account .account-sidebar-nav .nav-logout-form {
    margin: 0;
}

body.page-account .account-sidebar-nav .btn-logout {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 14px;
    border: 1px solid rgba(29, 23, 17, 0.12);
    border-radius: 5px;
    background: transparent;
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.18s ease, color 0.18s ease;
}

body.page-account .account-sidebar-nav .btn-logout:hover {
    border-color: rgba(199, 162, 90, 0.5);
    color: var(--gold-dark);
}

/* Content Area — override existing card styles */
body.page-account .account-content-area .account-app-card,
body.page-account .account-content-area .auth-card,
body.page-account .account-content-area .info-panel,
body.page-account .account-content-area .profile-card {
    padding: 28px 26px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    box-shadow: none;
}

body.page-account .account-content-area h2 {
    color: #050505;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -0.01em;
}

body.page-account .account-content-area h3 {
    color: #050505;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}

body.page-account .account-content-area .section-copy {
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.9rem;
    line-height: 1.55;
}

body.page-account .account-content-area .field span {
    color: #050505;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

body.page-account .account-content-area input,
body.page-account .account-content-area textarea,
body.page-account .account-content-area select {
    border: 1px solid rgba(29, 23, 17, 0.14);
    border-radius: 4px;
    background: #fbf8f3;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

body.page-account .account-content-area input:focus,
body.page-account .account-content-area textarea:focus,
body.page-account .account-content-area select:focus {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(199, 162, 90, 0.12);
}

body.page-account .account-content-area .btn-gold,
body.page-account .account-mobile-only .btn-gold,
body.page-account .account-mobile-shell .btn-gold {
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    border: 0;
    border-radius: 5px;
    font-weight: 900;
    letter-spacing: 0.03em;
    box-shadow: 0 12px 24px rgba(141, 107, 49, 0.22);
}

body.page-account .account-content-area .btn-gold:hover,
body.page-account .account-mobile-only .btn-gold:hover,
body.page-account .account-mobile-shell .btn-gold:hover {
    background: linear-gradient(180deg, #e0a838, #c8871a);
}

body.page-account .account-content-area .btn-outline {
    border: 1px solid rgba(29, 23, 17, 0.14);
    border-radius: 5px;
    background: transparent;
    color: #050505;
    font-weight: 700;
    transition: border-color 0.18s ease, color 0.18s ease;
}

body.page-account .account-content-area .btn-outline:hover {
    border-color: var(--gold-dark);
    color: var(--gold-dark);
}

/* Dashboard panels */
body.page-account .account-dashboard-panel {
    padding: 24px 22px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    box-shadow: none;
}

body.page-account .account-dashboard-grid {
    display: grid;
    gap: 20px;
}

body.page-account .account-empty-state {
    text-align: center;
    padding: 32px 20px;
}

body.page-account .account-empty-state .icon {
    color: rgba(199, 162, 90, 0.5);
}

body.page-account .account-order-row {
    padding: 16px 18px;
    border: 1px solid rgba(29, 23, 17, 0.10);
    border-radius: 14px;
    background: #fffdf9;
}

body.page-account .account-order-status {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* Password card */
body.page-account .account-password-card {
    padding: 24px 22px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
}

/* GDPR panel */
body.page-account .account-gdpr-panel {
    border-color: rgba(199, 162, 90, 0.2);
}

/* Auth grid (login/register) */
body.page-account .auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

body.page-account .account-body-container--guest {
    grid-template-columns: 1fr;
    justify-items: center;
}

body.page-account .account-body-container--guest .account-content-area {
    width: 100%;
    max-width: 980px;
}


.auth-single,
.account-auth-single {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.auth-switch-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 14px 0 0;
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.9rem;
    text-align: center;
}

.auth-switch-links a {
    color: var(--gold-dark);
    font-weight: 800;
    text-decoration: none;
}

.auth-switch-links a:hover {
    text-decoration: underline;
}

.auth-switch-sep {
    color: rgba(29, 23, 17, 0.35);
}

body.page-account .account-body-container--guest .auth-single,
body.page-account .account-body-container--guest .account-auth-single {
    max-width: 560px;
}

body.page-account .account-mobile-guest-auth .auth-single,
body.page-account .account-mobile-guest-auth .account-auth-single {
    max-width: none;
}

body.page-account .account-body-container--guest .auth-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 760px) {
    body.page-account .account-body-container--guest .account-content-area {
        max-width: 100%;
    }

    body.page-account .account-body-container--guest .auth-grid {
        grid-template-columns: 1fr;
    }
}

/* Address book */
body.page-account .account-address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}
body.page-account .account-address-card {
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    padding: 16px;
}
body.page-account .account-address-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
body.page-account .account-address-type {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(29, 23, 17, 0.6);
}
body.page-account .account-address-default {
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.72rem;
    padding: 3px 8px;
    border-radius: 4px;
}
body.page-account .account-address-name {
    font-weight: 600;
    margin-bottom: 6px;
}
body.page-account .account-address-line {
    color: rgba(29, 23, 17, 0.7);
    font-size: 0.9rem;
    margin-bottom: 2px;
}
body.page-account .account-address-phone {
    margin-top: 8px;
    font-size: 0.9rem;
    color: rgba(29, 23, 17, 0.7);
}
body.page-account .account-address-delete {
    margin-top: 12px;
}
body.page-account .account-address-form .field-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}
body.page-account .account-address-form .field-checkbox input {
    width: auto;
    margin: 0;
}

/* Payments, refunds, support lists */
body.page-account .account-payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
body.page-account .account-payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
}
body.page-account .account-payments-list,
body.page-account .account-refunds-list,
body.page-account .account-support-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
body.page-account .account-payment-row,
body.page-account .account-refund-row,
body.page-account .account-support-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
    max-width: 100%;
    background: #fffdf9;
    border: 1px solid rgba(29, 23, 17, 0.10);
    border-radius: 12px;
    padding: 14px 16px;
    box-sizing: border-box;
    overflow: hidden;
}
body.page-account .account-payment-row > div,
body.page-account .account-payment-row-main,
body.page-account .account-refund-row > div,
body.page-account .account-refund-row-main,
body.page-account .account-support-row > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1 1 auto;
}
body.page-account .account-payment-row strong,
body.page-account .account-refund-row strong,
body.page-account .account-support-row strong {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}
body.page-account .account-payment-row .account-order-status,
body.page-account .account-refund-row .account-order-status,
body.page-account .account-support-row .account-order-status {
    flex: 0 1 auto;
    max-width: 46%;
}
body.page-account .account-payment-row span,
body.page-account .account-refund-row span,
body.page-account .account-support-row span {
    color: rgba(29, 23, 17, 0.6);
    font-size: 0.86rem;
}

/* Notifications */
body.page-account .account-notifications-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
body.page-account .account-notification-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    cursor: pointer;
}
body.page-account .account-notification-item input {
    width: auto;
    margin: 0;
}

/* Loyalty */
body.page-account .account-loyalty-balance {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}
body.page-account .account-loyalty-balance strong {
    font-size: 2rem;
    color: #c7a25a;
}
body.page-account .account-loyalty-balance span {
    color: rgba(29, 23, 17, 0.6);
}

/* Order tracking */
body.page-account .account-order-tracking {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    min-width: 0;
    max-width: 100%;
    margin-top: 2px;
    padding: 8px 12px;
    background: #f8f6f2;
    border-radius: 8px;
    font-size: 0.82rem;
}

/* Trust strip on account page */
body.page-account .trust-strip {
    background: #fbf8f3;
    border-top: 1px solid rgba(29, 23, 17, 0.06);
}

/* Hide old hero/section styles */
body.page-account .page-hero.account-dashboard-hero,
body.page-account .account-app-section,
body.page-account .account-app-summary,
body.page-account .account-dashboard-shell,
body.page-account .account-dashboard-nav {
    all: revert;
    display: none !important;
}

/* Responsive */
@media (max-width: 980px) {
    body.page-account .account-body-container {
        grid-template-columns: 1fr;
    }

    body.page-account .account-sidebar-nav {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
        padding: 16px;
    }

    body.page-account .account-sidebar-brand {
        width: 100%;
        margin: 0 0 8px;
        padding-bottom: 8px;
    }

    body.page-account .account-sidebar-nav a {
        flex: 1 1 auto;
        justify-content: center;
        padding: 8px 14px;
    }

    body.page-account .account-sidebar-nav .nav-divider {
        width: 100%;
        margin: 4px 0;
    }

    body.page-account .account-sidebar-nav .btn-logout {
        flex: 1 1 auto;
        justify-content: center;
    }

    body.page-account .auth-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body.page-account .account-hero-section {
        min-height: 340px;
        padding: 40px 0 44px;
    }

    body.page-account .account-hero-content h1 {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    body.page-account .account-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    body.page-account .account-stat-item:nth-child(2) {
        border-right: 0;
    }

    body.page-account .account-stat-item:nth-child(1),
    body.page-account .account-stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(29, 23, 17, 0.06);
    }

    body.page-account .account-hero-profile {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* ─── Delivery Page (lookbook-style) ─────────────────────────────────────── */

body.page-delivery .delivery-hero-section {
    min-height: 430px;
    padding: 54px 0 58px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(251, 248, 243, 0.98) 0%, rgba(251, 248, 243, 0.92) 31%, rgba(251, 248, 243, 0.36) 52%, rgba(251, 248, 243, 0.06) 76%),
        url("../images/banners/hero-bridal-ivory.png");
    background-position: center right;
    background-size: cover;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-delivery .delivery-breadcrumbs {
    margin: 0 0 28px;
    color: rgba(29, 23, 17, 0.7);
    font-size: 0.86rem;
    display: flex;
    align-items: center;
    gap: 11px;
}

body.page-delivery .delivery-breadcrumbs a,
body.page-delivery .breadcrumb-current {
    color: #1d1711;
}

body.page-delivery .breadcrumb-separator {
    color: rgba(29, 23, 17, 0.42);
}

body.page-delivery .delivery-hero-content {
    max-width: 520px;
}

body.page-delivery .delivery-hero-content h1 {
    position: relative;
    margin: 0 0 34px;
    color: #050505;
    font-size: clamp(3.2rem, 5.4vw, 5.15rem);
    line-height: 0.92;
    letter-spacing: -0.035em;
}

body.page-delivery .delivery-hero-content h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-dark);
}

body.page-delivery .delivery-hero-description {
    max-width: 480px;
    margin: 0 0 30px;
    color: rgba(29, 23, 17, 0.9);
    font-size: 1.05rem;
    line-height: 1.62;
}

body.page-delivery .delivery-hero-content .btn {
    min-height: 46px;
    padding: 0 26px;
    border-radius: 5px;
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.page-delivery .delivery-hero-content .btn:hover {
    background: linear-gradient(180deg, #e0a838, #c8871a);
}

/* Delivery Options Section */
body.page-delivery .delivery-options-section {
    padding: 64px 0 56px;
    background: #fbf8f3;
}

body.page-delivery .delivery-options-header {
    text-align: center;
    margin: 0 0 40px;
}

body.page-delivery .delivery-options-header .eyebrow {
    margin: 0 0 8px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-delivery .delivery-options-header h2 {
    margin: 0 0 12px;
    color: #050505;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

body.page-delivery .delivery-options-intro {
    margin: 0 auto;
    max-width: 520px;
    color: rgba(29, 23, 17, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
}

body.page-delivery .delivery-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

body.page-delivery .delivery-option-card {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

body.page-delivery .delivery-option-card:hover {
    border-color: rgba(199, 162, 90, 0.4);
    box-shadow: 0 8px 24px rgba(29, 23, 17, 0.07);
}

body.page-delivery .delivery-option-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin: 0 0 18px;
}

body.page-delivery .delivery-option-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.page-delivery .delivery-option-icon .icon,
body.page-delivery .delivery-option-icon svg {
    width: 22px;
    height: 22px;
}

body.page-delivery .delivery-option-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

body.page-delivery .delivery-option-time {
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-delivery .delivery-option-fee {
    color: #050505;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

body.page-delivery .delivery-option-card h3 {
    margin: 0 0 10px;
    color: #050505;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-delivery .delivery-option-card p {
    margin: 0;
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.86rem;
    line-height: 1.55;
}

/* Shipping Zones Table */
body.page-delivery .delivery-zones-section {
    padding: 56px 0;
    background: #050505;
}

body.page-delivery .delivery-zones-header {
    text-align: center;
    margin: 0 0 36px;
}

body.page-delivery .delivery-zones-header .eyebrow {
    margin: 0 0 8px;
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-delivery .delivery-zones-header h2 {
    margin: 0 0 12px;
    color: #fffaf3;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

body.page-delivery .delivery-zones-intro {
    margin: 0 auto;
    max-width: 540px;
    color: rgba(255, 250, 243, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
}

body.page-delivery .delivery-zones-table {
    max-width: 760px;
    margin: 0 auto;
    border: 1px solid rgba(199, 162, 90, 0.18);
    border-radius: 6px;
    overflow: hidden;
}

body.page-delivery .delivery-zones-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(199, 162, 90, 0.12);
    align-items: center;
}

body.page-delivery .delivery-zones-row:last-child {
    border-bottom: 0;
}

body.page-delivery .delivery-zones-row-header {
    background: rgba(199, 162, 90, 0.08);
    color: var(--gold-light);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

body.page-delivery .delivery-zones-zone {
    color: #fffaf3;
    font-size: 0.9rem;
    font-weight: 700;
}

body.page-delivery .delivery-zones-time {
    color: rgba(255, 250, 243, 0.78);
    font-size: 0.86rem;
}

body.page-delivery .delivery-zones-fee {
    color: var(--gold-light);
    font-size: 0.86rem;
    font-weight: 700;
}

/* Order Process Timeline */
body.page-delivery .delivery-process-section {
    padding: 64px 0 56px;
    background: #fbf8f3;
}

body.page-delivery .delivery-process-header {
    text-align: center;
    margin: 0 0 44px;
}

body.page-delivery .delivery-process-header .eyebrow {
    margin: 0 0 8px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-delivery .delivery-process-header h2 {
    margin: 0 0 12px;
    color: #050505;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

body.page-delivery .delivery-process-intro {
    margin: 0 auto;
    max-width: 520px;
    color: rgba(29, 23, 17, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
}

body.page-delivery .delivery-process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

body.page-delivery .delivery-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 18px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

body.page-delivery .delivery-step:hover {
    border-color: rgba(199, 162, 90, 0.4);
    box-shadow: 0 6px 20px rgba(29, 23, 17, 0.06);
}

body.page-delivery .delivery-step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
}

body.page-delivery .delivery-step-number {
    font-size: 1.4rem;
    font-weight: 900;
    color: rgba(199, 162, 90, 0.4);
    line-height: 1;
    font-family: var(--font-heading);
}

body.page-delivery .delivery-step-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.page-delivery .delivery-step-icon .icon,
body.page-delivery .delivery-step-icon svg {
    width: 22px;
    height: 22px;
}

body.page-delivery .delivery-step-content h3 {
    margin: 0 0 8px;
    color: #050505;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-delivery .delivery-step-content p {
    margin: 0;
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.84rem;
    line-height: 1.5;
}

/* Contact Section */
body.page-delivery .delivery-contact-section {
    padding: 56px 0;
    background: #fbf8f3;
    border-top: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-delivery .delivery-contact-note {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 36px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
}

body.page-delivery .delivery-contact-icon {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.page-delivery .delivery-contact-icon .icon,
body.page-delivery .delivery-contact-icon svg {
    width: 26px;
    height: 26px;
}

body.page-delivery .delivery-contact-note > div:not(.delivery-contact-actions) {
    flex: 1 1 auto;
    min-width: 0;
}

body.page-delivery .delivery-contact-note h3 {
    margin: 0 0 6px;
    color: #050505;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-delivery .delivery-contact-note p {
    margin: 0;
    color: rgba(29, 23, 17, 0.78);
    font-size: 0.9rem;
    line-height: 1.6;
}

body.page-delivery .delivery-contact-note p a {
    color: var(--gold-dark);
    text-decoration: none;
}

body.page-delivery .delivery-contact-note p a:hover {
    text-decoration: underline;
}

body.page-delivery .delivery-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 0 0 auto;
    min-width: fit-content;
}

body.page-delivery .delivery-contact-actions .btn {
    min-height: 42px;
    padding: 0 22px;
    border-radius: 5px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    white-space: nowrap;
    width: auto;
    min-width: fit-content;
    overflow-wrap: normal;
    flex-shrink: 0;
}

body.page-delivery .delivery-contact-actions .btn-gold {
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    border: 0;
}

body.page-delivery .delivery-contact-actions .btn-gold:hover {
    background: linear-gradient(180deg, #e0a838, #c8871a);
}

body.page-delivery .delivery-contact-actions .btn-gold-outline {
    border: 1px solid var(--gold-dark);
    background: transparent;
    color: var(--gold-dark);
}

body.page-delivery .delivery-contact-actions .btn-gold-outline:hover {
    background: var(--gold-dark);
    color: #fff8ef;
}

/* Related Pages Section */
body.page-delivery .delivery-related-section {
    padding: 56px 0;
    background: #fbf8f3;
    border-top: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-delivery .delivery-related-header {
    text-align: center;
    margin: 0 0 36px;
}

body.page-delivery .delivery-related-header .eyebrow {
    margin: 0 0 8px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-delivery .delivery-related-header h2 {
    margin: 0;
    color: #050505;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

body.page-delivery .delivery-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

body.page-delivery .delivery-related-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    text-decoration: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

body.page-delivery .delivery-related-card:hover {
    border-color: rgba(199, 162, 90, 0.4);
    box-shadow: 0 8px 24px rgba(29, 23, 17, 0.07);
    transform: translateY(-2px);
}

body.page-delivery .delivery-related-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 0 0 18px;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.page-delivery .delivery-related-icon .icon,
body.page-delivery .delivery-related-icon svg {
    width: 22px;
    height: 22px;
}

body.page-delivery .delivery-related-card h3 {
    margin: 0 0 8px;
    color: #050505;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-delivery .delivery-related-card p {
    margin: 0 0 18px;
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.88rem;
    line-height: 1.55;
    flex: 1 1 auto;
}

body.page-delivery .delivery-related-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}

body.page-delivery .delivery-related-link .icon,
body.page-delivery .delivery-related-link svg {
    width: 14px;
    height: 14px;
}

/* Trust strip on delivery page */
body.page-delivery .trust-strip {
    background: #fbf8f3;
    border-top: 1px solid rgba(29, 23, 17, 0.06);
}

/* Responsive */
@media (max-width: 980px) {
    body.page-delivery .delivery-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    body.page-delivery .delivery-process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    body.page-delivery .delivery-related-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    body.page-delivery .delivery-zones-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 14px 20px;
    }

    body.page-delivery .delivery-zones-row-header {
        display: none;
    }

    body.page-delivery .delivery-zones-zone::before {
        content: "Zone: ";
        color: var(--gold-light);
        font-size: 0.72rem;
        font-weight: 900;
        letter-spacing: 0.04em;
    }

    body.page-delivery .delivery-zones-time::before {
        content: "Time: ";
        color: var(--gold-light);
        font-size: 0.72rem;
        font-weight: 900;
        letter-spacing: 0.04em;
    }

    body.page-delivery .delivery-zones-fee::before {
        content: "Fee: ";
        color: var(--gold-light);
        font-size: 0.72rem;
        font-weight: 900;
        letter-spacing: 0.04em;
    }
}

@media (max-width: 640px) {
    body.page-delivery .delivery-hero-section {
        min-height: 340px;
        padding: 40px 0 44px;
    }

    body.page-delivery .delivery-hero-content h1 {
        font-size: clamp(2.4rem, 8vw, 3.2rem);
    }

    body.page-delivery .delivery-options-grid {
        grid-template-columns: 1fr;
    }

    body.page-delivery .delivery-process-timeline {
        grid-template-columns: 1fr;
    }

    body.page-delivery .delivery-contact-note {
        flex-direction: column;
        text-align: center;
        gap: 18px;
        padding: 28px 22px;
    }

    body.page-delivery .delivery-contact-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* ─── Returns Page (lookbook-style) ──────────────────────────────────────── */

body.page-returns .returns-hero-section {
    min-height: 430px;
    padding: 54px 0 58px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(251, 248, 243, 0.98) 0%, rgba(251, 248, 243, 0.92) 31%, rgba(251, 248, 243, 0.36) 52%, rgba(251, 248, 243, 0.06) 76%),
        url("../images/banners/promo-festive-sale.png");
    background-position: center right;
    background-size: cover;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-returns .returns-breadcrumbs {
    margin: 0 0 28px;
    color: rgba(29, 23, 17, 0.7);
    font-size: 0.86rem;
    display: flex;
    align-items: center;
    gap: 11px;
}

body.page-returns .returns-breadcrumbs a,
body.page-returns .breadcrumb-current {
    color: #1d1711;
}

body.page-returns .breadcrumb-separator {
    color: rgba(29, 23, 17, 0.42);
}

body.page-returns .returns-hero-content {
    max-width: 520px;
}

body.page-returns .returns-hero-content h1 {
    position: relative;
    margin: 0 0 34px;
    color: #050505;
    font-size: clamp(2.6rem, 4.8vw, 4.4rem);
    line-height: 0.92;
    letter-spacing: -0.035em;
}

body.page-returns .returns-hero-content h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-dark);
}

body.page-returns .returns-hero-description {
    max-width: 480px;
    margin: 0 0 30px;
    color: rgba(29, 23, 17, 0.9);
    font-size: 1.05rem;
    line-height: 1.62;
}

body.page-returns .returns-hero-content .btn {
    min-height: 46px;
    padding: 0 26px;
    border-radius: 5px;
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.page-returns .returns-hero-content .btn:hover {
    background: linear-gradient(180deg, #e0a838, #c8871a);
}

/* Quick Facts Strip */
body.page-returns .returns-facts-strip {
    padding: 0;
    background: #fbf8f3;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-returns .returns-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

body.page-returns .returns-fact-card {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-returns .returns-fact-card:last-child {
    border-right: 0;
}

body.page-returns .returns-fact-number {
    display: block;
    margin: 0 0 6px;
    color: var(--gold-dark);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    line-height: 1;
    font-family: var(--font-heading);
}

body.page-returns .returns-fact-label {
    display: block;
    color: rgba(29, 23, 17, 0.7);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

/* Steps Timeline Section */
body.page-returns .returns-steps-section {
    padding: 64px 0 56px;
    background: #fbf8f3;
}

body.page-returns .returns-steps-header {
    text-align: center;
    margin: 0 0 44px;
}

body.page-returns .returns-steps-header .eyebrow {
    margin: 0 0 8px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-returns .returns-steps-header h2 {
    margin: 0 0 12px;
    color: #050505;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

body.page-returns .returns-steps-intro {
    margin: 0 auto;
    max-width: 520px;
    color: rgba(29, 23, 17, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
}

body.page-returns .returns-steps-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
}

body.page-returns .returns-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 18px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

body.page-returns .returns-step:hover {
    border-color: rgba(199, 162, 90, 0.4);
    box-shadow: 0 6px 20px rgba(29, 23, 17, 0.06);
}

body.page-returns .returns-step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
}

body.page-returns .returns-step-number {
    font-size: 1.4rem;
    font-weight: 900;
    color: rgba(199, 162, 90, 0.4);
    line-height: 1;
    font-family: var(--font-heading);
}

body.page-returns .returns-step-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.page-returns .returns-step-icon .icon,
body.page-returns .returns-step-icon svg {
    width: 22px;
    height: 22px;
}

body.page-returns .returns-step-content h3 {
    margin: 0 0 8px;
    color: #050505;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-returns .returns-step-content p {
    margin: 0;
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.84rem;
    line-height: 1.5;
}

/* Policy Cards Section */
body.page-returns .returns-policy-section {
    padding: 64px 0 56px;
    background: #fbf8f3;
    border-top: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-returns .returns-policy-header {
    text-align: center;
    margin: 0 0 36px;
}

body.page-returns .returns-policy-header .eyebrow {
    margin: 0 0 8px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-returns .returns-policy-header h2 {
    margin: 0;
    color: #050505;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

body.page-returns .returns-policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

body.page-returns .returns-policy-card {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

body.page-returns .returns-policy-card:hover {
    border-color: rgba(199, 162, 90, 0.3);
    box-shadow: 0 6px 20px rgba(29, 23, 17, 0.05);
}

body.page-returns .returns-policy-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 0 0 18px;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.page-returns .returns-policy-icon .icon,
body.page-returns .returns-policy-icon svg {
    width: 22px;
    height: 22px;
}

body.page-returns .returns-policy-card h3 {
    margin: 0 0 10px;
    color: #050505;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-returns .returns-policy-card p {
    margin: 0;
    color: rgba(29, 23, 17, 0.78);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Non-Returnable Items Section */
body.page-returns .returns-nonreturnable-section {
    padding: 56px 0;
    background: #050505;
}

body.page-returns .returns-nonreturnable-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 0 0 32px;
}

body.page-returns .returns-nonreturnable-icon {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    border: 1px solid rgba(199, 162, 90, 0.76);
    border-radius: 50%;
    color: var(--gold-light);
}

body.page-returns .returns-nonreturnable-icon .icon,
body.page-returns .returns-nonreturnable-icon svg {
    width: 26px;
    height: 26px;
}

body.page-returns .returns-nonreturnable-header .eyebrow {
    margin: 0 0 6px;
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-returns .returns-nonreturnable-header h2 {
    margin: 0 0 8px;
    color: #fffaf3;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

body.page-returns .returns-nonreturnable-header p {
    margin: 0;
    color: rgba(255, 250, 243, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 560px;
}

body.page-returns .returns-nonreturnable-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

body.page-returns .returns-nonreturnable-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(199, 162, 90, 0.18);
    border-radius: 6px;
    transition: border-color 0.18s ease, background 0.18s ease;
}

body.page-returns .returns-nonreturnable-item:hover {
    border-color: rgba(199, 162, 90, 0.5);
    background: rgba(255, 255, 255, 0.06);
}

body.page-returns .returns-nonreturnable-item-icon {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-light);
}

body.page-returns .returns-nonreturnable-item-icon .icon,
body.page-returns .returns-nonreturnable-item-icon svg {
    width: 16px;
    height: 16px;
}

body.page-returns .returns-nonreturnable-item > span:last-child {
    color: rgba(255, 250, 243, 0.88);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.4;
}

/* Contact Section */
body.page-returns .returns-contact-section {
    padding: 56px 0;
    background: #fbf8f3;
    border-top: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-returns .returns-contact-note {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 36px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
}

body.page-returns .returns-contact-icon {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.page-returns .returns-contact-icon .icon,
body.page-returns .returns-contact-icon svg {
    width: 26px;
    height: 26px;
}

body.page-returns .returns-contact-note > div:not(.returns-contact-actions) {
    flex: 1 1 auto;
    min-width: 0;
}

body.page-returns .returns-contact-note h3 {
    margin: 0 0 6px;
    color: #050505;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-returns .returns-contact-note p {
    margin: 0;
    color: rgba(29, 23, 17, 0.78);
    font-size: 0.9rem;
    line-height: 1.6;
}

body.page-returns .returns-contact-note p a {
    color: var(--gold-dark);
    text-decoration: none;
}

body.page-returns .returns-contact-note p a:hover {
    text-decoration: underline;
}

body.page-returns .returns-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 0 0 auto;
    min-width: fit-content;
}

body.page-returns .returns-contact-actions .btn {
    min-height: 42px;
    padding: 0 22px;
    border-radius: 5px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    white-space: nowrap;
    width: auto;
    min-width: fit-content;
    overflow-wrap: normal;
    flex-shrink: 0;
}

body.page-returns .returns-contact-actions .btn-gold {
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    border: 0;
}

body.page-returns .returns-contact-actions .btn-gold:hover {
    background: linear-gradient(180deg, #e0a838, #c8871a);
}

body.page-returns .returns-contact-actions .btn-gold-outline {
    border: 1px solid var(--gold-dark);
    background: transparent;
    color: var(--gold-dark);
}

body.page-returns .returns-contact-actions .btn-gold-outline:hover {
    background: var(--gold-dark);
    color: #fff8ef;
}

/* Related Pages Section */
body.page-returns .returns-related-section {
    padding: 56px 0;
    background: #fbf8f3;
    border-top: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-returns .returns-related-header {
    text-align: center;
    margin: 0 0 36px;
}

body.page-returns .returns-related-header .eyebrow {
    margin: 0 0 8px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-returns .returns-related-header h2 {
    margin: 0;
    color: #050505;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

body.page-returns .returns-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

body.page-returns .returns-related-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    text-decoration: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

body.page-returns .returns-related-card:hover {
    border-color: rgba(199, 162, 90, 0.4);
    box-shadow: 0 8px 24px rgba(29, 23, 17, 0.07);
    transform: translateY(-2px);
}

body.page-returns .returns-related-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 0 0 18px;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.page-returns .returns-related-icon .icon,
body.page-returns .returns-related-icon svg {
    width: 22px;
    height: 22px;
}

body.page-returns .returns-related-card h3 {
    margin: 0 0 8px;
    color: #050505;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-returns .returns-related-card p {
    margin: 0 0 18px;
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.88rem;
    line-height: 1.55;
    flex: 1 1 auto;
}

body.page-returns .returns-related-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}

body.page-returns .returns-related-link .icon,
body.page-returns .returns-related-link svg {
    width: 14px;
    height: 14px;
}

/* Trust strip on returns page */
body.page-returns .trust-strip {
    background: #fbf8f3;
    border-top: 1px solid rgba(29, 23, 17, 0.06);
}

/* Responsive */
@media (max-width: 980px) {
    body.page-returns .returns-steps-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    body.page-returns .returns-policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    body.page-returns .returns-nonreturnable-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    body.page-returns .returns-related-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    body.page-returns .returns-facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    body.page-returns .returns-fact-card:nth-child(2) {
        border-right: 0;
    }

    body.page-returns .returns-fact-card:nth-child(1),
    body.page-returns .returns-fact-card:nth-child(2) {
        border-bottom: 1px solid rgba(29, 23, 17, 0.06);
    }
}

@media (max-width: 640px) {
    body.page-returns .returns-hero-section {
        min-height: 340px;
        padding: 40px 0 44px;
    }

    body.page-returns .returns-hero-content h1 {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    body.page-returns .returns-steps-timeline {
        grid-template-columns: 1fr;
    }

    body.page-returns .returns-policy-grid {
        grid-template-columns: 1fr;
    }

    body.page-returns .returns-nonreturnable-grid {
        grid-template-columns: 1fr;
    }

    body.page-returns .returns-nonreturnable-header {
        flex-direction: column;
        gap: 14px;
    }

    body.page-returns .returns-facts-grid {
        grid-template-columns: 1fr;
    }

    body.page-returns .returns-fact-card {
        border-right: 0;
        border-bottom: 1px solid rgba(29, 23, 17, 0.06);
    }

    body.page-returns .returns-fact-card:last-child {
        border-bottom: 0;
    }

    body.page-returns .returns-contact-note {
        flex-direction: column;
        text-align: center;
        gap: 18px;
        padding: 28px 22px;
    }

    body.page-returns .returns-contact-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* ─── Privacy Page (lookbook-style) ──────────────────────────────────────── */

body.page-privacy .privacy-hero-section {
    min-height: 430px;
    padding: 54px 0 58px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(251, 248, 243, 0.98) 0%, rgba(251, 248, 243, 0.92) 31%, rgba(251, 248, 243, 0.36) 52%, rgba(251, 248, 243, 0.06) 76%),
        url("../images/banners/banner-whatsapp-support.png");
    background-position: center right;
    background-size: cover;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-privacy .privacy-breadcrumbs {
    margin: 0 0 28px;
    color: rgba(29, 23, 17, 0.7);
    font-size: 0.86rem;
    display: flex;
    align-items: center;
    gap: 11px;
}

body.page-privacy .privacy-breadcrumbs a,
body.page-privacy .breadcrumb-current {
    color: #1d1711;
}

body.page-privacy .breadcrumb-separator {
    color: rgba(29, 23, 17, 0.42);
}

body.page-privacy .privacy-hero-content {
    max-width: 520px;
}

body.page-privacy .privacy-hero-content h1 {
    position: relative;
    margin: 0 0 34px;
    color: #050505;
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    line-height: 0.92;
    letter-spacing: -0.035em;
}

body.page-privacy .privacy-hero-content h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-dark);
}

body.page-privacy .privacy-hero-description {
    max-width: 480px;
    margin: 0 0 28px;
    color: rgba(29, 23, 17, 0.9);
    font-size: 1.05rem;
    line-height: 1.62;
}

body.page-privacy .privacy-effective-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border: 1px solid rgba(199, 162, 90, 0.4);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
}

body.page-privacy .privacy-effective-label {
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

body.page-privacy .privacy-effective-date {
    color: #050505;
    font-size: 0.82rem;
    font-weight: 700;
}

/* Compliance Badges Strip */
body.page-privacy .privacy-compliance-strip {
    padding: 0;
    background: #fbf8f3;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-privacy .privacy-compliance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

body.page-privacy .privacy-compliance-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 28px 24px;
    border-right: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-privacy .privacy-compliance-badge:last-child {
    border-right: 0;
}

body.page-privacy .privacy-compliance-icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.page-privacy .privacy-compliance-icon .icon,
body.page-privacy .privacy-compliance-icon svg {
    width: 20px;
    height: 20px;
}

body.page-privacy .privacy-compliance-badge strong {
    display: block;
    color: #050505;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    margin: 0 0 2px;
}

body.page-privacy .privacy-compliance-badge span {
    color: rgba(29, 23, 17, 0.62);
    font-size: 0.78rem;
    line-height: 1.4;
}

/* Your Rights Section */
body.page-privacy .privacy-rights-section {
    padding: 64px 0 56px;
    background: #050505;
}

body.page-privacy .privacy-rights-header {
    text-align: center;
    margin: 0 0 40px;
}

body.page-privacy .privacy-rights-header .eyebrow {
    margin: 0 0 8px;
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-privacy .privacy-rights-header h2 {
    margin: 0 0 12px;
    color: #fffaf3;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

body.page-privacy .privacy-rights-intro {
    margin: 0 auto;
    max-width: 520px;
    color: rgba(255, 250, 243, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
}

body.page-privacy .privacy-rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0 0 32px;
}

body.page-privacy .privacy-right-card {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(199, 162, 90, 0.18);
    border-radius: 6px;
    text-align: center;
    transition: border-color 0.18s ease, background 0.18s ease;
}

body.page-privacy .privacy-right-card:hover {
    border-color: rgba(199, 162, 90, 0.5);
    background: rgba(255, 255, 255, 0.06);
}

body.page-privacy .privacy-right-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 0 0 16px;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-light);
}

body.page-privacy .privacy-right-icon .icon,
body.page-privacy .privacy-right-icon svg {
    width: 22px;
    height: 22px;
}

body.page-privacy .privacy-right-card h3 {
    margin: 0 0 8px;
    color: #fffaf3;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-privacy .privacy-right-card p {
    margin: 0;
    color: rgba(255, 250, 243, 0.72);
    font-size: 0.86rem;
    line-height: 1.5;
}

body.page-privacy .privacy-rights-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

body.page-privacy .privacy-rights-actions .btn {
    min-height: 46px;
    padding: 0 26px;
    border-radius: 5px;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.page-privacy .privacy-rights-actions .btn-gold {
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    border: 0;
}

body.page-privacy .privacy-rights-actions .btn-gold:hover {
    background: linear-gradient(180deg, #e0a838, #c8871a);
}

body.page-privacy .privacy-rights-actions .btn-gold-outline {
    border: 1px solid var(--gold-dark);
    background: transparent;
    color: var(--gold-light);
}

body.page-privacy .privacy-rights-actions .btn-gold-outline:hover {
    background: var(--gold-dark);
    color: #fff8ef;
}

/* Privacy Content Sections */
body.page-privacy .privacy-content-section {
    padding: 64px 0 56px;
    background: #fbf8f3;
}

body.page-privacy .privacy-content-container {
    max-width: 960px;
}

body.page-privacy .privacy-sections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 0 40px;
}

body.page-privacy .privacy-card {
    padding: 28px 26px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

body.page-privacy .privacy-card:hover {
    border-color: rgba(199, 162, 90, 0.3);
    box-shadow: 0 6px 20px rgba(29, 23, 17, 0.05);
}

body.page-privacy .privacy-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 14px;
}

body.page-privacy .privacy-card-number {
    font-size: 1.6rem;
    font-weight: 900;
    color: rgba(199, 162, 90, 0.4);
    line-height: 1;
    font-family: var(--font-heading);
}

body.page-privacy .privacy-card-icon {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.page-privacy .privacy-card-icon .icon,
body.page-privacy .privacy-card-icon svg {
    width: 18px;
    height: 18px;
}

body.page-privacy .privacy-card h2 {
    margin: 0 0 10px;
    color: #050505;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}

body.page-privacy .privacy-card p {
    margin: 0;
    color: rgba(29, 23, 17, 0.78);
    font-size: 0.9rem;
    line-height: 1.65;
}

body.page-privacy .privacy-card-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.page-privacy .privacy-card-list li {
    position: relative;
    padding: 6px 0 6px 22px;
    color: rgba(29, 23, 17, 0.78);
    font-size: 0.9rem;
    line-height: 1.5;
}

body.page-privacy .privacy-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-dark);
}

/* Contact Note */
body.page-privacy .privacy-contact-note {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: #050505;
    border-radius: 6px;
}

body.page-privacy .privacy-contact-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border: 1px solid rgba(199, 162, 90, 0.76);
    border-radius: 50%;
    color: var(--gold-light);
}

body.page-privacy .privacy-contact-icon .icon,
body.page-privacy .privacy-contact-icon svg {
    width: 22px;
    height: 22px;
}

body.page-privacy .privacy-contact-note > div {
    flex: 1 1 auto;
}

body.page-privacy .privacy-contact-note h3 {
    margin: 0 0 4px;
    color: #fffaf3;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-privacy .privacy-contact-note p {
    margin: 0;
    color: rgba(255, 250, 243, 0.78);
    font-size: 0.88rem;
    line-height: 1.5;
}

body.page-privacy .privacy-contact-note p a {
    color: var(--gold-light);
    text-decoration: none;
}

body.page-privacy .privacy-contact-note p a:hover {
    text-decoration: underline;
}

body.page-privacy .privacy-contact-note .btn {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 22px;
    border-radius: 5px;
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
}

body.page-privacy .privacy-contact-note .btn:hover {
    background: linear-gradient(180deg, #e0a838, #c8871a);
}

/* Related Pages Section */
body.page-privacy .privacy-related-section {
    padding: 56px 0;
    background: #fbf8f3;
    border-top: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-privacy .privacy-related-header {
    text-align: center;
    margin: 0 0 36px;
}

body.page-privacy .privacy-related-header .eyebrow {
    margin: 0 0 8px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-privacy .privacy-related-header h2 {
    margin: 0;
    color: #050505;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

body.page-privacy .privacy-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

body.page-privacy .privacy-related-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    text-decoration: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

body.page-privacy .privacy-related-card:hover {
    border-color: rgba(199, 162, 90, 0.4);
    box-shadow: 0 8px 24px rgba(29, 23, 17, 0.07);
    transform: translateY(-2px);
}

body.page-privacy .privacy-related-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 0 0 18px;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.page-privacy .privacy-related-icon .icon,
body.page-privacy .privacy-related-icon svg {
    width: 22px;
    height: 22px;
}

body.page-privacy .privacy-related-card h3 {
    margin: 0 0 8px;
    color: #050505;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-privacy .privacy-related-card p {
    margin: 0 0 18px;
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.88rem;
    line-height: 1.55;
    flex: 1 1 auto;
}

body.page-privacy .privacy-related-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}

body.page-privacy .privacy-related-link .icon,
body.page-privacy .privacy-related-link svg {
    width: 14px;
    height: 14px;
}

/* Trust strip on privacy page */
body.page-privacy .trust-strip {
    background: #fbf8f3;
    border-top: 1px solid rgba(29, 23, 17, 0.06);
}

/* Responsive */
@media (max-width: 860px) {
    body.page-privacy .privacy-sections-grid {
        grid-template-columns: 1fr;
    }

    body.page-privacy .privacy-rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    body.page-privacy .privacy-related-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    body.page-privacy .privacy-compliance-grid {
        grid-template-columns: 1fr;
    }

    body.page-privacy .privacy-compliance-badge {
        border-right: 0;
        border-bottom: 1px solid rgba(29, 23, 17, 0.06);
    }

    body.page-privacy .privacy-compliance-badge:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 640px) {
    body.page-privacy .privacy-hero-section {
        min-height: 340px;
        padding: 40px 0 44px;
    }

    body.page-privacy .privacy-hero-content h1 {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    body.page-privacy .privacy-rights-grid {
        grid-template-columns: 1fr;
    }

    body.page-privacy .privacy-rights-actions {
        flex-direction: column;
        align-items: center;
    }

    body.page-privacy .privacy-rights-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    body.page-privacy .privacy-contact-note {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px 20px;
    }

    body.page-privacy .privacy-contact-note .btn {
        width: 100%;
        max-width: 240px;
        justify-content: center;
    }
}

/* ─── Terms Page (lookbook-style) ────────────────────────────────────────── */

body.page-terms .terms-hero-section {
    min-height: 430px;
    padding: 54px 0 58px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(251, 248, 243, 0.98) 0%, rgba(251, 248, 243, 0.92) 31%, rgba(251, 248, 243, 0.36) 52%, rgba(251, 248, 243, 0.06) 76%),
        url("../images/banners/footer-newsletter.png");
    background-position: center right;
    background-size: cover;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-terms .terms-breadcrumbs {
    margin: 0 0 28px;
    color: rgba(29, 23, 17, 0.7);
    font-size: 0.86rem;
    display: flex;
    align-items: center;
    gap: 11px;
}

body.page-terms .terms-breadcrumbs a,
body.page-terms .breadcrumb-current {
    color: #1d1711;
}

body.page-terms .breadcrumb-separator {
    color: rgba(29, 23, 17, 0.42);
}

body.page-terms .terms-hero-content {
    max-width: 520px;
}

body.page-terms .terms-hero-content h1 {
    position: relative;
    margin: 0 0 34px;
    color: #050505;
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    line-height: 0.92;
    letter-spacing: -0.035em;
}

body.page-terms .terms-hero-content h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-dark);
}

body.page-terms .terms-hero-description {
    max-width: 480px;
    margin: 0 0 28px;
    color: rgba(29, 23, 17, 0.9);
    font-size: 1.05rem;
    line-height: 1.62;
}

body.page-terms .terms-effective-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border: 1px solid rgba(199, 162, 90, 0.4);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
}

body.page-terms .terms-effective-label {
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

body.page-terms .terms-effective-date {
    color: #050505;
    font-size: 0.82rem;
    font-weight: 700;
}

/* Terms Content Section */
body.page-terms .terms-content-section {
    padding: 64px 0 56px;
    background: #fbf8f3;
}

body.page-terms .terms-content-container {
    max-width: 960px;
}

body.page-terms .terms-sections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 0 40px;
}

body.page-terms .terms-card {
    padding: 28px 26px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

body.page-terms .terms-card:hover {
    border-color: rgba(199, 162, 90, 0.3);
    box-shadow: 0 6px 20px rgba(29, 23, 17, 0.05);
}

body.page-terms .terms-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 14px;
}

body.page-terms .terms-card-number {
    font-size: 1.6rem;
    font-weight: 900;
    color: rgba(199, 162, 90, 0.4);
    line-height: 1;
    font-family: var(--font-heading);
}

body.page-terms .terms-card-icon {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.page-terms .terms-card-icon .icon,
body.page-terms .terms-card-icon svg {
    width: 18px;
    height: 18px;
}

body.page-terms .terms-card h2 {
    margin: 0 0 10px;
    color: #050505;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}

body.page-terms .terms-card p {
    margin: 0;
    color: rgba(29, 23, 17, 0.78);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Contact Note */
body.page-terms .terms-contact-note {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: #050505;
    border-radius: 6px;
}

body.page-terms .terms-contact-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border: 1px solid rgba(199, 162, 90, 0.76);
    border-radius: 50%;
    color: var(--gold-light);
}

body.page-terms .terms-contact-icon .icon,
body.page-terms .terms-contact-icon svg {
    width: 22px;
    height: 22px;
}

body.page-terms .terms-contact-note > div {
    flex: 1 1 auto;
}

body.page-terms .terms-contact-note h3 {
    margin: 0 0 4px;
    color: #fffaf3;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-terms .terms-contact-note p {
    margin: 0;
    color: rgba(255, 250, 243, 0.78);
    font-size: 0.88rem;
    line-height: 1.5;
}

body.page-terms .terms-contact-note p a {
    color: var(--gold-light);
    text-decoration: none;
}

body.page-terms .terms-contact-note p a:hover {
    text-decoration: underline;
}

body.page-terms .terms-contact-note .btn {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 22px;
    border-radius: 5px;
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
}

body.page-terms .terms-contact-note .btn:hover {
    background: linear-gradient(180deg, #e0a838, #c8871a);
}

/* Related Pages Section */
body.page-terms .terms-related-section {
    padding: 56px 0;
    background: #fbf8f3;
    border-top: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-terms .terms-related-header {
    text-align: center;
    margin: 0 0 36px;
}

body.page-terms .terms-related-header .eyebrow {
    margin: 0 0 8px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-terms .terms-related-header h2 {
    margin: 0;
    color: #050505;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

body.page-terms .terms-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

body.page-terms .terms-related-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    text-decoration: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

body.page-terms .terms-related-card:hover {
    border-color: rgba(199, 162, 90, 0.4);
    box-shadow: 0 8px 24px rgba(29, 23, 17, 0.07);
    transform: translateY(-2px);
}

body.page-terms .terms-related-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 0 0 18px;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.page-terms .terms-related-icon .icon,
body.page-terms .terms-related-icon svg {
    width: 22px;
    height: 22px;
}

body.page-terms .terms-related-card h3 {
    margin: 0 0 8px;
    color: #050505;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-terms .terms-related-card p {
    margin: 0 0 18px;
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.88rem;
    line-height: 1.55;
    flex: 1 1 auto;
}

body.page-terms .terms-related-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}

body.page-terms .terms-related-link .icon,
body.page-terms .terms-related-link svg {
    width: 14px;
    height: 14px;
}

/* Trust strip on terms page */
body.page-terms .trust-strip {
    background: #fbf8f3;
    border-top: 1px solid rgba(29, 23, 17, 0.06);
}

/* Responsive */
@media (max-width: 860px) {
    body.page-terms .terms-sections-grid {
        grid-template-columns: 1fr;
    }

    body.page-terms .terms-related-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    body.page-terms .terms-hero-section {
        min-height: 340px;
        padding: 40px 0 44px;
    }

    body.page-terms .terms-hero-content h1 {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    body.page-terms .terms-contact-note {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px 20px;
    }

    body.page-terms .terms-contact-note .btn {
        width: 100%;
        max-width: 240px;
        justify-content: center;
    }
}

/* ─── FAQ Page (lookbook-style) ──────────────────────────────────────────── */

body.page-faq .faq-hero-section {
    min-height: 430px;
    padding: 54px 0 58px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(251, 248, 243, 0.98) 0%, rgba(251, 248, 243, 0.92) 31%, rgba(251, 248, 243, 0.36) 52%, rgba(251, 248, 243, 0.06) 76%),
        url("../images/banners/hero-bridal-ivory.png");
    background-position: center right;
    background-size: cover;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-faq .faq-breadcrumbs {
    margin: 0 0 28px;
    color: rgba(29, 23, 17, 0.7);
    font-size: 0.86rem;
    display: flex;
    align-items: center;
    gap: 11px;
}

body.page-faq .faq-breadcrumbs a,
body.page-faq .breadcrumb-current {
    color: #1d1711;
}

body.page-faq .breadcrumb-separator {
    color: rgba(29, 23, 17, 0.42);
}

body.page-faq .faq-hero-content {
    max-width: 480px;
}

body.page-faq .faq-hero-content h1 {
    position: relative;
    margin: 0 0 34px;
    color: #050505;
    font-size: clamp(3.2rem, 5.4vw, 5.15rem);
    line-height: 0.92;
    letter-spacing: -0.035em;
}

body.page-faq .faq-hero-content h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-dark);
}

body.page-faq .faq-hero-description {
    max-width: 460px;
    margin: 0 0 30px;
    color: rgba(29, 23, 17, 0.9);
    font-size: 1.05rem;
    line-height: 1.62;
}

body.page-faq .faq-hero-content .btn {
    min-height: 46px;
    padding: 0 26px;
    border-radius: 5px;
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.page-faq .faq-hero-content .btn:hover {
    background: linear-gradient(180deg, #e0a838, #c8871a);
}

/* FAQ Content Section */
body.page-faq .faq-content-section {
    padding: 64px 0 56px;
    background: #fbf8f3;
}

body.page-faq .faq-content-container {
    max-width: 880px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* FAQ Category */
body.page-faq .faq-category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(29, 23, 17, 0.08);
}

body.page-faq .faq-category-icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.page-faq .faq-category-icon .icon,
body.page-faq .faq-category-icon svg {
    width: 20px;
    height: 20px;
}

body.page-faq .faq-category-header h2 {
    margin: 0;
    color: #050505;
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

/* FAQ Accordion Items */
body.page-faq .faq-category-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.page-faq .faq-accordion-item {
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

body.page-faq .faq-accordion-item[open] {
    border-color: rgba(199, 162, 90, 0.4);
    box-shadow: 0 4px 16px rgba(29, 23, 17, 0.06);
}

body.page-faq .faq-accordion-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    color: #050505;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.4;
    transition: background 0.18s ease;
}

body.page-faq .faq-accordion-item summary::-webkit-details-marker {
    display: none;
}

body.page-faq .faq-accordion-item summary:hover {
    background: rgba(199, 162, 90, 0.04);
}

body.page-faq .faq-accordion-toggle {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: var(--gold-dark);
    transition: transform 0.22s ease;
}

body.page-faq .faq-accordion-toggle .icon,
body.page-faq .faq-accordion-toggle svg {
    width: 16px;
    height: 16px;
}

body.page-faq .faq-accordion-item[open] .faq-accordion-toggle {
    transform: rotate(180deg);
}

body.page-faq .faq-accordion-body {
    padding: 0 22px 20px;
}

body.page-faq .faq-accordion-body p {
    margin: 0;
    color: rgba(29, 23, 17, 0.78);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* CTA Section */
body.page-faq .faq-cta-section {
    padding: 0;
    background: #050505;
}

body.page-faq .faq-cta-container {
    padding: 56px 0;
}

body.page-faq .faq-cta-content {
    text-align: center;
}

body.page-faq .faq-cta-icon {
    display: inline-grid;
    place-items: center;
    width: 60px;
    height: 60px;
    margin: 0 0 20px;
    border: 1px solid rgba(199, 162, 90, 0.76);
    border-radius: 50%;
    color: var(--gold-light);
}

body.page-faq .faq-cta-icon .icon,
body.page-faq .faq-cta-icon svg {
    width: 26px;
    height: 26px;
}

body.page-faq .faq-cta-content h2 {
    margin: 0 0 12px;
    color: #fffaf3;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

body.page-faq .faq-cta-content p {
    margin: 0 0 28px;
    color: rgba(255, 250, 243, 0.82);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

body.page-faq .faq-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

body.page-faq .faq-cta-actions .btn {
    min-height: 46px;
    padding: 0 26px;
    border-radius: 5px;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.page-faq .faq-cta-actions .btn-gold {
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    border: 0;
}

body.page-faq .faq-cta-actions .btn-gold:hover {
    background: linear-gradient(180deg, #e0a838, #c8871a);
}

body.page-faq .faq-cta-actions .btn-gold-outline {
    border: 1px solid var(--gold-dark);
    background: transparent;
    color: var(--gold-light);
}

body.page-faq .faq-cta-actions .btn-gold-outline:hover {
    background: var(--gold-dark);
    color: #fff8ef;
}

/* Trust strip on FAQ page */
body.page-faq .trust-strip {
    background: #fbf8f3;
    border-top: 1px solid rgba(29, 23, 17, 0.06);
}

/* Responsive */
@media (max-width: 640px) {
    body.page-faq .faq-hero-section {
        min-height: 340px;
        padding: 40px 0 44px;
    }

    body.page-faq .faq-hero-content h1 {
        font-size: clamp(2.4rem, 8vw, 3.2rem);
    }

    body.page-faq .faq-accordion-item summary {
        padding: 16px 18px;
        font-size: 0.86rem;
    }

    body.page-faq .faq-accordion-body {
        padding: 0 18px 18px;
    }

    body.page-faq .faq-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    body.page-faq .faq-cta-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ─── About Page (lookbook-style) ────────────────────────────────────────── */

body.page-about .about-hero-section {
    min-height: 430px;
    padding: 54px 0 58px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(251, 248, 243, 0.98) 0%, rgba(251, 248, 243, 0.92) 31%, rgba(251, 248, 243, 0.36) 52%, rgba(251, 248, 243, 0.06) 76%),
        url("../images/banners/hero-gold-kaftan-alt.png");
    background-position: center right;
    background-size: cover;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-about .about-breadcrumbs {
    margin: 0 0 28px;
    color: rgba(29, 23, 17, 0.7);
    font-size: 0.86rem;
    display: flex;
    align-items: center;
    gap: 11px;
}

body.page-about .about-breadcrumbs a,
body.page-about .breadcrumb-current {
    color: #1d1711;
}

body.page-about .breadcrumb-separator {
    color: rgba(29, 23, 17, 0.42);
}

body.page-about .about-hero-content {
    max-width: 480px;
}

body.page-about .about-hero-content h1 {
    position: relative;
    margin: 0 0 34px;
    color: #050505;
    font-size: clamp(3.2rem, 5.4vw, 5.15rem);
    line-height: 0.92;
    letter-spacing: -0.035em;
}

body.page-about .about-hero-content h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-dark);
}

body.page-about .about-hero-description {
    max-width: 460px;
    margin: 0 0 30px;
    color: rgba(29, 23, 17, 0.9);
    font-size: 1.05rem;
    line-height: 1.62;
}

body.page-about .about-hero-content .btn {
    min-height: 46px;
    padding: 0 26px;
    border-radius: 5px;
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.page-about .about-hero-content .btn:hover {
    background: linear-gradient(180deg, #e0a838, #c8871a);
}

/* Brand Story Section */
body.page-about .about-story-section {
    padding: 64px 0 56px;
    background: #fbf8f3;
}

body.page-about .about-story-container {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
    gap: 48px;
    align-items: start;
}

body.page-about .about-story-header {
    margin: 0 0 28px;
}

body.page-about .about-story-header .eyebrow {
    margin: 0 0 8px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-about .about-story-header h2 {
    margin: 0;
    color: #050505;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

body.page-about .about-story-body p {
    margin: 0 0 18px;
    color: rgba(29, 23, 17, 0.82);
    font-size: 0.98rem;
    line-height: 1.7;
}

body.page-about .about-story-body p:last-child {
    margin-bottom: 0;
}

body.page-about .about-story-aside {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

body.page-about .about-aside-card {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
}

body.page-about .about-aside-card h3 {
    margin: 0 0 8px;
    color: #050505;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-about .about-aside-card p {
    margin: 0;
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.88rem;
    line-height: 1.55;
}

body.page-about .about-aside-dark {
    background: #050505;
    border-color: #050505;
}

body.page-about .about-aside-dark h3 {
    color: #fffaf3;
}

body.page-about .about-aside-dark p {
    color: rgba(255, 250, 243, 0.78);
}

body.page-about .about-aside-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 0 0 16px;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.page-about .about-aside-dark .about-aside-icon {
    border-color: rgba(199, 162, 90, 0.76);
    color: var(--gold-light);
}

body.page-about .about-aside-icon .icon,
body.page-about .about-aside-icon svg {
    width: 22px;
    height: 22px;
}

/* Values Cards Strip */
body.page-about .about-values-strip {
    padding: 0;
    background: #fbf8f3;
    border-top: 1px solid rgba(29, 23, 17, 0.06);
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-about .about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

body.page-about .about-value-card {
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-about .about-value-card:last-child {
    border-right: 0;
}

body.page-about .about-value-icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin: 0 0 14px;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.page-about .about-value-icon .icon,
body.page-about .about-value-icon svg {
    width: 22px;
    height: 22px;
}

body.page-about .about-value-card h3 {
    margin: 0 0 8px;
    color: #050505;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-about .about-value-card p {
    margin: 0;
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Design Language Section */
body.page-about .about-design-section {
    padding: 64px 0 56px;
    background: #fbf8f3;
}

body.page-about .about-design-header {
    text-align: center;
    margin: 0 0 40px;
}

body.page-about .about-design-header .eyebrow {
    margin: 0 0 8px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-about .about-design-header h2 {
    margin: 0 0 12px;
    color: #050505;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

body.page-about .about-design-intro {
    margin: 0 auto;
    max-width: 520px;
    color: rgba(29, 23, 17, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
}

body.page-about .about-design-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

body.page-about .about-design-card {
    padding: 32px 24px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    text-align: center;
}

body.page-about .about-design-swatch {
    display: inline-block;
    width: 56px;
    height: 56px;
    margin: 0 0 18px;
    border-radius: 50%;
    border: 1px solid rgba(29, 23, 17, 0.1);
}

body.page-about .about-swatch-cream {
    background: #f5f1ed;
}

body.page-about .about-swatch-black {
    background: #050505;
}

body.page-about .about-swatch-gold {
    background: linear-gradient(180deg, #d49a28, #b87912);
}

body.page-about .about-design-card h3 {
    margin: 0 0 8px;
    color: #050505;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-about .about-design-card p {
    margin: 0;
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.88rem;
    line-height: 1.55;
}

/* CTA Section */
body.page-about .about-cta-section {
    padding: 0;
    background: #050505;
}

body.page-about .about-cta-container {
    padding: 56px 0;
}

body.page-about .about-cta-content {
    text-align: center;
}

body.page-about .about-cta-content h2 {
    margin: 0 0 12px;
    color: #fffaf3;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

body.page-about .about-cta-content p {
    margin: 0 0 28px;
    color: rgba(255, 250, 243, 0.82);
    font-size: 1rem;
    line-height: 1.6;
}

body.page-about .about-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

body.page-about .about-cta-actions .btn {
    min-height: 46px;
    padding: 0 26px;
    border-radius: 5px;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.page-about .about-cta-actions .btn-gold {
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    border: 0;
}

body.page-about .about-cta-actions .btn-gold:hover {
    background: linear-gradient(180deg, #e0a838, #c8871a);
}

body.page-about .about-cta-actions .btn-gold-outline {
    border: 1px solid var(--gold-dark);
    background: transparent;
    color: var(--gold-light);
}

body.page-about .about-cta-actions .btn-gold-outline:hover {
    background: var(--gold-dark);
    color: #fff8ef;
}

/* Trust strip on about page */
body.page-about .trust-strip {
    background: #fbf8f3;
    border-top: 1px solid rgba(29, 23, 17, 0.06);
}

/* Responsive */
@media (max-width: 980px) {
    body.page-about .about-story-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    body.page-about .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    body.page-about .about-value-card:nth-child(2) {
        border-right: 0;
    }

    body.page-about .about-value-card:nth-child(1),
    body.page-about .about-value-card:nth-child(2) {
        border-bottom: 1px solid rgba(29, 23, 17, 0.06);
    }

    body.page-about .about-design-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    body.page-about .about-hero-section {
        min-height: 340px;
        padding: 40px 0 44px;
    }

    body.page-about .about-hero-content h1 {
        font-size: clamp(2.4rem, 8vw, 3.2rem);
    }

    body.page-about .about-values-grid {
        grid-template-columns: 1fr;
    }

    body.page-about .about-value-card {
        border-right: 0;
        border-bottom: 1px solid rgba(29, 23, 17, 0.06);
    }

    body.page-about .about-value-card:last-child {
        border-bottom: 0;
    }

    body.page-about .about-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    body.page-about .about-cta-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ─── Contact Page (lookbook-style) ──────────────────────────────────────── */

body.page-contact .contact-hero-section {
    min-height: 430px;
    padding: 54px 0 58px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(251, 248, 243, 0.98) 0%, rgba(251, 248, 243, 0.92) 31%, rgba(251, 248, 243, 0.36) 52%, rgba(251, 248, 243, 0.06) 76%),
        url("../images/banners/hero-heritage-indigo.png");
    background-position: center right;
    background-size: cover;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-contact .contact-breadcrumbs {
    margin: 0 0 28px;
    color: rgba(29, 23, 17, 0.7);
    font-size: 0.86rem;
    display: flex;
    align-items: center;
    gap: 11px;
}

body.page-contact .contact-breadcrumbs a,
body.page-contact .breadcrumb-current {
    color: #1d1711;
}

body.page-contact .breadcrumb-separator {
    color: rgba(29, 23, 17, 0.42);
}

body.page-contact .contact-hero-content {
    max-width: 480px;
}

body.page-contact .contact-hero-content h1 {
    position: relative;
    margin: 0 0 34px;
    color: #050505;
    font-size: clamp(3.2rem, 5.4vw, 5.15rem);
    line-height: 0.92;
    letter-spacing: -0.035em;
}

body.page-contact .contact-hero-content h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-dark);
}

body.page-contact .contact-hero-description {
    max-width: 440px;
    margin: 0 0 30px;
    color: rgba(29, 23, 17, 0.9);
    font-size: 1.05rem;
    line-height: 1.62;
}

body.page-contact .contact-hero-content .btn {
    min-height: 46px;
    padding: 0 26px;
    border-radius: 5px;
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.page-contact .contact-hero-content .btn:hover {
    background: linear-gradient(180deg, #e0a838, #c8871a);
}

/* Info Cards Strip */
body.page-contact .contact-info-strip {
    padding: 0;
    background: #fbf8f3;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-contact .contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

body.page-contact .contact-info-card {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-contact .contact-info-card:last-child {
    border-right: 0;
}

body.page-contact .contact-info-icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin: 0 0 14px;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-dark);
}

body.page-contact .contact-info-icon .icon,
body.page-contact .contact-info-icon svg {
    width: 22px;
    height: 22px;
}

body.page-contact .contact-info-card h3 {
    margin: 0 0 6px;
    color: #050505;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-contact .contact-info-card p {
    margin: 0;
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.92rem;
    line-height: 1.4;
}

body.page-contact .contact-info-card p a {
    color: var(--gold-dark);
    text-decoration: none;
}

body.page-contact .contact-info-card p a:hover {
    text-decoration: underline;
}

/* Form + Aside Layout */
body.page-contact .contact-form-section {
    padding: 64px 0 56px;
    background: #fbf8f3;
}

body.page-contact .contact-form-container {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.7fr);
    gap: 48px;
    align-items: start;
}

body.page-contact .contact-form-header {
    margin: 0 0 32px;
}

body.page-contact .contact-form-header .eyebrow {
    margin: 0 0 8px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-contact .contact-form-header h2 {
    margin: 0 0 12px;
    color: #050505;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

body.page-contact .contact-form-intro {
    margin: 0;
    color: rgba(29, 23, 17, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 480px;
}

/* Form Fields */
body.page-contact .contact-form {
    padding: 36px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
}

body.page-contact .contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 0 0 24px;
}

body.page-contact .contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

body.page-contact .contact-field span {
    color: #050505;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

body.page-contact .contact-field input,
body.page-contact .contact-field textarea {
    padding: 12px 14px;
    border: 1px solid rgba(29, 23, 17, 0.14);
    border-radius: 4px;
    background: #fbf8f3;
    color: #1d1711;
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

body.page-contact .contact-field input::placeholder,
body.page-contact .contact-field textarea::placeholder {
    color: rgba(29, 23, 17, 0.4);
}

body.page-contact .contact-field input:focus,
body.page-contact .contact-field textarea:focus {
    outline: 0;
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(199, 162, 90, 0.12);
}

body.page-contact .contact-submit-btn {
    min-height: 48px;
    padding: 0 28px;
    border-radius: 5px;
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
}

body.page-contact .contact-submit-btn:hover {
    background: linear-gradient(180deg, #e0a838, #c8871a);
    transform: translateY(-1px);
}

/* Aside Cards */
body.page-contact .contact-form-aside {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

body.page-contact .contact-aside-card {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
}

body.page-contact .contact-aside-card h3 {
    margin: 0 0 10px;
    color: #050505;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-contact .contact-aside-card p {
    margin: 0 0 18px;
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.88rem;
    line-height: 1.55;
}

body.page-contact .contact-aside-card .btn {
    min-height: 42px;
    padding: 0 20px;
    border-radius: 5px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

body.page-contact .contact-aside-dark {
    background: #050505;
    border-color: #050505;
}

body.page-contact .contact-aside-dark h3 {
    color: #fffaf3;
}

body.page-contact .contact-aside-dark p {
    color: rgba(255, 250, 243, 0.78);
}

body.page-contact .btn-gold-outline {
    border: 1px solid var(--gold-dark);
    background: transparent;
    color: var(--gold-light);
}

body.page-contact .btn-gold-outline:hover {
    background: var(--gold-dark);
    color: #fff8ef;
}

body.page-contact .contact-social-row {
    display: flex;
    gap: 10px;
}

body.page-contact .contact-social-row a {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(29, 23, 17, 0.12);
    border-radius: 50%;
    color: #1d1711;
    text-decoration: none;
    transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

body.page-contact .contact-social-row a:hover {
    border-color: var(--gold-dark);
    color: var(--gold-dark);
    background: rgba(199, 162, 90, 0.06);
}

body.page-contact .contact-social-row .icon,
body.page-contact .contact-social-row svg {
    width: 18px;
    height: 18px;
}

/* Trust strip on contact page */
body.page-contact .trust-strip {
    background: #fbf8f3;
    border-top: 1px solid rgba(29, 23, 17, 0.06);
}

/* Responsive */
@media (max-width: 980px) {
    body.page-contact .contact-form-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    body.page-contact .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    body.page-contact .contact-info-card:nth-child(2) {
        border-right: 0;
    }

    body.page-contact .contact-info-card:nth-child(1),
    body.page-contact .contact-info-card:nth-child(2) {
        border-bottom: 1px solid rgba(29, 23, 17, 0.06);
    }
}

@media (max-width: 640px) {
    body.page-contact .contact-hero-section {
        min-height: 340px;
        padding: 40px 0 44px;
    }

    body.page-contact .contact-hero-content h1 {
        font-size: clamp(2.4rem, 8vw, 3.2rem);
    }

    body.page-contact .contact-form-grid {
        grid-template-columns: 1fr;
    }

    body.page-contact .contact-form {
        padding: 24px 20px;
    }

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

    body.page-contact .contact-info-card {
        border-right: 0;
        border-bottom: 1px solid rgba(29, 23, 17, 0.06);
    }

    body.page-contact .contact-info-card:last-child {
        border-bottom: 0;
    }
}

/* ─── Bespoke Page ───────────────────────────────────────────────────────── */
body.page-bespoke .bespoke-hero-section {
    min-height: 430px;
    padding: 54px 0 58px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(251, 248, 243, 0.98) 0%, rgba(251, 248, 243, 0.92) 31%, rgba(251, 248, 243, 0.36) 52%, rgba(251, 248, 243, 0.06) 76%),
        url("../images/banners/hero-bridal-ivory.png");
    background-position: center right;
    background-size: cover;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}
body.page-bespoke .bespoke-breadcrumbs {
    margin: 0 0 28px;
    color: rgba(29, 23, 17, 0.7);
    font-size: 0.86rem;
    display: flex;
    align-items: center;
    gap: 11px;
}
body.page-bespoke .bespoke-breadcrumbs a,
body.page-bespoke .breadcrumb-current {
    color: #1d1711;
}
body.page-bespoke .bespoke-hero-content {
    max-width: 520px;
}
body.page-bespoke .bespoke-hero-content h1 {
    position: relative;
    margin: 0 0 34px;
    color: #050505;
    font-size: clamp(3.2rem, 5.4vw, 5.15rem);
    line-height: 0.92;
    letter-spacing: -0.035em;
}
body.page-bespoke .bespoke-hero-content h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-dark);
}
body.page-bespoke .bespoke-hero-description {
    max-width: 480px;
    margin: 0 0 30px;
    color: rgba(29, 23, 17, 0.9);
    font-size: 1.05rem;
    line-height: 1.62;
}
body.page-bespoke .bespoke-hero-content .btn {
    min-height: 46px;
    padding: 0 26px;
    border-radius: 5px;
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
body.page-bespoke .bespoke-process-strip {
    padding: 0;
    background: #fbf8f3;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}
body.page-bespoke .bespoke-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
body.page-bespoke .bespoke-process-card {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid rgba(29, 23, 17, 0.06);
}
body.page-bespoke .bespoke-process-card:last-child {
    border-right: 0;
}
body.page-bespoke .bespoke-process-step {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin: 0 0 14px;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 900;
}
body.page-bespoke .bespoke-process-card h3 {
    margin: 0 0 6px;
    color: #050505;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}
body.page-bespoke .bespoke-process-card p {
    margin: 0;
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.92rem;
    line-height: 1.4;
}
body.page-bespoke .bespoke-form-section {
    padding: 64px 0 56px;
    background: #fbf8f3;
}
body.page-bespoke .bespoke-form-container {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.7fr);
    gap: 48px;
    align-items: start;
}
body.page-bespoke .bespoke-form-header {
    margin: 0 0 32px;
}
body.page-bespoke .bespoke-form-header .eyebrow {
    margin: 0 0 8px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
body.page-bespoke .bespoke-form-header h2 {
    margin: 0 0 12px;
    color: #050505;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}
body.page-bespoke .bespoke-form-intro {
    margin: 0;
    color: rgba(29, 23, 17, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 480px;
}
body.page-bespoke .bespoke-form {
    padding: 36px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
}
body.page-bespoke .bespoke-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 0 0 24px;
}
body.page-bespoke .bespoke-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
body.page-bespoke .bespoke-field-wide {
    grid-column: 1 / -1;
}
body.page-bespoke .bespoke-field span {
    color: #050505;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
body.page-bespoke .bespoke-field input,
body.page-bespoke .bespoke-field textarea {
    padding: 12px 14px;
    border: 1px solid rgba(29, 23, 17, 0.14);
    border-radius: 4px;
    background: #fbf8f3;
    color: #1d1711;
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
body.page-bespoke .bespoke-field input::placeholder,
body.page-bespoke .bespoke-field textarea::placeholder {
    color: rgba(29, 23, 17, 0.4);
}
body.page-bespoke .bespoke-field input:focus,
body.page-bespoke .bespoke-field textarea:focus {
    outline: 0;
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(199, 162, 90, 0.12);
}
body.page-bespoke .bespoke-submit-btn {
    min-height: 48px;
    padding: 0 28px;
    border-radius: 5px;
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
}
body.page-bespoke .bespoke-submit-btn:hover {
    background: linear-gradient(180deg, #e0a838, #c8871a);
    transform: translateY(-1px);
}
body.page-bespoke .bespoke-form-aside {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
body.page-bespoke .bespoke-aside-card {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
}
body.page-bespoke .bespoke-aside-card h3 {
    margin: 0 0 10px;
    color: #050505;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}
body.page-bespoke .bespoke-aside-card p {
    margin: 0 0 18px;
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.88rem;
    line-height: 1.55;
}
body.page-bespoke .bespoke-aside-card .btn {
    min-height: 42px;
    padding: 0 20px;
    border-radius: 5px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
body.page-bespoke .bespoke-aside-dark {
    background: #050505;
    border-color: #050505;
}
body.page-bespoke .bespoke-aside-dark h3,
body.page-bespoke .bespoke-aside-dark p {
    color: rgba(255, 250, 243, 0.78);
}
body.page-bespoke .bespoke-aside-dark h3 {
    color: #fffaf3;
}
body.page-bespoke .bespoke-aside-list {
    list-style: none;
    margin: 0;
    padding: 0;
    color: rgba(255, 250, 243, 0.78);
    font-size: 0.88rem;
    line-height: 1.7;
}
body.page-bespoke .bespoke-aside-list strong {
    color: #fffaf3;
}
body.page-bespoke .bespoke-social-row {
    display: flex;
    gap: 10px;
}
body.page-bespoke .bespoke-social-row a {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(29, 23, 17, 0.12);
    border-radius: 50%;
    color: #1d1711;
    text-decoration: none;
    transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
body.page-bespoke .bespoke-social-row a:hover {
    border-color: var(--gold-dark);
    color: var(--gold-dark);
    background: rgba(199, 162, 90, 0.06);
}
body.page-bespoke .bespoke-social-row .icon,
body.page-bespoke .bespoke-social-row svg {
    width: 18px;
    height: 18px;
}
body.page-bespoke .bespoke-faq-section {
    padding: 72px 0;
    background: #fff;
    border-top: 1px solid rgba(29, 23, 17, 0.06);
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}
body.page-bespoke .bespoke-faq-container {
    text-align: center;
}
body.page-bespoke .bespoke-faq-container h2 {
    margin: 0 0 40px;
    color: #050505;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}
body.page-bespoke .bespoke-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 0 0 36px;
    text-align: left;
}
body.page-bespoke .bespoke-faq-card {
    padding: 28px;
    background: #fbf8f3;
    border: 1px solid rgba(29, 23, 17, 0.06);
    border-radius: 6px;
}
body.page-bespoke .bespoke-faq-card h3 {
    margin: 0 0 10px;
    color: #050505;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
body.page-bespoke .bespoke-faq-card p {
    margin: 0;
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.92rem;
    line-height: 1.55;
}
body.page-bespoke .bespoke-faq-container .btn {
    min-height: 46px;
    padding: 0 26px;
    border-radius: 5px;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}
body.page-bespoke .trust-strip {
    background: #fbf8f3;
    border-top: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-lookbook .lookbook-hero-section {
    min-height: 430px;

    padding: 54px 0 58px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(251, 248, 243, 0.98) 0%, rgba(251, 248, 243, 0.92) 31%, rgba(251, 248, 243, 0.36) 52%, rgba(251, 248, 243, 0.06) 76%),
        url("../images/banners/hero-gold-kaftan.png");
    background-position: center right;
    background-size: cover;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-lookbook .lookbook-hero-section::before {
    display: none;
}

body.page-lookbook .lookbook-hero-section > .container,
body.page-lookbook .lookbook-container,
body.page-lookbook .lookbook-newsletter,
body.page-lookbook .trust-strip .container {
    width: var(--lookbook-container);
}

body.page-lookbook .lookbook-breadcrumbs {
    margin: 0 0 28px;
    color: rgba(29, 23, 17, 0.7);
    font-size: 0.86rem;
    gap: 11px;
}

body.page-lookbook .lookbook-breadcrumbs a,
body.page-lookbook .breadcrumb-current {
    color: #1d1711;
}

body.page-lookbook .breadcrumb-separator {
    color: rgba(29, 23, 17, 0.42);
}

body.page-lookbook .lookbook-hero-content {
    max-width: 455px;
}

body.page-lookbook .lookbook-hero-content h1 {
    position: relative;
    margin: 0 0 34px;
    color: #050505;
    font-size: clamp(3.2rem, 5.4vw, 5.15rem);
    line-height: 0.92;
    letter-spacing: -0.035em;
}

body.page-lookbook .lookbook-hero-content h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-dark);
}

body.page-lookbook .lookbook-hero-description {
    max-width: 420px;
    margin: 0 0 30px;
    color: rgba(29, 23, 17, 0.9);
    font-size: 1.05rem;
    line-height: 1.62;
}

body.page-lookbook .lookbook-hero-content .btn {
    min-height: 46px;
    padding: 0 26px;
    border-radius: 5px;
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    box-shadow: none;
}

body.page-lookbook .lookbook-gallery-section {
    padding: 22px 0 14px;
    background: #fbf8f3;
}

body.page-lookbook .lookbook-container {
    padding-top: 0;
}

body.page-lookbook .lookbook-tabs {
    margin: 0 0 14px;
    min-height: 42px;
    align-items: center;
    gap: 24px;
}

body.page-lookbook .lookbook-tabs-list {
    gap: clamp(24px, 4.1vw, 70px);
    align-items: center;
}

body.page-lookbook .lookbook-tab {
    position: relative;
    padding: 0 0 13px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #050505;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1;
    box-shadow: none;
}

body.page-lookbook .lookbook-tab::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--gold-dark);
    opacity: 0;
    transform: scaleX(0.45);
    transform-origin: left center;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

body.page-lookbook .lookbook-tab:hover,
body.page-lookbook .lookbook-tab.is-active {
    color: var(--gold-dark);
}

body.page-lookbook .lookbook-tab.is-active::after,
body.page-lookbook .lookbook-tab:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

body.page-lookbook .lookbook-sort {
    margin-left: auto;
    color: #050505;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

body.page-lookbook .lookbook-sort-select {
    padding: 0 18px 0 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--gold-dark);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    box-shadow: none;
}

body.page-lookbook .lookbook-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
}

body.page-lookbook .lookbook-card[hidden] {
    display: none !important;
}

body.page-lookbook .lookbook-empty {
    margin: 28px 0 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

body.page-lookbook .lookbook-empty[hidden] {
    display: none !important;
}

body.page-lookbook .lookbook-card {
    min-height: 350px;
    border-radius: 4px;
    background: #1d1711;
    box-shadow: none;
}

body.page-lookbook .lookbook-card-link {
    height: 100%;
    min-height: 350px;
    border-radius: 4px;
    box-shadow: none;
}

body.page-lookbook .lookbook-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 52px rgba(29, 23, 17, 0.16);
}

body.page-lookbook .lookbook-card-image {
    min-height: 350px;
    background-position: center top;
}

body.page-lookbook .lookbook-card-image::before {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02) 12%, rgba(0, 0, 0, 0.12) 48%, rgba(0, 0, 0, 0.7) 100%);
}

body.page-lookbook .lookbook-card-overlay {
    inset: auto 0 0;
    display: grid;
    gap: 8px;
    padding: 0 26px 26px;
    color: #fffaf3;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.22));
}

body.page-lookbook .lookbook-card-eyebrow {
    margin: 0;
    color: #fffaf3;
    font-family: var(--font-heading);
    font-size: clamp(1.12rem, 1.55vw, 1.65rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    text-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

body.page-lookbook .lookbook-card-title {
    margin: 0;
    color: rgba(255, 250, 243, 0.94);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: 0;
    text-shadow: none;
}

body.page-lookbook .lookbook-collection-count {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: max-content;
    margin: 8px 0 0;
    padding: 14px 0 0;
    border-radius: 0;
    background: transparent;
    color: #fffaf3;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}

body.page-lookbook .lookbook-collection-count::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-light);
}

body.page-lookbook .lookbook-newsletter-section {
    margin: 0;
    padding: 0;
    border: 0;
    background: #050505;
}

body.page-lookbook .lookbook-newsletter {
    max-width: none;
    min-height: 100px;
    padding: 22px 0;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(360px, 0.94fr);
    align-items: center;
    gap: 34px;
    text-align: left;
}

body.page-lookbook .lookbook-newsletter-copy {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #fffaf3;
}

body.page-lookbook .lookbook-newsletter-icon {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(199, 162, 90, 0.76);
    border-radius: 50%;
    color: var(--gold-light);
}

body.page-lookbook .lookbook-newsletter-icon .icon,
body.page-lookbook .lookbook-newsletter-icon svg {
    width: 25px;
    height: 25px;
}

body.page-lookbook .lookbook-newsletter h2 {
    margin: 0 0 4px;
    color: #fffaf3;
    font-size: clamp(1.28rem, 2vw, 1.7rem);
    line-height: 1;
    letter-spacing: 0;
}

body.page-lookbook .lookbook-newsletter p {
    margin: 0;
    color: rgba(255, 250, 243, 0.82);
    font-size: 0.84rem;
}

body.page-lookbook .lookbook-newsletter-form,
body.page-lookbook .lookbook-newsletter-inputs {
    width: 100%;
}

body.page-lookbook .lookbook-newsletter-inputs {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 142px;
    gap: 14px;
    min-width: 0;
}

body.page-lookbook .lookbook-newsletter-inputs input {
    height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(255, 250, 243, 0.22);
    border-radius: 4px;
    background: rgba(255, 250, 243, 0.03);
    color: #fffaf3;
}

body.page-lookbook .lookbook-newsletter-inputs input::placeholder {
    color: rgba(255, 250, 243, 0.56);
}

body.page-lookbook .lookbook-newsletter-inputs button {
    height: 46px;
    padding: 0 18px;
    border-radius: 4px;
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fffaf3;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.03em;
}

body.page-lookbook .trust-strip {
    margin: 0;
    padding: 20px 0;
    border-top: 0;
    border-bottom: 1px solid rgba(29, 23, 17, 0.08);
    background: #fffaf3;
}

body.page-lookbook .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

body.page-lookbook .trust-item {
    min-height: 56px;
    padding: 0 36px;
    border-right: 1px solid rgba(29, 23, 17, 0.08);
    justify-content: center;
}

body.page-lookbook .trust-item:last-child {
    border-right: 0;
}

body.page-lookbook .trust-item .icon {
    width: 24px;
    height: 24px;
    color: var(--gold-dark);
}

body.page-lookbook .trust-item strong {
    color: #050505;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

body.page-lookbook .trust-item span {
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.78rem;
}

@media (max-width: 1180px) {
    body.page-lookbook {
        --lookbook-container: min(100% - 44px, 1040px);
    }

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

    body.page-lookbook .lookbook-card,
    body.page-lookbook .lookbook-card-link,
    body.page-lookbook .lookbook-card-image {
        min-height: 370px;
    }

    body.page-lookbook .lookbook-newsletter {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 760px) {
    body.page-lookbook {
        --lookbook-container: min(100% - 30px, 680px);
    }

    body.page-lookbook .lookbook-hero-section {
        min-height: 430px;
        padding: 38px 0 42px;
        background:
            linear-gradient(180deg, rgba(251, 248, 243, 0.97) 0%, rgba(251, 248, 243, 0.84) 52%, rgba(251, 248, 243, 0.28) 100%),
            url("../images/banners/hero-gold-kaftan.png");
        background-position: 62% center;
        background-size: cover;
    }

    body.page-lookbook .lookbook-hero-content {
        max-width: 92%;
    }

    body.page-lookbook .lookbook-gallery-section {
        padding-top: 18px;
    }

    body.page-lookbook .lookbook-tabs {
        align-items: stretch;
    }

    body.page-lookbook .lookbook-tabs-list {
        width: 100%;
        gap: 26px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    body.page-lookbook .lookbook-sort {
        margin-left: 0;
        align-self: flex-end;
    }

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

    body.page-lookbook .lookbook-card,
    body.page-lookbook .lookbook-card-link,
    body.page-lookbook .lookbook-card-image {
        min-height: 320px;
    }

    body.page-lookbook .lookbook-card-overlay {
        padding: 0 18px 20px;
    }

    body.page-lookbook .lookbook-newsletter-inputs {
        grid-template-columns: 1fr;
    }

    body.page-lookbook .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 18px;
    }

    body.page-lookbook .trust-item {
        padding: 0 16px;
    }

    body.page-lookbook .trust-item:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 480px) {
    body.page-lookbook .lookbook-hero-content h1 {
        font-size: clamp(2.65rem, 16vw, 4rem);
    }

    body.page-lookbook .lookbook-grid {
        grid-template-columns: 1fr;
    }

    body.page-lookbook .lookbook-card,
    body.page-lookbook .lookbook-card-link,
    body.page-lookbook .lookbook-card-image {
        min-height: 410px;
    }

    body.page-lookbook .lookbook-newsletter-copy {
        align-items: flex-start;
    }

    body.page-lookbook .trust-grid {
        grid-template-columns: 1fr;
        row-gap: 14px;
    }

    body.page-lookbook .trust-item,
    body.page-lookbook .trust-item:nth-child(2) {
        border-right: 0;
        justify-content: flex-start;
    }
}

/* Reference-aligned cart page */
body.page-cart {
    background: #fbf8f3;
}

body.page-cart .site-main {
    padding-bottom: 0;
    background: #fbf8f3;
}

body.page-cart .cart-page-head {
    width: min(1420px, calc(100% - 72px));
    padding: 28px 0 14px;
}

body.page-cart .cart-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    color: rgba(29, 23, 17, 0.64);
    font-size: 0.86rem;
}

body.page-cart .cart-breadcrumb a {
    color: rgba(29, 23, 17, 0.7);
}

body.page-cart .cart-breadcrumb .icon {
    width: 12px;
    height: 12px;
    color: rgba(29, 23, 17, 0.38);
}

body.page-cart .cart-title-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

body.page-cart .cart-heading-copy {
    display: grid;
    gap: 10px;
}

body.page-cart .cart-eyebrow {
    margin: 0;
    color: var(--gold-dark);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

body.page-cart .cart-title-row h1 {
    margin: 0;
    color: #050505;
    font-size: clamp(2.15rem, 4vw, 3.15rem);
    line-height: 1;
    letter-spacing: -0.035em;
}

body.page-cart .cart-lead {
    margin: 0;
    max-width: 62ch;
    color: rgba(29, 23, 17, 0.82);
    font-size: 1rem;
    line-height: 1.65;
}

body.page-cart .cart-continue-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    color: #050505;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

body.page-cart .cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.38fr) minmax(340px, 0.92fr);
    gap: 24px;
    align-items: start;
    padding-bottom: 20px;
}

body.page-cart .cart-table-card,
body.page-cart .cart-summary-panel {
    background: rgba(255, 250, 243, 0.92);
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 4px;
    box-shadow: 0 18px 42px rgba(29, 23, 17, 0.08);
}

body.page-cart .cart-items-section {
    padding: 10px 12px 14px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

body.page-cart .cart-table-scroll {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

body.page-cart .cart-table-scroll-inner {
    min-width: 1000px;
}

body.page-cart .cart-table-header,
body.page-cart .cart-table-row {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) 112px 76px 136px 130px minmax(252px, auto);
    gap: 16px;
    align-items: center;
}

body.page-cart .cart-table-header {
    padding: 18px 16px 14px;
    color: #050505;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(29, 23, 17, 0.08);
}

body.page-cart .cart-table-row {
    padding: 18px 16px;
    border-bottom: 1px solid rgba(29, 23, 17, 0.08);
}

body.page-cart .cart-table-row:last-child {
    border-bottom: 0;
}

body.page-cart .cart-product-info {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

body.page-cart .cart-product-image {
    width: 96px;
    height: 122px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(29, 23, 17, 0.08);
    background: rgba(255, 255, 255, 0.65);
}

body.page-cart .cart-product-details {
    min-width: 0;
    display: grid;
    gap: 8px;
}

body.page-cart .cart-product-details h3 {
    margin: 0;
    color: #050505;
    font-size: 0.98rem;
    line-height: 1.2;
}

body.page-cart .cart-product-details p {
    margin: 0;
    color: rgba(29, 23, 17, 0.7);
    font-size: 0.83rem;
}

body.page-cart .cart-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.8rem;
}

body.page-cart .cart-col-price,
body.page-cart .cart-col-subtotal {
    color: #050505;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}

body.page-cart .cart-col-qty {
    display: flex;
    justify-content: center;
}

body.page-cart .cart-quantity-form {
    display: grid;
    gap: 8px;
    justify-items: center;
}

body.page-cart .cart-quantity-stepper {
    display: inline-flex;
    align-items: stretch;
    width: max-content;
    max-width: max-content;
    flex: 0 0 auto;
    justify-self: center;
    border: 1px solid rgba(29, 23, 17, 0.12);
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

body.page-cart .cart-quantity-stepper button,
body.page-cart .cart-quantity-stepper input {
    box-sizing: border-box;
    flex: 0 0 42px;
    width: 42px;
    min-width: 42px;
    max-width: 42px;
    height: 40px;
    border: 0;
    border-right: 1px solid rgba(29, 23, 17, 0.08);
    background: transparent;
    color: #050505;
    text-align: center;
    font: inherit;
    font-weight: 900;
}

body.page-cart .cart-quantity-stepper input {
    flex: 0 0 56px;
    width: 56px;
    min-width: 56px;
    max-width: 56px;
    appearance: textfield;
    -moz-appearance: textfield;
}

body.page-cart .cart-quantity-stepper input::-webkit-outer-spin-button,
body.page-cart .cart-quantity-stepper input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

body.page-cart .cart-quantity-stepper button:last-child {
    border-right: 0;
}

body.page-cart .cart-col-action {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    overflow: visible;
}

body.page-cart .cart-action-group {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
}

body.page-cart .cart-remove-form,
body.page-cart .cart-save-form {
    display: flex;
    align-items: center;
    margin: 0;
    min-width: 0;
    overflow: visible;
}

body.page-cart .remove-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
    height: auto;
    min-height: 38px;
    padding: 6px 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(29, 23, 17, 0.82);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.18s ease;
}

body.page-cart .remove-btn:hover,
body.page-cart .remove-btn:focus-visible {
    color: var(--gold-dark);
}

body.page-cart .cart-summary-panel {
    position: sticky;
    top: 168px;
    padding: 22px;
    display: grid;
    gap: 16px;
}

body.page-cart .cart-summary-head {
    display: grid;
    gap: 6px;
}

body.page-cart .cart-summary-head h2 {
    margin: 0;
    color: #050505;
    font-size: 1.45rem;
    line-height: 1.06;
}

body.page-cart .cart-coupon-form {
    display: grid;
    gap: 10px;
}

body.page-cart .cart-coupon-form label {
    color: #050505;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

body.page-cart .cart-coupon-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 104px;
    gap: 10px;
}

body.page-cart .cart-coupon-field input {
    height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(29, 23, 17, 0.12);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.84);
}

body.page-cart .cart-coupon-field button {
    height: 46px;
    border: 0;
    border-radius: 5px;
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fffaf3;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-cart .summary-row {
    color: rgba(29, 23, 17, 0.74);
    font-size: 0.92rem;
}

body.page-cart .summary-row strong {
    color: #050505;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

body.page-cart .summary-row-total {
    padding-top: 8px;
    border-top: 1px solid rgba(29, 23, 17, 0.08);
}

body.page-cart .summary-row-total strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

body.page-cart .summary-note {
    margin: 0;
    color: rgba(29, 23, 17, 0.64);
    font-size: 0.82rem;
    line-height: 1.55;
}

body.page-cart .summary-actions {
    display: grid;
    gap: 10px;
}

body.page-cart .summary-actions .btn {
    min-height: 46px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.8rem;
    font-weight: 900;
}

body.page-cart .summary-actions .btn.is-disabled {
    pointer-events: none;
    opacity: 0.55;
}

body.page-cart .cart-payment-acceptance {
    display: grid;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(29, 23, 17, 0.08);
}

body.page-cart .cart-payment-acceptance > span {
    color: #050505;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.page-cart .cart-payment-acceptance .footer-payment-logos {
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

/* Cart sits on light UI — use Scentility's light badge treatment. */
body.page-cart .cart-payment-acceptance .payment-logo {
    height: 26px;
    min-width: 38px;
    width: auto;
    padding: 0 6px;
    border: 1px solid #eee;
    border-radius: 2px;
    background: #fff;
    box-shadow: none;
    color: #1d1711;
}

body.page-cart .cart-payment-acceptance .payment-logo-paystack {
    min-width: 54px;
}

body.page-cart .cart-payment-acceptance .payment-logo img {
    width: auto;
    height: 14px;
    max-width: 64px;
    object-fit: contain;
    filter: brightness(0);
}

body.page-cart .cart-payment-acceptance .payment-logo-visa img {
    height: 12px;
}

body.page-cart .cart-payment-acceptance .payment-logo-mastercard img {
    height: 16px;
}

body.page-cart .cart-payment-acceptance .payment-logo-verve img {
    height: 11px;
}

body.page-cart .cart-payment-acceptance .payment-logo-paystack img {
    height: 12px;
    max-width: 72px;
}

body.page-cart .cart-delivery-strip {
    width: min(1420px, calc(100% - 72px));
    margin: 0 auto 8px;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 4px;
    border: 1px solid rgba(29, 23, 17, 0.08);
    background: rgba(255, 250, 243, 0.92);
    color: #050505;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(29, 23, 17, 0.06);
}

body.page-cart .cart-delivery-strip .icon {
    color: var(--gold-dark);
}

body.page-cart .cart-empty-state {
    min-height: 380px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 14px;
    padding: 32px;
    text-align: center;
}

body.page-cart .cart-empty-icon {
    width: 72px;
    height: 72px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(199, 162, 90, 0.12);
    color: var(--gold-dark);
}

body.page-cart .cart-empty-state h2 {
    margin: 0;
    font-size: clamp(1.5rem, 2vw, 2rem);
}

body.page-cart .cart-empty-state p {
    margin: 0;
    max-width: 44ch;
    color: rgba(29, 23, 17, 0.72);
}

body.page-cart .cart-empty-state .btn {
    min-height: 46px;
    border-radius: 5px;
}

@media (max-width: 1180px) {
    body.page-cart .cart-page-head,
    body.page-cart .cart-delivery-strip {
        width: min(100% - 44px, 1040px);
    }

    body.page-cart .cart-layout {
        grid-template-columns: 1fr;
    }

    body.page-cart .cart-summary-panel {
        position: static;
    }
}

@media (max-width: 860px) {
    body.page-cart .cart-table-scroll-inner {
        min-width: 0;
    }

    body.page-cart .cart-table-header {
        display: none;
    }

    body.page-cart .cart-table-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    body.page-cart .cart-col-price,
    body.page-cart .cart-col-subtotal,
    body.page-cart .cart-col-qty,
    body.page-cart .cart-col-action {
        justify-content: flex-start;
        text-align: left;
    }

    body.page-cart .cart-product-info {
        grid-template-columns: 84px minmax(0, 1fr);
    }

    body.page-cart .cart-product-image {
        width: 84px;
        height: 108px;
    }
}

@media (max-width: 720px) {
    body.page-cart .cart-page-head,
    body.page-cart .cart-delivery-strip {
        width: min(100% - 30px, 680px);
    }

    body.page-cart .cart-title-row {
        flex-direction: column;
        align-items: flex-start;
    }

    body.page-cart .cart-continue-link {
        padding: 0;
    }

    body.page-cart .cart-layout {
        gap: 18px;
    }

    body.page-cart .cart-items-section,
    body.page-cart .cart-summary-panel {
        padding: 16px;
    }

    body.page-cart .cart-coupon-field {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body.page-cart .cart-page-head,
    body.page-cart .cart-delivery-strip {
        width: min(100% - 24px, 540px);
    }

    body.page-cart .cart-product-info {
        grid-template-columns: 1fr;
    }

    body.page-cart .cart-product-image {
        width: 100%;
        height: 240px;
    }

    body.page-cart .cart-quantity-stepper {
        width: max-content;
    }

    body.page-cart .cart-quantity-stepper button,
    body.page-cart .cart-quantity-stepper input {
        flex: 0 0 38px;
        width: 38px;
        min-width: 38px;
        max-width: 38px;
        height: 38px;
    }

    body.page-cart .cart-quantity-stepper input {
        flex: 0 0 54px;
        width: 54px;
        min-width: 54px;
        max-width: 54px;
    }
}

/* Cart page approved mockup alignment */
body.page-cart .cart-page-head,
body.page-cart .cart-layout,
body.page-cart .cart-help-strip {
    width: min(1440px, calc(100% - 80px));
    max-width: none;
    margin-inline: auto;
}

body.page-cart .cart-page-head {
    padding: 30px 0 18px;
}

body.page-cart .cart-title-row {
    align-items: end;
}

body.page-cart .cart-heading-copy {
    gap: 4px;
}

body.page-cart .cart-title-row h1 {
    font-size: clamp(1.65rem, 2.1vw, 2.05rem);
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

body.page-cart .cart-lead {
    color: rgba(29, 23, 17, 0.78);
    font-size: 1rem;
    line-height: 1.45;
}

body.page-cart .cart-continue-link {
    align-self: start;
    margin-top: 12px;
    padding: 0;
    color: #050505;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

body.page-cart .cart-layout {
    grid-template-columns: minmax(0, 1fr) 386px;
    gap: 26px;
    padding-bottom: 28px;
    min-width: 0;
    max-width: 100%;
}

body.page-cart .cart-table-card,
body.page-cart .cart-summary-panel {
    border: 1px solid rgba(29, 23, 17, 0.12);
    border-radius: 5px;
    background: rgba(255, 250, 243, 0.78);
    box-shadow: none;
    min-width: 0;
    max-width: 100%;
}

body.page-cart .cart-items-section {
    padding: 0;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

body.page-cart .cart-table-scroll {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

body.page-cart .cart-table-scroll-inner {
    min-width: 1000px;
}

body.page-cart .cart-table-header,
body.page-cart .cart-table-row {
    grid-template-columns: minmax(260px, 2fr) 112px 76px 136px 136px minmax(252px, auto);
    gap: 14px;
    align-items: center;
}

body.page-cart .cart-table-header {
    padding: 18px 20px;
    color: #050505;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    border-bottom: 1px solid rgba(29, 23, 17, 0.1);
}

body.page-cart .cart-table-row {
    padding: 10px 20px;
    min-height: 134px;
    border-bottom: 1px solid rgba(29, 23, 17, 0.1);
}

body.page-cart .cart-product-info {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
}

body.page-cart .cart-product-image {
    width: 128px;
    height: 114px;
    border: 0;
    border-radius: 4px;
    object-fit: cover;
    object-position: top center;
}

body.page-cart .cart-product-details {
    gap: 8px;
}

body.page-cart .cart-product-details h3 {
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

body.page-cart .cart-product-muted {
    display: none;
}

body.page-cart .cart-product-color {
    margin: 0;
    color: rgba(29, 23, 17, 0.78);
    font-size: 0.83rem;
}

body.page-cart .cart-product-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

body.page-cart .cart-product-swatches span {
    width: 18px;
    height: 18px;
    display: inline-block;
    border-radius: 50%;
    background: var(--swatch);
    border: 1px solid rgba(29, 23, 17, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.44);
}

body.page-cart .cart-product-swatches span.is-selected {
    outline: 1px solid var(--gold-dark);
    outline-offset: 2px;
}

body.page-cart .cart-col-price,
body.page-cart .cart-col-size,
body.page-cart .cart-col-subtotal {
    color: #050505;
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 900;
    text-align: left;
}

body.page-cart .cart-col-size {
    text-align: center;
}

body.page-cart .cart-col-qty {
    justify-content: center;
}

body.page-cart .cart-quantity-stepper {
    width: max-content;
    border-radius: 5px;
    border-color: rgba(29, 23, 17, 0.14);
}

body.page-cart .cart-quantity-stepper button,
body.page-cart .cart-quantity-stepper input {
    flex: 0 0 36px;
    width: 36px;
    min-width: 36px;
    max-width: 36px;
    height: 34px;
    font-size: 0.95rem;
}

body.page-cart .cart-quantity-stepper input {
    flex: 0 0 40px;
    width: 40px;
    min-width: 40px;
    max-width: 40px;
    font-weight: 700;
}

body.page-cart .cart-col-action {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    overflow: visible;
}

body.page-cart .cart-action-group {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
}

body.page-cart .cart-remove-form,
body.page-cart .cart-save-form {
    display: flex;
    align-items: center;
    margin: 0;
    min-width: 0;
    overflow: visible;
}

body.page-cart .cart-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    max-width: none;
    padding: 0 12px;
    border: 1px solid rgba(29, 23, 17, 0.14);
    border-radius: 5px;
    background: rgba(255, 252, 248, 0.96);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    overflow: visible;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

body.page-cart .cart-action-button .icon {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
}

body.page-cart .cart-action-button:hover,
body.page-cart .cart-action-button:focus-visible {
    border-color: rgba(141, 107, 49, 0.55);
    background: rgba(255, 250, 243, 1);
    color: var(--gold-dark);
    outline: none;
}

body.page-cart .cart-action-button:focus-visible {
    box-shadow: 0 0 0 2px rgba(199, 162, 90, 0.28);
}

body.page-cart .cart-action-remove:hover,
body.page-cart .cart-action-remove:focus-visible {
    border-color: rgba(29, 23, 17, 0.28);
    color: var(--ink);
}

body.page-cart .cart-action-save.is-saved,
body.page-cart .cart-action-save.is-saved:hover,
body.page-cart .cart-action-save.is-saved:focus-visible {
    border-color: rgba(141, 107, 49, 0.62);
    background: rgba(199, 162, 90, 0.12);
    color: var(--gold-dark);
}

body.page-cart .cart-table-actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

body.page-cart .cart-secondary-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    border: 1px solid rgba(199, 129, 18, 0.78);
    border-radius: 4px;
    background: rgba(255, 250, 243, 0.65);
    color: #9b650d;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
}

body.page-cart .cart-secondary-button:hover,
body.page-cart .cart-secondary-button:focus-visible {
    background: #050505;
    border-color: #050505;
    color: #fff8ef;
}

body.page-cart .cart-update-button {
    border-color: rgba(29, 23, 17, 0.28);
    color: #050505;
}

body.page-cart .cart-summary-column {
    position: sticky;
    top: 150px;
    display: grid;
    gap: 0;
}

body.page-cart .cart-summary-panel {
    position: static;
    padding: 24px;
    display: grid;
    gap: 18px;
}

body.page-cart .cart-summary-panel h2 {
    margin: 0 0 4px;
    color: #050505;
    font-size: 1.32rem;
    line-height: 1.1;
    text-transform: uppercase;
}

body.page-cart .summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(29, 23, 17, 0.8);
    font-size: 0.92rem;
}

body.page-cart .summary-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

body.page-cart .summary-row .icon {
    width: 15px;
    height: 15px;
    color: var(--gold-dark);
}

body.page-cart .summary-row strong {
    color: #050505;
    font-family: var(--font-body);
    font-size: 0.96rem;
    font-weight: 800;
    white-space: nowrap;
}

body.page-cart .summary-row-total {
    margin-top: 2px;
    padding-top: 18px;
    border-top: 1px solid rgba(29, 23, 17, 0.12);
    color: #050505;
    text-transform: uppercase;
}

body.page-cart .summary-row-total span,
body.page-cart .summary-row-total strong {
    font-size: 1.45rem;
    font-weight: 900;
}

body.page-cart .summary-actions {
    gap: 10px;
}

body.page-cart .summary-actions .btn {
    min-height: 48px;
    border-radius: 4px;
    font-size: 0.84rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

body.page-cart .summary-actions .btn-gold {
    background: linear-gradient(180deg, #d49a28, #be790d);
}

body.page-cart .summary-actions .btn-outline {
    background: transparent;
    border-color: rgba(199, 129, 18, 0.84);
    color: #9b650d;
}

body.page-cart .cart-help-strip {
    min-height: 74px;
    margin: 0 auto;
    padding: 14px 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    background: linear-gradient(90deg, rgba(248, 239, 226, 0.9), rgba(255, 250, 243, 0.82));
}

body.page-cart .cart-help-copy {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
}

body.page-cart .cart-help-icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border: 2px solid rgba(199, 129, 18, 0.65);
    border-radius: 50%;
    color: #b87912;
}

body.page-cart .cart-help-icon .icon {
    width: 23px;
    height: 23px;
}

body.page-cart .cart-help-copy strong {
    display: block;
    color: #050505;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    text-transform: uppercase;
}

body.page-cart .cart-help-copy p {
    margin: 2px 0 0;
    color: rgba(29, 23, 17, 0.78);
    font-size: 0.86rem;
}

body.page-cart .cart-help-strip .btn {
    min-width: 214px;
    min-height: 45px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
}

@media (max-width: 1280px) {
    body.page-cart .cart-page-head,
    body.page-cart .cart-layout,
    body.page-cart .cart-help-strip {
        width: min(100% - 44px, 1180px);
    }

    body.page-cart .cart-layout {
        grid-template-columns: minmax(0, 1fr) 350px;
    }

    body.page-cart .cart-table-header,
    body.page-cart .cart-table-row {
        grid-template-columns: minmax(240px, 1.7fr) 98px 66px 120px 116px minmax(240px, auto);
        gap: 12px;
    }

    body.page-cart .cart-product-info {
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 18px;
    }

    body.page-cart .cart-product-image {
        width: 108px;
        height: 108px;
    }

    body.page-cart .cart-help-strip {
        padding-inline: 48px;
    }
}

@media (max-width: 1080px) {
    body.page-cart .cart-layout {
        grid-template-columns: 1fr;
    }

    body.page-cart .cart-summary-column {
        position: static;
    }
}

@media (max-width: 820px) {
    body.page-cart .cart-page-head,
    body.page-cart .cart-layout,
    body.page-cart .cart-help-strip {
        width: min(100% - 28px, 720px);
    }

    body.page-cart .cart-title-row,
    body.page-cart .cart-help-strip,
    body.page-cart .cart-table-actions {
        flex-direction: column;
        align-items: stretch;
    }

    body.page-cart .cart-continue-link {
        margin-top: 8px;
    }

    body.page-cart .cart-table-scroll-inner {
        min-width: 0;
    }

    body.page-cart .cart-table-header {
        display: none;
    }

    body.page-cart .cart-table-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    body.page-cart .cart-col-price,
    body.page-cart .cart-col-size,
    body.page-cart .cart-col-qty,
    body.page-cart .cart-col-subtotal,
    body.page-cart .cart-col-action {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding-top: 10px;
        border-top: 1px solid rgba(29, 23, 17, 0.08);
        text-align: right;
    }

    body.page-cart .cart-col-price::before,
    body.page-cart .cart-col-size::before,
    body.page-cart .cart-col-qty::before,
    body.page-cart .cart-col-subtotal::before,
    body.page-cart .cart-col-action::before {
        content: attr(data-label);
        color: rgba(29, 23, 17, 0.7);
        font-size: 0.72rem;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        flex: 0 0 auto;
    }

    body.page-cart .cart-col-action {
        align-items: center;
    }

    body.page-cart .cart-col-action .cart-action-group {
        justify-content: flex-end;
        flex: 1 1 auto;
    }

    body.page-cart .cart-col-action .cart-action-button {
        min-height: 40px;
        width: auto;
    }

    body.page-cart .cart-product-info {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    body.page-cart .cart-product-image {
        width: 96px;
        height: 108px;
    }

    body.page-cart .cart-help-strip {
        padding: 18px;
        text-align: center;
    }

    body.page-cart .cart-help-copy {
        justify-content: center;
    }

    body.page-cart .cart-help-strip .btn,
    body.page-cart .cart-secondary-button {
        width: 100%;
    }
}

@media (max-width: 520px) {
    body.page-cart .cart-page-head,
    body.page-cart .cart-layout,
    body.page-cart .cart-help-strip {
        width: min(100% - 22px, 480px);
    }

    body.page-cart .cart-product-info {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 14px;
    }

    body.page-cart .cart-product-image {
        width: 82px;
        height: 96px;
    }

    body.page-cart .cart-summary-panel {
        padding: 18px;
    }

    body.page-cart .summary-row-total span,
    body.page-cart .summary-row-total strong {
        font-size: 1.18rem;
    }

    body.page-cart .cart-help-copy {
        flex-direction: column;
        gap: 10px;
    }
}

/* Admin workspace refinement: operational, dense, app-like. */
.page-admin {
    --admin-bg: #f8f3ea;
    --admin-surface: #fffdf9;
    --admin-surface-muted: #f7efe4;
    --admin-card: #fffdf8;
    --admin-ink: #11100e;
    --admin-muted: #706657;
    --admin-line: rgba(28, 22, 15, 0.10);
    --admin-accent: #c8942f;
    --admin-accent-soft: rgba(199, 162, 90, 0.16);
    --admin-accent-dark: #0d5e3c;
    --admin-gold-soft: rgba(199, 162, 90, 0.14);
    --admin-shadow: 0 18px 46px rgba(25, 20, 13, 0.075);
    --admin-radius: 10px;
    --admin-input-bg: #fbfcfb;
    --admin-table-header-bg: #f7f9f6;
    --admin-section-head-bg: #fffaf2;
    --admin-rail-bg-start: #0e110f;
    --admin-rail-bg-end: #181d19;
    --admin-btn-gold-start: #c8942f;
    --admin-btn-gold-end: #d9b76d;
    background: var(--admin-bg);
}

.page-admin body,
.page-admin .site-main {
    color: var(--admin-ink);
}

.page-admin .admin-shell {
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 56px;
    background:
        linear-gradient(180deg, #f8faf7 0%, #f1f4f0 44%, #edf1ec 100%);
}

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

.page-admin .container {
    width: min(1360px, calc(100% - 32px));
}

/* Admin Hero Topbar (lookbook-style) */
.page-admin .admin-hero-topbar {
    padding: 40px 0 36px;
    background:
        linear-gradient(90deg, rgba(251, 248, 243, 0.98) 0%, rgba(251, 248, 243, 0.92) 31%, rgba(251, 248, 243, 0.36) 52%, rgba(251, 248, 243, 0.06) 76%),
        url("../images/banners/hero-gold-kaftan-alt.png");
    background-position: center right;
    background-size: cover;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

@media (min-width: 1060px) {
    .page-admin .admin-hero-topbar {
        margin-bottom: 20px;
    }
}

.page-admin .admin-breadcrumbs {
    margin: 0 0 24px;
    color: rgba(29, 23, 17, 0.7);
    font-size: 0.86rem;
    display: flex;
    align-items: center;
    gap: 11px;
}

.page-admin .admin-breadcrumbs a,
.page-admin .admin-breadcrumbs .breadcrumb-current {
    color: #1d1711;
    text-decoration: none;
}

.page-admin .admin-breadcrumbs a:hover {
    color: var(--gold-dark);
}

.page-admin .admin-breadcrumbs .breadcrumb-separator {
    color: rgba(29, 23, 17, 0.42);
}

.page-admin .admin-hero-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.page-admin .admin-hero-text {
    flex: 1 1 auto;
}

.page-admin .admin-hero-text h1 {
    position: relative;
    margin: 0 0 10px;
    color: #050505;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.92;
    letter-spacing: -0.035em;
    font-weight: 900;
}

.page-admin .admin-hero-text h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-dark);
}

.page-admin .admin-hero-subtitle {
    margin: 18px 0 0;
    color: rgba(29, 23, 17, 0.78);
    font-size: 0.92rem;
}

.page-admin .admin-hero-subtitle strong {
    color: #050505;
}

.page-admin .admin-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.page-admin .admin-hero-actions .admin-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(29, 23, 17, 0.14);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.8);
}

.page-admin .admin-hero-actions .admin-search-form input[type="search"] {
    border: 0;
    background: transparent;
    font-size: 0.86rem;
    min-width: 200px;
    outline: 0;
}

.page-admin .admin-hero-actions .admin-icon-action {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(29, 23, 17, 0.14);
    border-radius: 50%;
    color: #1d1711;
    text-decoration: none;
    transition: border-color 0.18s ease, color 0.18s ease;
}

.page-admin .admin-hero-actions .admin-icon-action:hover {
    border-color: var(--gold-dark);
    color: var(--gold-dark);
}

.page-admin .admin-hero-actions .admin-hero-btn {
    min-height: 40px;
    padding: 0 20px;
    border-radius: 5px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.page-admin .admin-hero-actions .btn-gold {
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    border: 0;
}

.page-admin .admin-hero-actions .btn-gold:hover {
    background: linear-gradient(180deg, #e0a838, #c8871a);
}

.page-admin .admin-hero-actions .btn-outline {
    border: 1px solid rgba(29, 23, 17, 0.14);
    background: rgba(255, 255, 255, 0.6);
    color: #050505;
}

.page-admin .admin-hero-actions .btn-outline:hover {
    border-color: var(--gold-dark);
    color: var(--gold-dark);
}

/* Admin mobile bottom nav (Richlance-style) */
.admin-mobile-bottom-nav,
.admin-mobile-more-sheet,
.admin-dashboard-mobile-shell,
.admin-dashboard-mobile-only,
.admin-orders-mobile-shell,
.admin-orders-mobile-only,
.admin-products-mobile-shell,
.admin-products-mobile-only,
.admin-customers-mobile-shell,
.admin-customers-mobile-only,
.admin-collections-mobile-shell,
.admin-collections-mobile-only,
.admin-notifications-mobile-shell,
.admin-notifications-mobile-only,
.admin-finance-mobile-shell,
.admin-finance-mobile-only,
.admin-leads-mobile-shell,
.admin-leads-mobile-only,
.admin-reports-mobile-shell,
.admin-reports-mobile-only,
.admin-settings-mobile-shell,
.admin-settings-mobile-only,
.admin-mobile-hero,
.admin-mobile-stats,
.admin-mobile-actions,
.admin-mobile-snapshot,
.admin-mobile-finance,
.admin-mobile-section,
.admin-mobile-inventory {
    display: none;
}

.admin-desktop-only {
    display: block;
}

.admin-dashboard-desktop-only {
    display: block;
}

.admin-orders-desktop-only {
    display: block;
}

.admin-products-desktop-only {
    display: block;
}

.admin-customers-desktop-only {
    display: block;
}

.admin-collections-desktop-only {
    display: block;
}

.admin-notifications-desktop-only {
    display: block;
}

.admin-finance-desktop-only {
    display: block;
}

.admin-leads-desktop-only {
    display: block;
}

.admin-reports-desktop-only {
    display: block;
}

.admin-settings-desktop-only {
    display: block;
}

/* Admin App Nav — floating pill below 1060px (see @media max-width: 1059px). */
.page-admin .admin-app-nav {
    display: none;
}

/* Hide old topbar */
.page-admin .admin-topbar {
    display: none !important;
}

/* Admin content panels — lookbook card style */
.page-admin .admin-panel,
.page-admin .admin-login-card,
.page-admin .admin-order-card,
.page-admin .admin-lead-card,
.page-admin .admin-notification-card {
    padding: 24px 22px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    box-shadow: none;
}

.page-admin .admin-panel:hover {
    border-color: rgba(199, 162, 90, 0.3);
    box-shadow: 0 6px 20px rgba(29, 23, 17, 0.05);
}

.page-admin .admin-panel h2,
.page-admin .admin-panel h3,
.page-admin .admin-login-card h2 {
    color: #050505;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.page-admin .admin-panel h2 {
    font-size: 1.1rem;
}

.page-admin .admin-panel h3 {
    font-size: 0.88rem;
    letter-spacing: 0.03em;
}

.page-admin .admin-panel .section-copy {
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.9rem;
    line-height: 1.55;
}

/* Admin stat cards — lookbook info card style */
.page-admin .stat-card {
    position: relative;
    overflow: hidden;
    min-height: 100px;
    padding: 20px;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    background: #fff;
    box-shadow: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.page-admin .stat-card:hover {
    border-color: rgba(199, 162, 90, 0.3);
    box-shadow: 0 6px 20px rgba(29, 23, 17, 0.05);
}

.page-admin .stat-card strong {
    color: #050505;
    font-size: 1.6rem;
    font-weight: 900;
}

.page-admin .stat-card span {
    color: rgba(29, 23, 17, 0.62);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

/* Admin buttons — gold style */
.page-admin .btn-gold {
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    border: 0;
    border-radius: 5px;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.page-admin .btn-gold:hover {
    background: linear-gradient(180deg, #e0a838, #c8871a);
}

.page-admin .btn-outline {
    border: 1px solid rgba(29, 23, 17, 0.14);
    border-radius: 5px;
    background: transparent;
    color: #050505;
    font-weight: 700;
}

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

/* Admin inputs — lookbook focus style */
.page-admin input[type="text"],
.page-admin input[type="email"],
.page-admin input[type="tel"],
.page-admin input[type="password"],
.page-admin input[type="number"],
.page-admin input[type="search"],
.page-admin select,
.page-admin textarea {
    border: 1px solid rgba(29, 23, 17, 0.14);
    border-radius: 4px;
    background: #fbf8f3;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.page-admin input:focus,
.page-admin select:focus,
.page-admin textarea:focus {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(199, 162, 90, 0.12);
    outline: 0;
}

/* Admin section anchor / subnav */
.page-admin .admin-section-anchor {
    display: flex;
    gap: clamp(16px, 3vw, 40px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(29, 23, 17, 0.08);
}

.page-admin .admin-section-anchor a {
    position: relative;
    padding: 0 0 10px;
    color: #050505;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.page-admin .admin-section-anchor a.is-active {
    color: var(--gold-dark);
}

/* Admin desktop rail — keep dark but match gold accents */
.page-admin .admin-desktop-rail a:hover,
.page-admin .admin-desktop-rail a.is-active,
.page-admin .admin-desktop-rail button:hover {
    background: rgba(199, 162, 90, 0.16);
    color: var(--gold-light, #d9b76d);
}

/* Responsive */
@media (max-width: 760px) {
    .page-admin .admin-hero-topbar {
        padding: 28px 0 24px;
    }

    .page-admin .admin-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .page-admin .admin-hero-actions {
        width: 100%;
    }

    .page-admin .admin-hero-actions .admin-search-form {
        flex: 1 1 auto;
    }

    .page-admin .admin-hero-actions .admin-search-form input[type="search"] {
        min-width: 0;
        width: 100%;
    }

    .page-admin .admin-hero-actions .admin-hero-btn {
        flex: 1 1 auto;
        justify-content: center;
    }
}

.page-admin .admin-topbar h1 {
    margin: 2px 0 4px;
    color: var(--admin-ink);
    font-family: var(--font-body);
    font-size: clamp(1.45rem, 2.7vw, 2.25rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.08;
}

.page-admin .admin-topbar .section-copy {
    margin: 0;
    max-width: 76ch;
    color: var(--admin-muted);
    font-size: 0.94rem;
}

.page-admin .eyebrow {
    color: var(--admin-accent);
    letter-spacing: 0.13em;
}

.page-admin .admin-stats-grid {
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.page-admin .stat-card {
    position: relative;
    overflow: hidden;
    min-height: 106px;
    padding: 17px;
    border: 1px solid var(--admin-line);
    border-radius: var(--admin-radius);
    background: var(--admin-surface);
    box-shadow: 0 12px 28px rgba(21, 24, 21, 0.055);
}

.page-admin .stat-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--admin-accent), var(--gold));
}

.page-admin .stat-card strong {
    color: var(--admin-ink);
    font-family: var(--font-body);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    font-weight: 950;
    letter-spacing: 0;
}

.page-admin .stat-card span {
    color: var(--admin-muted);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-admin .admin-report-note {
    margin-bottom: 16px;
}

.page-admin .note-card {
    border-radius: var(--admin-radius);
    border-color: var(--admin-line);
    background: linear-gradient(135deg, #ffffff, #f5f7f4);
}

.page-admin .admin-panels,
.page-admin .admin-panels-lower {
    gap: 16px;
}

/* Full-width panel when it's the only child (e.g. product list) */
.page-admin .admin-panels > .admin-panel:only-child {
    grid-column: 1 / -1;
}

/* Stacked panels — each panel full width (e.g. collections tables) */
.page-admin .admin-panels-stacked {
    grid-template-columns: 1fr;
}

.page-admin .admin-panels-stacked > .admin-panel {
    grid-column: 1 / -1;
}

.page-admin .admin-panels > .admin-panel {
    min-width: 0;
}

.page-admin .admin-panel,
.page-admin .admin-login-card,
.page-admin .admin-order-card,
.page-admin .admin-lead-card,
.page-admin .admin-notification-card {
    border: 1px solid var(--admin-line);
    border-radius: var(--admin-radius);
    background: var(--admin-surface);
    box-shadow: 0 12px 28px rgba(21, 24, 21, 0.055);
}

.page-admin .admin-panel {
    padding: 20px;
}

.page-admin .admin-panel:hover {
    transform: none;
    box-shadow: 0 16px 34px rgba(21, 24, 21, 0.075);
}

.page-admin .admin-panel h2,
.page-admin .admin-panel h3,
.page-admin .admin-login-card h2 {
    margin-top: 0;
    color: var(--admin-ink);
    font-family: var(--font-body);
    font-weight: 950;
    letter-spacing: 0;
}

.page-admin .admin-panel h2 {
    font-size: 1.25rem;
}

.page-admin .admin-panel h3 {
    font-size: 1rem;
}

.page-admin .admin-panel .section-copy {
    color: var(--admin-muted);
    font-size: 0.92rem;
}

.page-admin .admin-form {
    gap: 14px;
}

.page-admin .form-grid {
    gap: 12px;
}

.page-admin .field span {
    color: var(--admin-muted);
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-admin .admin-form input,
.page-admin .admin-form select,
.page-admin .admin-form textarea,
.page-admin .admin-login-card input {
    min-height: 44px;
    border: 1px solid var(--admin-line);
    border-radius: var(--admin-radius);
    background: var(--admin-input-bg);
    color: var(--admin-ink);
}

.page-admin .admin-form input:focus,
.page-admin .admin-form select:focus,
.page-admin .admin-form textarea:focus,
.page-admin .admin-login-card input:focus {
    border-color: rgba(15, 122, 77, 0.55);
    box-shadow: 0 0 0 4px var(--admin-accent-soft);
}

.page-admin .btn {
    min-height: 42px;
    border-radius: var(--admin-radius);
    font-weight: 950;
    letter-spacing: 0.02em;
}

.page-admin .btn-xs {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 0.78rem;
}

.page-admin .btn-gold {
    color: #ffffff;
    background: linear-gradient(135deg, var(--admin-rail-bg-start), var(--admin-rail-bg-end));
    box-shadow: 0 12px 22px rgba(21, 24, 21, 0.16);
}

.page-admin .btn-outline,
.page-admin .btn-soft {
    color: var(--admin-ink);
    border-color: var(--admin-line);
    background: #ffffff;
}

.page-admin .btn-outline:hover,
.page-admin .btn-soft:hover {
    border-color: rgba(15, 122, 77, 0.35);
    background: var(--admin-accent-soft);
    color: var(--admin-accent-dark);
}

.page-admin .hero-actions {
    gap: 8px;
    margin-top: 14px;
}

.page-admin .admin-table-wrap {
    border: 1px solid var(--admin-line);
    border-radius: var(--admin-radius);
    background: #ffffff;
}

.page-admin .admin-table {
    border-collapse: separate;
    border-spacing: 0;
}

.page-admin .admin-table th,
.page-admin .admin-table td {
    padding: 12px;
    border-bottom: 1px solid var(--admin-line);
    font-size: 0.88rem;
}

.page-admin .admin-table th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--admin-table-header-bg);
    color: var(--admin-muted);
    font-size: 0.72rem;
    letter-spacing: 0.09em;
}

.page-admin .admin-table tbody tr:hover {
    background: rgba(15, 122, 77, 0.035);
}

.page-admin .admin-table small,
.page-admin .admin-order-card small {
    color: var(--admin-muted);
}

.page-admin .admin-list {
    gap: 10px;
}

.page-admin .admin-order-card,
.page-admin .admin-lead-card,
.page-admin .admin-notification-card {
    gap: 10px;
    padding: 14px;
    background: #ffffff;
}

.page-admin .admin-order-head strong {
    color: var(--admin-ink);
    font-size: 0.98rem;
}

.page-admin .admin-order-head span,
.page-admin .admin-notification-card span {
    border-radius: 999px;
    background: var(--admin-accent-soft);
    color: var(--admin-accent-dark);
}

.page-admin .checkbox-row {
    gap: 10px;
    color: var(--admin-muted);
}

.page-admin .checkbox-row label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border: 1px solid var(--admin-line);
    border-radius: 999px;
    background: #ffffff;
    font-size: 0.82rem;
}

.page-admin .admin-upload-preview {
    border-color: var(--admin-line);
    border-radius: var(--admin-radius);
    background: var(--admin-surface-muted);
}

.page-admin .admin-upload-preview img,
.page-admin .admin-product-thumb {
    border-radius: 8px;
}

.page-admin .admin-edit-panel {
    margin-top: 16px;
    padding: 18px;
    border: 1px solid var(--admin-line);
    border-radius: var(--admin-radius);
    background: var(--admin-surface-muted);
}

@media (min-width: 1060px) {
    .page-admin .admin-shell-dashboard {
        padding-left: 266px;
    }

    .page-admin .admin-desktop-rail {
        left: 16px;
        top: 16px;
        bottom: 16px;
        width: 232px;
        gap: 5px;
        padding: 16px;
        border-radius: 14px;
        background: linear-gradient(180deg, var(--admin-rail-bg-start), var(--admin-rail-bg-end));
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
    }

    .page-admin .admin-desktop-rail a,
    .page-admin .admin-desktop-rail button {
        min-height: 40px;
        padding: 10px 11px;
        border-radius: var(--admin-radius);
        font-size: 0.84rem;
    }

    .page-admin .admin-desktop-rail a:hover,
    .page-admin .admin-desktop-rail a.is-active,
    .page-admin .admin-desktop-rail button:hover {
        background: rgba(15, 122, 77, 0.32);
    }

    .page-admin .admin-rail-brand {
        margin-bottom: 10px;
        padding-bottom: 14px;
    }
}

@media (min-width: 1240px) {
    .page-admin .admin-panels {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .page-admin #admin-finance,
    .page-admin #admin-customers,
    .page-admin #admin-staff {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1120px) {
    .page-admin .admin-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .page-admin .container {
        width: min(100% - 22px, 560px);
    }

    .page-admin .admin-shell {
        padding-top: 0;
    }

    .page-admin .admin-topbar {
        padding: 15px;
        border-radius: 14px;
    }

    .page-admin .admin-topbar h1 {
        font-size: 1.55rem;
    }

    .page-admin .admin-stats-grid,
    .page-admin .admin-report-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .page-admin .stat-card {
        min-height: 98px;
        padding: 14px 14px 14px 16px;
    }

    .page-admin .stat-card strong {
        font-size: 1.28rem;
    }

    .page-admin .stat-card span {
        font-size: 0.68rem;
    }

    .page-admin .admin-panel {
        padding: 15px;
    }

    .page-admin .admin-panels,
    .page-admin .admin-panels-lower,
    .page-admin .form-grid,
    .page-admin .form-grid-3 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .page-admin .hero-actions .btn {
        width: 100%;
    }

    .page-admin #admin-dashboard,
    .page-admin #admin-settings,
    .page-admin #admin-products,
    .page-admin #admin-orders,
    .page-admin #admin-customers,
    .page-admin #admin-finance,
    .page-admin #admin-leads,
    .page-admin #admin-notifications,
    .page-admin #admin-staff {
        scroll-margin-top: 18px;
    }

    .page-admin .admin-table-wrap {
        margin-inline: 0;
        padding: 0;
        border-radius: var(--admin-radius);
    }

    .page-admin .admin-table {
        min-width: 780px;
    }

    .page-admin .admin-order-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .page-admin .table-actions,
    .page-admin .inline-form {
        width: 100%;
    }

    .page-admin .table-actions .btn,
    .page-admin .inline-form .btn {
        width: 100%;
    }
}

@media (max-width: 460px) {
    .page-admin .admin-stats-grid,
    .page-admin .admin-report-grid,
    .page-admin .hero-actions {
        grid-template-columns: 1fr;
    }

    .page-admin .admin-finance-toolbar .hero-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-admin .admin-form input,
    .page-admin .admin-form select,
    .page-admin .admin-form textarea {
        font-size: 16px;
    }
}

/* Dashboard match layer: user and admin backends. */
.page-account {
    background: #f8f4ec;
}

.page-account .site-main {
    padding-bottom: 0;
    background:
        linear-gradient(180deg, #fbf8f2 0%, #f4ecdf 100%);
}

.page-account .account-dashboard-hero {
    padding: 34px 0 18px;
    background: transparent;
}

.page-account .account-dashboard-hero h1 {
    margin: 0;
    color: #12110f;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    letter-spacing: 0;
}

.page-account .account-app-section {
    padding-top: 10px;
}

.page-account .account-app-summary {
    max-width: 1180px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.page-account .account-stat-card {
    min-height: 118px;
    border-radius: 8px;
    border-color: rgba(29, 23, 17, 0.10);
    background: #fffdf9;
    box-shadow: 0 16px 40px rgba(29, 23, 17, 0.07);
}

.page-account .account-stat-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #c8942f, #0b0b0b);
}

.page-account .account-stat-card strong {
    font-family: var(--font-body);
    font-weight: 950;
    letter-spacing: 0;
}

.page-account .account-dashboard-shell {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    max-width: 1180px;
}

.page-account .account-dashboard-nav {
    position: sticky;
    top: 18px;
    display: grid;
    gap: 7px;
    min-height: 620px;
    padding: 20px 16px;
    border-radius: 8px;
    background: linear-gradient(180deg, #050505, #11100d);
    color: rgba(255, 248, 238, 0.82);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.18);
}

.page-account .account-dashboard-nav strong {
    display: grid;
    gap: 2px;
    margin-bottom: 18px;
    padding: 4px 8px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff8ee;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.12em;
}

.page-account .account-dashboard-nav strong small {
    color: #c8942f;
    font-family: var(--font-body);
    font-size: 0.58rem;
    letter-spacing: 0.4em;
}

.page-account .account-dashboard-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 10px 12px;
    border-radius: 7px;
    color: inherit;
    font-size: 0.88rem;
    font-weight: 800;
}

.page-account .account-dashboard-nav a:hover,
.page-account .account-dashboard-nav a.is-active {
    background: rgba(199, 162, 90, 0.20);
    color: #fff8ee;
}

.page-account .account-app-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 860px;
}

.page-account .account-app-card,
.page-account .auth-card {
    border-radius: 8px;
    border: 1px solid rgba(29, 23, 17, 0.10);
    background: #fffdf9;
    box-shadow: 0 16px 40px rgba(29, 23, 17, 0.07);
}

.page-account .account-app-card h2,
.page-account .auth-card h2 {
    color: #12110f;
    font-family: var(--font-heading);
    letter-spacing: 0;
}

.page-account .account-app-card .field span,
.page-account .auth-card .field span {
    color: #6f6254;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-account .account-app-card input,
.page-account .account-app-card textarea,
.page-account .auth-card input,
.page-account .auth-card textarea,
.page-account .auth-card select {
    border-radius: 7px;
    background: #fffaf2;
}

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

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

.page-account .saved-item {
    border-radius: 8px;
    background: #fffaf2;
}

.page-account .saved-item img {
    border-radius: 7px;
}

.page-account .history-list {
    display: grid;
    gap: 12px;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
    border: 0;
    border-radius: 0;
}

.page-account .history-item {
    display: grid;
    grid-template-columns: minmax(100px, 0.6fr) minmax(0, 1.4fr);
    gap: 12px;
    padding: 14px 16px;
    border-bottom-color: rgba(29, 23, 17, 0.08);
    background: #fffdf9;
}

.page-account .history-item:nth-child(even) {
    background: #fbf5ea;
}

.page-account .account-dashboard-nav .nav-divider {
    border-top-color: rgba(255, 255, 255, 0.12);
    opacity: 1;
}

.page-account .account-dashboard-nav .nav-logout-form {
    margin-top: auto;
    padding-top: 10px;
}

.page-account .account-dashboard-nav .btn-logout {
    width: 100%;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 248, 238, 0.7);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.page-account .account-dashboard-nav .btn-logout:hover {
    background: rgba(180, 60, 60, 0.14);
    color: #e8a0a0;
    border-color: rgba(180, 60, 60, 0.25);
}

.page-account .account-order-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 18px;
    align-items: start;
    min-width: 0;
    max-width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(29, 23, 17, 0.10);
    border-radius: 14px;
    background: #fffdf9;
    box-sizing: border-box;
    overflow: hidden;
}

.page-account .account-order-main {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.page-account .account-order-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px 12px;
    min-width: 0;
}

.page-account .account-order-id,
.page-account .account-order-head strong,
.page-account .account-order-tracking-id {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
    min-width: 0;
    flex: 1 1 auto;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.25;
}

.page-account .account-order-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 0 1 auto;
    max-width: 100%;
    min-width: 0;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
    box-sizing: border-box;
}

.page-account .account-order-status--delivered {
    background: rgba(15, 122, 77, 0.12);
    color: #0d5e3c;
}

.page-account .account-order-status--processing {
    background: rgba(199, 162, 90, 0.14);
    color: var(--gold-dark);
}

.page-account .account-order-status--pending {
    background: rgba(102, 112, 100, 0.12);
    color: #4a5548;
}

.page-account .account-order-status--cancelled {
    background: rgba(180, 60, 60, 0.10);
    color: #8b3030;
}

.page-account .account-order-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 0;
    min-width: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.page-account .account-order-meta > span:not(:last-child)::after {
    content: "·";
    margin: 0 8px;
    color: rgba(29, 23, 17, 0.28);
}

.page-account .account-order-side {
    display: grid;
    gap: 10px;
    justify-items: end;
    align-content: start;
    min-width: 0;
    max-width: 100%;
}

.page-account .account-order-total {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.page-account .account-order-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    min-width: 0;
    max-width: 100%;
}

.page-account .account-order-actions .btn,
.page-account .account-order-reorder,
.page-account .account-order-actions form {
    min-width: 0;
    max-width: 100%;
}

.page-account .account-order-reorder {
    display: inline-flex;
    margin: 0;
}

.page-account .account-saved-card {
    position: relative;
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    background: #fffaf2;
    border: 1px solid rgba(29, 23, 17, 0.08);
}

.page-account .account-saved-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 7px;
}

.page-account .account-saved-card strong {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--ink);
    font-size: 0.92rem;
}

.page-account .account-saved-card span {
    color: var(--muted);
    font-size: 0.86rem;
}

.page-account .account-saved-actions {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.page-account .account-password-card {
    padding: 20px;
    border: 1px solid rgba(29, 23, 17, 0.10);
    border-radius: 8px;
    background: #fffdf9;
    box-shadow: 0 16px 40px rgba(29, 23, 17, 0.07);
}

.page-account .account-password-card h3 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0;
    color: var(--ink);
}

.page-account .account-empty-state {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 28px 20px;
    text-align: center;
    color: var(--muted);
}

.page-account .account-empty-state .icon {
    color: var(--gold-light);
    width: 40px;
    height: 40px;
}

.page-account .account-dashboard-panel {
    padding: 20px;
    border: 1px solid rgba(29, 23, 17, 0.10);
    border-radius: 8px;
    background: #fffdf9;
    box-shadow: 0 16px 40px rgba(29, 23, 17, 0.07);
}

.page-account .account-dashboard-panel h3 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0;
    font-size: 1.1rem;
    color: var(--ink);
}

.page-account .account-dashboard-grid {
    display: grid;
    gap: 18px;
}

.page-account .account-b2b-panel .account-stat-card {
    min-height: auto;
    padding: 14px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.page-account .account-b2b-panel .account-stat-card strong {
    font-size: 1.1rem;
}

/* Admin variables consolidated above. */

.page-admin .admin-shell {
    background: linear-gradient(180deg, #fbf8f2 0%, #f3ebde 100%);
}

.page-admin .admin-topbar,
.page-admin .admin-panel,
.page-admin .stat-card,
.page-admin .admin-order-card,
.page-admin .admin-lead-card,
.page-admin .admin-notification-card {
    border-radius: 8px;
    background: #fffdf9;
}

.page-admin .admin-topbar h1,
.page-admin .admin-panel h2,
.page-admin .admin-panel h3 {
    font-family: var(--font-heading);
    letter-spacing: 0;
}

.page-admin .stat-card::before {
    background: linear-gradient(180deg, #c8942f, #0b0b0b);
}

.page-admin .btn-gold {
    background: linear-gradient(135deg, var(--admin-btn-gold-start), var(--admin-btn-gold-end));
    color: #11100e;
}

.page-admin .admin-desktop-rail {
    background: linear-gradient(180deg, #050505, #11100d);
}

.page-admin .admin-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.8fr);
    gap: 16px;
}

.page-admin .admin-chart-panel,
.page-admin .admin-orders-panel {
    min-height: 280px;
}

.page-admin .admin-dashboard-grid > .admin-panel {
    min-width: 0;
    overflow: hidden;
}

.page-admin .admin-dashboard-grid .admin-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.page-admin .admin-dashboard-grid .admin-table {
    min-width: 560px;
}

.page-admin .admin-orders-panel .admin-table th:first-child,
.page-admin .admin-orders-panel .admin-table td:first-child {
    white-space: nowrap;
}

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

.page-admin .admin-section-head h2 {
    margin: 2px 0 0;
}

.page-admin .admin-section-head > span,
.page-admin .admin-section-head a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 10px;
    border: 1px solid var(--admin-line);
    border-radius: 7px;
    color: var(--admin-muted);
    background: var(--admin-section-head-bg);
    font-size: 0.78rem;
    font-weight: 900;
}

.page-admin .admin-sales-chart {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
    min-height: 210px;
    align-items: end;
    padding: 18px 8px 4px;
    border: 1px solid var(--admin-line);
    border-radius: 8px;
    background:
        repeating-linear-gradient(180deg, transparent 0 39px, rgba(29, 23, 17, 0.05) 40px),
        #fffaf2;
}

.page-admin .admin-sales-bar {
    display: grid;
    gap: 8px;
    align-items: end;
    min-width: 0;
}

.page-admin .admin-sales-bar span {
    display: block;
    height: var(--bar);
    min-height: 12px;
    border-radius: 999px 999px 4px 4px;
    background: linear-gradient(180deg, #d9b76d, #c8942f);
    box-shadow: 0 10px 20px rgba(199, 162, 90, 0.18);
}

.page-admin .admin-sales-bar small {
    color: var(--admin-muted);
    font-size: 0.68rem;
    font-weight: 800;
    text-align: center;
}

.page-admin .admin-mini-list {
    display: grid;
    gap: 10px;
}

.page-admin .admin-mini-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--admin-line);
    border-radius: 8px;
    background: var(--admin-section-head-bg);
}

.page-admin .admin-mini-item > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.page-admin .admin-lead-mini {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

.page-admin .admin-lead-open {
    flex-shrink: 0;
    text-decoration: none;
    white-space: nowrap;
}

.page-admin .admin-lead-card.is-active {
    border-color: rgba(199, 162, 90, 0.55);
    box-shadow: 0 0 0 2px rgba(199, 162, 90, 0.18);
}

.page-admin .admin-mini-item img {
    width: 46px;
    height: 54px;
    object-fit: cover;
    border-radius: 6px;
}

.page-admin .admin-mini-item strong,
.page-admin .admin-mini-item span {
    display: block;
}

.page-admin .admin-mini-item span {
    color: var(--admin-muted);
    font-size: 0.78rem;
}

.page-admin .admin-mini-item em,
.page-admin .admin-status-pill {
    border-radius: 999px;
    padding: 5px 8px;
    background: var(--admin-accent-soft);
    color: #8d6b31;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 950;
}

@media (min-width: 1180px) {
    .page-admin .admin-orders-panel {
        grid-column: 1;
    }
}

@media (max-width: 980px) {
    .page-account .account-dashboard-shell,
    .page-account .account-app-layout,
    .page-admin .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .page-account .account-dashboard-nav {
        position: static;
        min-height: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .page-account .account-dashboard-nav strong {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .page-account .site-main {
        padding-bottom: calc(118px + env(safe-area-inset-bottom));
    }

    .page-account .account-dashboard-hero {
        padding-top: 20px;
    }

    .page-account .account-app-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .page-account .account-stat-card {
        min-height: 98px;
        padding: 14px 14px 14px 16px;
    }

    .page-account .account-dashboard-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 14px;
        border-radius: 8px;
    }

    .page-account .account-dashboard-nav a {
        min-height: 42px;
        justify-content: center;
        text-align: center;
    }

    .page-account .account-app-card,
    .page-account .auth-card {
        padding: 16px;
    }

    .page-account .saved-grid,
    .page-account .history-item {
        grid-template-columns: 1fr;
    }

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

    .page-account .account-saved-actions {
        flex-direction: column;
    }

    .page-account .account-order-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .page-account .account-order-side {
        justify-items: stretch;
        width: 100%;
    }

    .page-account .account-order-total {
        justify-self: start;
    }

    .page-account .account-order-actions {
        flex-direction: column;
        justify-content: stretch;
    }

    .page-account .account-order-actions .btn,
    .page-account .account-order-actions form,
    .page-account .account-order-reorder {
        width: 100%;
    }

    .page-account .account-order-actions form .btn,
    .page-account .account-order-reorder .btn {
        width: 100%;
    }

    .page-account .account-b2b-panel .form-grid {
        grid-template-columns: 1fr;
    }

    .page-account .account-dashboard-panel .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-admin .admin-dashboard-grid {
        gap: 12px;
    }

    .page-admin .admin-sales-chart {
        min-height: 170px;
        gap: 8px;
    }

    .page-admin .admin-mini-item {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 10px;
        padding: 12px 14px;
    }

    .page-admin .admin-mini-item em {
        grid-column: 2;
        justify-self: start;
    }

    .page-admin .admin-lead-mini {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        align-items: center;
    }

    .page-admin .admin-lead-mini .admin-lead-open {
        justify-self: end;
    }
}

/* Admin variables consolidated in .page-admin block above. */

body.page-admin .admin-shell {
    min-height: 100vh;
    padding-top: 18px;
    padding-bottom: 72px;
    background:
        radial-gradient(circle at top right, rgba(218, 187, 126, 0.24), transparent 36%),
        linear-gradient(180deg, #fbf7ef 0%, #f3eadc 100%);
}

body.page-admin .container {
    width: min(1380px, calc(100% - 36px));
}

body.page-admin .admin-topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin-bottom: 16px;
    padding: 18px;
    border: 1px solid var(--admin-line);
    border-radius: var(--admin-radius);
    background: rgba(255, 253, 248, 0.92);
    box-shadow: var(--admin-shadow);
    backdrop-filter: blur(18px);
}

body.page-admin .admin-topbar h1 {
    margin: 0 0 4px;
    color: var(--admin-ink);
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.8vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 0;
}

body.page-admin .admin-topbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

body.page-admin .admin-search-form {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: min(34vw, 360px);
    min-height: 44px;
    padding: 0 13px;
    border: 1px solid var(--admin-line);
    border-radius: 999px;
    background: var(--admin-section-head-bg);
    color: var(--admin-muted);
}

body.page-admin .admin-search-form input {
    width: 100%;
    min-height: 40px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--admin-ink);
    font: inherit;
}

body.page-admin .admin-icon-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--admin-line);
    border-radius: 999px;
    background: var(--admin-section-head-bg);
    color: var(--admin-ink);
}

body.page-admin .admin-icon-action:hover,
body.page-admin .admin-search-form:focus-within {
    border-color: rgba(200, 148, 47, 0.45);
    box-shadow: 0 0 0 4px rgba(200, 148, 47, 0.12);
}

body.page-admin .admin-desktop-rail {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--admin-radius);
    background: linear-gradient(180deg, #050505 0%, #13120f 100%);
}

body.page-admin .admin-desktop-rail a,
body.page-admin .admin-desktop-rail button {
    border-radius: 8px;
}

body.page-admin .admin-desktop-rail a.is-active,
body.page-admin .admin-desktop-rail a:hover,
body.page-admin .admin-desktop-rail button:hover {
    background: linear-gradient(135deg, rgba(200, 148, 47, 0.26), rgba(255, 255, 255, 0.07));
    color: #fff8ea;
}

body.page-admin .admin-rail-submenu {
    display: grid;
    gap: 4px;
    margin: -4px 0 4px;
    padding: 0 0 0 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

body.page-admin .admin-desktop-rail .admin-rail-submenu a {
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 10px;
    color: rgba(255, 248, 234, 0.74);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

body.page-admin .admin-desktop-rail .admin-rail-submenu a.is-subactive {
    background: rgba(200, 148, 47, 0.18);
    color: #fff8ea;
}

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

body.page-admin .stat-card {
    min-height: 124px;
    padding: 18px;
    border: 1px solid var(--admin-line);
    border-radius: var(--admin-radius);
    background: var(--admin-card);
    box-shadow: var(--admin-shadow);
}

body.page-admin .stat-card span {
    order: -1;
    color: var(--admin-muted);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

body.page-admin .stat-card strong {
    margin-top: 8px;
    color: var(--admin-ink);
    font-family: var(--font-body);
    font-size: clamp(1.35rem, 2.2vw, 2.05rem);
    font-weight: 950;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

body.page-admin .stat-card small {
    margin-top: auto;
    color: var(--admin-muted);
    font-size: 0.78rem;
    line-height: 1.35;
}

/* Stat card icons (lookbook-style) */
body.page-admin .stat-card-icon {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin: 0 0 12px;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--admin-accent);
    order: -1;
}

body.page-admin .stat-card-icon .icon,
body.page-admin .stat-card-icon svg {
    width: 18px;
    height: 18px;
}

/* Admin Products List (lookbook-style) */
body.page-admin .admin-products-list-section {
    margin-bottom: 24px;
}

body.page-admin .admin-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 20px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
}

body.page-admin .admin-section-header .eyebrow {
    margin: 0 0 4px;
    color: var(--admin-accent);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.page-admin .admin-section-header h2 {
    margin: 0;
    color: #050505;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: -0.01em;
}

body.page-admin .admin-section-header .btn {
    flex: 0 0 auto;
}

body.page-admin .admin-products-table-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
}

body.page-admin .admin-products-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    min-width: 820px;
}

body.page-admin .admin-products-table thead {
    background: #050505;
}

body.page-admin .admin-products-table th {
    padding: 14px 16px;
    background: #050505;
    color: var(--gold-light, #d9b76d);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-align: left;
    white-space: nowrap;
}

body.page-admin .admin-products-table th:first-child,
body.page-admin .admin-products-table td:first-child {
    padding-left: 22px;
}

body.page-admin .admin-products-table th:last-child,
body.page-admin .admin-products-table td:last-child {
    padding-right: 22px;
    min-width: 200px;
}

body.page-admin .admin-products-table td {
    padding: 14px 16px;
    color: #1d1711;
    font-size: 0.86rem;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
    vertical-align: middle;
    background: #fff;
}

body.page-admin .admin-products-table tbody tr:nth-child(even) td {
    background: #fbf8f3;
}

body.page-admin .admin-products-table tbody tr:last-child td {
    border-bottom: 0;
}

body.page-admin .admin-products-table tbody tr:hover td {
    background: rgba(199, 162, 90, 0.06);
}

body.page-admin .admin-products-table .admin-empty-row {
    text-align: center;
    padding: 40px 16px;
    color: rgba(29, 23, 17, 0.5);
    font-size: 0.9rem;
}

body.page-admin .admin-product-thumb {
    width: 56px;
}

body.page-admin .admin-product-thumb img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(29, 23, 17, 0.08);
}

body.page-admin .admin-product-name strong {
    display: block;
    color: #050505;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 4px;
}

body.page-admin .admin-product-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    margin-right: 4px;
}

body.page-admin .admin-product-badge-featured {
    background: rgba(199, 162, 90, 0.14);
    color: var(--admin-accent);
}

body.page-admin .admin-product-badge-new {
    background: rgba(13, 94, 60, 0.1);
    color: #0d5e3c;
}

body.page-admin .admin-product-price {
    color: #050505;
    font-weight: 700;
}

body.page-admin .admin-stock-badge {
    display: inline-grid;
    place-items: center;
    min-width: 32px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

body.page-admin .admin-stock-ok {
    background: rgba(13, 94, 60, 0.1);
    color: #0d5e3c;
}

body.page-admin .admin-stock-low {
    background: rgba(212, 154, 40, 0.16);
    color: #b87912;
}

body.page-admin .admin-stock-out {
    background: rgba(180, 40, 40, 0.12);
    color: #b42828;
}

body.page-admin .admin-status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

body.page-admin .admin-status-published {
    background: rgba(13, 94, 60, 0.1);
    color: #0d5e3c;
}

body.page-admin .admin-status-draft {
    background: rgba(29, 23, 17, 0.08);
    color: rgba(29, 23, 17, 0.62);
}

body.page-admin .admin-product-actions {
    white-space: nowrap;
    text-align: right;
}

body.page-admin .admin-product-actions .btn {
    margin-right: 6px;
}

body.page-admin .admin-product-actions .btn:last-child {
    margin-right: 0;
}

body.page-admin .btn-danger {
    border-color: rgba(180, 40, 40, 0.3);
    color: #b42828;
}

body.page-admin .btn-danger:hover {
    border-color: #b42828;
    background: rgba(180, 40, 40, 0.06);
    color: #b42828;
}

/* Admin Product Form (lookbook-style) */
body.page-admin .admin-product-form-section {
    margin-bottom: 24px;
}

body.page-admin .admin-product-form {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    align-items: start;
}

/* Left Aside — Image Upload + Flags */
body.page-admin .admin-product-form-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 24px;
}

body.page-admin .admin-product-upload {
    padding: 20px;
    background: #fbf8f3;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    text-align: center;
}

body.page-admin .admin-product-upload-preview {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0 0 16px;
    border: 1px solid rgba(199, 162, 90, 0.3);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

body.page-admin .admin-product-upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.page-admin .admin-product-upload-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

body.page-admin .admin-product-upload-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--admin-accent);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

body.page-admin .admin-product-upload-field input[type="file"] {
    width: 100%;
    padding: 8px;
    border: 1px solid rgba(29, 23, 17, 0.14);
    border-radius: 4px;
    background: #fff;
    font-size: 0.78rem;
}

body.page-admin .admin-product-upload-field .field-help {
    color: rgba(29, 23, 17, 0.5);
    font-size: 0.76rem;
    line-height: 1.45;
}

body.page-admin .admin-product-media-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

body.page-admin .admin-product-media-grid img,
body.page-admin .admin-product-color-preview {
    width: 100%;
    aspect-ratio: 4 / 5;
    display: block;
    border: 1px solid rgba(29, 23, 17, 0.1);
    border-radius: 5px;
    object-fit: cover;
    object-position: center top;
    background: #fff;
}

body.page-admin .admin-product-color-preview {
    width: 72px;
}

/* Flags */
body.page-admin .admin-product-flags {
    padding: 20px;
    background: #fbf8f3;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
}

body.page-admin .admin-product-flags-title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 14px;
    color: var(--admin-accent);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

body.page-admin .admin-product-flag-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

body.page-admin .admin-flag-toggle {
    position: relative;
    cursor: pointer;
}

body.page-admin .admin-flag-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

body.page-admin .admin-flag-toggle-box {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 10px;
    border: 1px solid rgba(29, 23, 17, 0.14);
    border-radius: 4px;
    color: rgba(29, 23, 17, 0.62);
    font-size: 0.74rem;
    font-weight: 700;
    transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

body.page-admin .admin-flag-toggle input:checked + .admin-flag-toggle-box {
    border-color: var(--admin-accent);
    background: rgba(199, 162, 90, 0.1);
    color: var(--admin-accent);
}

body.page-admin .admin-flag-toggle:hover .admin-flag-toggle-box {
    border-color: rgba(199, 162, 90, 0.5);
}

/* Right Main — Form Fields */
body.page-admin .admin-product-form-main {
    min-width: 0;
}

body.page-admin .admin-form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-admin .admin-form-section-title:first-child {
    margin-top: 0;
}

body.page-admin .admin-form-section-title:not(:first-child) {
    margin-top: 28px;
}

body.page-admin .admin-form-section-number {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(199, 162, 90, 0.5);
    border-radius: 50%;
    color: var(--admin-accent);
    font-size: 0.74rem;
    font-weight: 900;
}

body.page-admin .admin-form-section-title h3 {
    margin: 0;
    color: #050505;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.page-admin .admin-product-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

body.page-admin .admin-product-form .field-wide {
    grid-column: 1 / -1;
}

body.page-admin .admin-product-form .field span {
    display: block;
    margin-bottom: 5px;
    color: #050505;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.page-admin .admin-product-form input,
body.page-admin .admin-product-form select,
body.page-admin .admin-product-form textarea {
    width: 100%;
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid rgba(29, 23, 17, 0.14);
    border-radius: 4px;
    background: #fbf8f3;
    color: #1d1711;
    font-size: 0.86rem;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

body.page-admin .admin-product-form input:focus,
body.page-admin .admin-product-form select:focus,
body.page-admin .admin-product-form textarea:focus {
    border-color: var(--admin-accent);
    box-shadow: 0 0 0 3px rgba(199, 162, 90, 0.12);
    outline: 0;
}

body.page-admin .admin-product-form textarea {
    resize: vertical;
    font-family: var(--font-body);
}

body.page-admin .admin-product-form input::placeholder,
body.page-admin .admin-product-form textarea::placeholder {
    color: rgba(29, 23, 17, 0.36);
    font-size: 0.82rem;
}

/* Form Actions */
body.page-admin .admin-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(29, 23, 17, 0.06);
}

body.page-admin .admin-form-actions .btn {
    min-height: 46px;
    padding: 0 26px;
    border-radius: 5px;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.page-admin .admin-form-actions .btn-gold {
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    border: 0;
}

body.page-admin .admin-form-actions .btn-gold:hover {
    background: linear-gradient(180deg, #e0a838, #c8871a);
}

body.page-admin .admin-form-actions .btn-outline {
    border: 1px solid rgba(29, 23, 17, 0.14);
    background: transparent;
    color: #050505;
}

body.page-admin .admin-form-actions .btn-outline:hover {
    border-color: var(--admin-accent);
    color: var(--admin-accent);
}

/* Product stock / change audit history */
body.page-admin .admin-product-audit {
    margin-top: 28px;
    padding: 24px 28px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
}

body.page-admin .admin-product-audit .admin-section-header {
    margin-bottom: 16px;
}

body.page-admin .admin-product-audit-empty {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

body.page-admin .admin-product-audit-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.page-admin .admin-product-audit-item {
    display: grid;
    grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
    gap: 12px 20px;
    padding: 14px 16px;
    background: #fbf8f3;
    border: 1px solid rgba(29, 23, 17, 0.06);
    border-radius: 6px;
}

body.page-admin .admin-product-audit-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

body.page-admin .admin-product-audit-badge {
    display: inline-flex;
    align-self: start;
    padding: 3px 8px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5c4a2e;
    background: rgba(199, 162, 90, 0.18);
    border-radius: 4px;
}

body.page-admin .admin-product-audit-item[data-event="stock_adjust"] .admin-product-audit-badge {
    color: #1f3d2a;
    background: rgba(46, 125, 70, 0.14);
}

body.page-admin .admin-product-audit-item[data-event="created"] .admin-product-audit-badge {
    color: #1a3550;
    background: rgba(50, 110, 180, 0.12);
}

body.page-admin .admin-product-audit-meta time {
    font-size: 0.85rem;
    color: var(--muted);
}

body.page-admin .admin-product-audit-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

body.page-admin .admin-product-audit-qty {
    margin: 0;
    font-size: 1rem;
}

body.page-admin .admin-product-audit-qty em {
    font-style: normal;
    color: var(--muted);
    margin-left: 4px;
}

body.page-admin .admin-product-audit-summary,
body.page-admin .admin-product-audit-actor {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
    word-break: break-word;
}

body.page-admin .admin-product-audit-actor {
    font-size: 0.85rem;
}

@media (max-width: 720px) {
    body.page-admin .admin-product-audit {
        padding: 18px 16px;
    }

    body.page-admin .admin-product-audit-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* Hide old admin-panels and admin-upload-preview on products page */
body.page-admin .admin-product-form-section ~ .admin-panels,
body.page-admin .admin-product-form-section .admin-upload-preview {
    display: none !important;
}

/* Responsive */
@media (max-width: 980px) {
    body.page-admin .admin-product-form {
        grid-template-columns: 1fr;
    }

    body.page-admin .admin-product-form-aside {
        position: static;
    }

    body.page-admin .admin-product-upload-preview {
        max-width: 200px;
        margin: 0 auto 16px;
    }
}

@media (max-width: 640px) {
    body.page-admin .admin-product-form {
        padding: 20px 16px;
    }

    body.page-admin .admin-product-form .form-grid {
        grid-template-columns: 1fr;
    }

    body.page-admin .admin-product-flag-grid {
        grid-template-columns: 1fr;
    }

    body.page-admin .admin-form-actions {
        flex-direction: column;
    }

    body.page-admin .admin-form-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 760px) {
    body.page-admin .admin-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    body.page-admin .admin-section-header .btn {
        width: 100%;
        justify-content: center;
    }

    body.page-admin .admin-product-actions .btn {
        margin: 0 0 4px 0;
        width: 100%;
    }
}

body.page-admin .admin-insight-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

body.page-admin .admin-insight-strip article {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    min-height: 78px;
    padding: 14px 14px;
    border: 1px solid var(--admin-line);
    border-radius: var(--admin-radius);
    background: rgba(255, 250, 242, 0.92);
    overflow: hidden;
}

body.page-admin .admin-insight-strip article > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

body.page-admin .admin-insight-strip strong {
    color: var(--admin-ink);
    font-weight: 950;
    font-size: 1.05rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.page-admin .admin-insight-strip span {
    color: var(--admin-muted);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.page-admin .admin-insight-strip .admin-status-pill {
    align-self: flex-start;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.page-admin .admin-operations-note {
    display: grid;
    gap: 5px;
    border-radius: var(--admin-radius);
    background:
        linear-gradient(135deg, rgba(17, 16, 14, 0.92), rgba(65, 42, 15, 0.88)),
        #11100e;
    color: #fff7e8;
}

body.page-admin .admin-operations-note h3,
body.page-admin .admin-operations-note p {
    color: inherit;
}

body.page-admin .admin-panel,
body.page-admin .admin-login-card,
body.page-admin .admin-order-card,
body.page-admin .admin-notification-card,
body.page-admin .admin-lead-card {
    border: 1px solid var(--admin-line);
    border-radius: var(--admin-radius);
    background: var(--admin-card);
    box-shadow: var(--admin-shadow);
}

body.page-admin .admin-panel h2,
body.page-admin .admin-panel h3,
body.page-admin .admin-login-card h2 {
    color: var(--admin-ink);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0;
}

body.page-admin .admin-sales-chart {
    min-height: 238px;
    padding: 20px 10px 8px;
    border-radius: var(--admin-radius);
    background:
        repeating-linear-gradient(180deg, transparent 0 38px, rgba(28, 22, 15, 0.05) 39px),
        #fffaf2;
}

body.page-admin .admin-sales-bar {
    position: relative;
}

body.page-admin .admin-sales-bar em {
    opacity: 0;
    position: absolute;
    left: 50%;
    bottom: calc(var(--bar) + 34px);
    z-index: 2;
    transform: translateX(-50%) translateY(5px);
    padding: 5px 7px;
    border-radius: 999px;
    background: #11100e;
    color: #fff8ea;
    font-size: 0.66rem;
    font-style: normal;
    font-weight: 900;
    white-space: nowrap;
    transition: opacity 160ms ease, transform 160ms ease;
}

body.page-admin .admin-sales-bar:hover em {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

body.page-admin .admin-sales-bar span {
    background: linear-gradient(180deg, #dbbd7a, #c8942f);
}

body.page-admin .admin-mini-item,
body.page-admin .admin-table-wrap {
    border-color: var(--admin-line);
    border-radius: var(--admin-radius);
    background: var(--admin-section-head-bg);
}

body.page-admin .admin-order-card {
    padding: 16px;
}

body.page-admin .admin-order-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

body.page-admin .admin-order-head em {
    color: var(--admin-ink);
    font-style: normal;
    font-weight: 950;
}

body.page-admin .admin-status-pill,
body.page-admin .admin-mini-item em.admin-status-pill,
body.page-admin .admin-order-head span.admin-status-pill,
body.page-admin .admin-notification-card span.admin-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

body.page-admin .admin-status-pill--success {
    background: rgba(27, 133, 82, 0.12);
    color: #11613c;
}

body.page-admin .admin-status-pill--info {
    background: rgba(44, 116, 179, 0.12);
    color: #245f91;
}

body.page-admin .admin-status-pill--warning {
    background: rgba(200, 148, 47, 0.18);
    color: #8a631b;
}

body.page-admin .admin-status-pill--danger {
    background: rgba(185, 58, 58, 0.12);
    color: #923232;
}

body.page-admin .admin-status-pill--neutral {
    background: rgba(112, 102, 87, 0.12);
    color: #5b5145;
}

body.page-admin .admin-empty-state {
    display: grid;
    justify-items: center;
    gap: 9px;
    padding: 34px 18px;
    border: 1px dashed rgba(200, 148, 47, 0.35);
    border-radius: var(--admin-radius);
    background: var(--admin-section-head-bg);
    color: var(--admin-muted);
    text-align: center;
}

body.page-admin .admin-empty-state .icon {
    color: #c8942f;
}

body.page-admin .admin-empty-state strong {
    color: var(--admin-ink);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
}

body.page-admin .admin-empty-state p {
    max-width: 44ch;
    margin: 0;
}

body.page-admin .admin-finance-filter {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr)) auto auto;
    gap: 10px;
    align-items: end;
    margin: 18px 0 12px;
    padding: 14px;
    border: 1px solid var(--admin-line);
    border-radius: var(--admin-radius);
    background: var(--admin-section-head-bg);
}

body.page-admin .admin-finance-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin: 18px 0 12px;
}

body.page-admin .admin-finance-toolbar .admin-finance-filter {
    margin: 0;
    flex: 1 1 400px;
}

body.page-admin .admin-finance-toolbar .hero-actions {
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 2px;
}

body.page-admin .admin-finance-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

body.page-admin .admin-finance-summary-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.page-admin .admin-finance-summary-grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.page-admin .admin-finance-metric-card {
    display: grid;
    gap: 8px;
    min-height: 112px;
    padding: 16px;
    border: 1px solid var(--admin-line);
    border-radius: var(--admin-radius);
    background:
        linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(252, 246, 236, 0.96));
}

body.page-admin .admin-finance-metric-card span {
    color: var(--admin-muted);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

body.page-admin .admin-finance-metric-card strong {
    color: var(--admin-ink);
    font-size: clamp(1.15rem, 1.8vw, 1.7rem);
    font-weight: 950;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

body.page-admin .admin-finance-metric-card small {
    color: var(--admin-muted);
    font-size: 0.8rem;
    line-height: 1.4;
}

body.page-admin .admin-section-anchor {
    scroll-margin-top: 24px;
}

body.page-admin .admin-table-wrap-spaced,
body.page-admin .admin-edit-panel-spaced {
    margin-top: 1.5rem;
}

body.page-admin .admin-edit-panel {
    border-radius: var(--admin-radius);
}

body.page-admin .admin-panel.admin-panel-collapsible .admin-section-head {
    position: relative;
}

@media (min-width: 1060px) {
    body.page-admin .admin-shell-dashboard {
        padding-left: 270px;
    }
}

@media (max-width: 1120px) {
    body.page-admin .admin-topbar {
        grid-template-columns: 1fr;
    }

    body.page-admin .admin-topbar-actions {
        justify-content: flex-start;
    }

    body.page-admin .admin-search-form {
        min-width: min(100%, 460px);
    }

    body.page-admin .admin-stats-grid-primary,
    body.page-admin .admin-insight-strip,
    body.page-admin .admin-finance-summary-grid,
    body.page-admin .admin-finance-summary-grid-compact,
    body.page-admin .admin-finance-summary-grid-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-admin .admin-insight-strip article:last-child {
        grid-column: 1 / -1;
    }

    body.page-admin .admin-finance-filter {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body.page-admin .container {
        width: min(100% - 22px, 560px);
    }

    body.page-admin.admin-section-dashboard {
        background: var(--bg-alt);
    }

    body.page-admin.admin-section-orders {
        background: var(--bg-alt);
    }

    body.page-admin.admin-section-products {
        background: var(--bg-alt);
    }

    body.page-admin.admin-section-finance,
    body.page-admin.admin-section-reports {
        background: var(--bg-alt);
    }

    body.page-admin.admin-section-customers {
        background: var(--bg-alt);
    }

    body.page-admin.admin-section-dashboard .page-shell,
    body.page-admin.admin-section-dashboard .site-main {
        background: var(--bg-alt);
        min-height: 0;
        height: auto;
    }

    body.page-admin.admin-section-orders .page-shell,
    body.page-admin.admin-section-orders .site-main {
        background: var(--bg-alt);
        min-height: 0;
        height: auto;
    }

    body.page-admin.admin-section-products .page-shell,
    body.page-admin.admin-section-products .site-main {
        background: var(--bg-alt);
        min-height: 0;
        height: auto;
    }

    body.page-admin.admin-section-customers .page-shell,
    body.page-admin.admin-section-customers .site-main {
        background: var(--bg-alt);
        min-height: 0;
        height: auto;
    }

    body.page-admin.admin-section-finance .page-shell,
    body.page-admin.admin-section-finance .site-main {
        background: var(--bg-alt);
        min-height: 0;
        height: auto;
    }

    body.page-admin.admin-section-reports .page-shell,
    body.page-admin.admin-section-reports .site-main {
        background: var(--bg-alt);
        min-height: 0;
        height: auto;
    }

    body.page-admin.admin-section-dashboard .admin-shell {
        min-height: 0;
        height: auto;
        padding-top: 0;
    }

    body.page-admin.admin-section-orders .admin-shell {
        min-height: 0;
        height: auto;
        padding-top: 0;
    }

    body.page-admin.admin-section-products .admin-shell {
        min-height: 0;
        height: auto;
        padding-top: 0;
    }

    body.page-admin.admin-section-customers .admin-shell {
        min-height: 0;
        height: auto;
        padding-top: 0;
    }

    body.page-admin.admin-section-finance .admin-shell {
        min-height: 0;
        height: auto;
        padding-top: 0;
    }

    body.page-admin.admin-section-reports .admin-shell {
        min-height: 0;
        height: auto;
        padding-top: 0;
    }

    body.page-admin.admin-section-collections {
        background: var(--bg-alt);
    }

    body.page-admin.admin-section-collections .page-shell,
    body.page-admin.admin-section-collections .site-main {
        background: var(--bg-alt);
        min-height: 0;
        height: auto;
    }

    body.page-admin.admin-section-collections .admin-shell {
        min-height: 0;
        height: auto;
        padding-top: 0;
    }

    body.page-admin.admin-section-notifications {
        background: var(--bg-alt);
    }

    body.page-admin.admin-section-notifications .page-shell,
    body.page-admin.admin-section-notifications .site-main {
        background: var(--bg-alt);
        min-height: 0;
        height: auto;
    }

    body.page-admin.admin-section-notifications .admin-shell {
        min-height: 0;
        height: auto;
        padding-top: 0;
    }

    body.page-admin.admin-section-leads {
        background: var(--bg-alt);
    }

    body.page-admin.admin-section-leads .page-shell,
    body.page-admin.admin-section-leads .site-main {
        background: var(--bg-alt);
        min-height: 0;
        height: auto;
    }

    body.page-admin.admin-section-leads .admin-shell {
        min-height: 0;
        height: auto;
        padding-top: 0;
    }

    body.page-admin.admin-section-settings {
        background: var(--bg-alt);
    }

    body.page-admin.admin-section-settings .page-shell,
    body.page-admin.admin-section-settings .site-main {
        background: var(--bg-alt);
        min-height: 0;
        height: auto;
    }

    body.page-admin.admin-section-settings .admin-shell {
        min-height: 0;
        height: auto;
        padding-top: 0;
    }

    body.page-admin .page-shell,
    body.page-admin .site-main {
        min-height: 0;
        height: auto;
    }

    body.page-admin .admin-shell {
        min-height: 0;
        height: auto;
        padding-top: 0;
    }

    body.page-admin .admin-dashboard-desktop-only {
        display: none !important;
        height: 0 !important;
        overflow: hidden;
        margin: 0 !important;
        padding: 0 !important;
        border: 0;
    }

    body.page-admin .admin-dashboard-mobile-shell,
    body.page-admin .admin-dashboard-mobile-only,
    body.page-admin .admin-orders-mobile-shell,
    body.page-admin .admin-orders-mobile-only,
    body.page-admin .admin-products-mobile-shell,
    body.page-admin .admin-products-mobile-only,
    body.page-admin .admin-customers-mobile-shell,
    body.page-admin .admin-customers-mobile-only,
    body.page-admin .admin-collections-mobile-shell,
    body.page-admin .admin-collections-mobile-only,
    body.page-admin .admin-notifications-mobile-shell,
    body.page-admin .admin-notifications-mobile-only,
    body.page-admin .admin-finance-mobile-shell,
    body.page-admin .admin-finance-mobile-only,
    body.page-admin .admin-leads-mobile-shell,
    body.page-admin .admin-leads-mobile-only,
    body.page-admin .admin-reports-mobile-shell,
    body.page-admin .admin-reports-mobile-only,
    body.page-admin .admin-settings-mobile-shell,
    body.page-admin .admin-settings-mobile-only {
        display: block;
    }

    body.page-admin .admin-dashboard-mobile-shell,
    body.page-admin .admin-orders-mobile-shell,
    body.page-admin .admin-products-mobile-shell,
    body.page-admin .admin-collections-mobile-shell,
    body.page-admin .admin-notifications-mobile-shell,
    body.page-admin .admin-finance-mobile-shell,
    body.page-admin .admin-leads-mobile-shell,
    body.page-admin .admin-reports-mobile-shell,
    body.page-admin .admin-settings-mobile-shell {
        background: var(--bg-alt);
        padding-bottom: 0;
    }

    body.page-admin .admin-finance-mobile-shell .admin-mobile-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-admin .admin-finance-mobile-shell .admin-mobile-stat strong {
        font-size: 0.82rem;
        line-height: 1.2;
    }

    body.page-admin .admin-finance-mobile-shell .admin-mobile-actions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.page-admin .admin-finance-mobile-only .admin-mobile-section {
        display: block;
        margin-bottom: 0;
    }

    body.page-admin .admin-finance-mobile-only .admin-mobile-finance {
        display: flex;
    }

    body.page-admin .admin-mobile-finance-card small {
        color: var(--muted);
        font-size: 0.62rem;
        line-height: 1.35;
    }

    body.page-admin .admin-products-mobile-shell .admin-mobile-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-admin .admin-products-mobile-shell .admin-mobile-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-admin .admin-orders-mobile-shell .admin-mobile-stat--sales strong {
        font-size: 0.82rem;
        line-height: 1.2;
    }

    body.page-admin .admin-collections-mobile-shell .admin-mobile-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-admin .admin-collections-mobile-shell .admin-mobile-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    body.page-admin .admin-dashboard-mobile-only .admin-mobile-section,
    body.page-admin .admin-dashboard-mobile-only .admin-mobile-inventory {
        display: block;
    }

    body.page-admin .admin-dashboard-mobile-only .admin-mobile-inventory {
        display: flex;
        margin-bottom: 0;
    }

    body.page-admin .admin-orders-mobile-only .admin-mobile-section {
        display: block;
        margin-bottom: 0;
    }

    body.page-admin .admin-products-mobile-only .admin-mobile-section {
        display: block;
        margin-bottom: 0;
    }

    body.page-admin .admin-customers-mobile-shell .admin-mobile-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-admin .admin-customers-mobile-only .admin-mobile-section {
        display: block;
        margin-bottom: 0;
    }

    body.page-admin .admin-collections-mobile-only .admin-mobile-section {
        display: block;
        margin-bottom: 0;
    }

    body.page-admin .admin-notifications-mobile-shell .admin-mobile-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-admin .admin-settings-mobile-shell .admin-mobile-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-admin .admin-settings-mobile-shell .admin-mobile-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-admin .admin-settings-mobile-only .admin-mobile-section {
        display: block;
        margin-bottom: 0;
    }

    body.page-admin .admin-reports-mobile-shell .admin-mobile-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-admin .admin-reports-mobile-shell .admin-mobile-stat strong {
        font-size: 0.82rem;
        line-height: 1.2;
    }

    body.page-admin .admin-reports-mobile-shell .admin-mobile-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-admin .admin-reports-mobile-only .admin-mobile-section {
        display: block;
        margin-bottom: 0;
    }

    body.page-admin .admin-reports-mobile-only .admin-reports-mobile-filter {
        width: auto;
        max-width: none;
        margin: 0 14px 12px;
        padding: 12px;
        border: 1px solid var(--admin-line);
        border-radius: var(--admin-radius);
        background: var(--admin-section-head-bg);
        box-sizing: border-box;
    }

    body.page-admin .admin-reports-mobile-only .admin-reports-mobile-filter .admin-finance-filter {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        align-items: end;
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        flex: none;
    }

    body.page-admin .admin-reports-mobile-only .admin-reports-mobile-filter .admin-finance-filter .field {
        min-width: 0;
    }

    body.page-admin .admin-reports-mobile-only .admin-reports-mobile-filter .admin-finance-filter .field input[type="date"] {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    body.page-admin .admin-reports-mobile-only .admin-reports-mobile-filter .admin-finance-filter > .btn,
    body.page-admin .admin-reports-mobile-only .admin-reports-mobile-filter .admin-finance-filter > a.btn {
        width: 100%;
        text-align: center;
    }

    body.page-admin .admin-notifications-mobile-only .admin-mobile-section {
        display: block;
        margin-bottom: 0;
    }

    body.page-admin .admin-mobile-tabs {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        margin: 0 14px 12px;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    body.page-admin .admin-mobile-tabs::-webkit-scrollbar {
        display: none;
    }

    body.page-admin .admin-mobile-tab {
        display: inline-flex;
        flex: 0 0 auto;
        align-items: center;
        gap: 6px;
        padding: 8px 14px;
        border-radius: 999px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.94);
        color: var(--muted);
        font-size: 0.72rem;
        font-weight: 800;
        text-decoration: none;
        box-shadow: var(--shadow-soft);
        transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
    }

    body.page-admin .admin-mobile-tab-label {
        line-height: 1.2;
    }

    body.page-admin .admin-mobile-tab-count {
        min-width: 1.35em;
        padding: 2px 6px;
        border-radius: 999px;
        background: rgba(29, 23, 17, 0.06);
        color: rgba(29, 23, 17, 0.48);
        font-size: 0.64rem;
        font-weight: 800;
        line-height: 1.2;
        text-align: center;
    }

    body.page-admin .admin-mobile-tab.is-active,
    body.page-admin .admin-mobile-tab:hover {
        border-color: rgba(199, 162, 90, 0.42);
        background: rgba(255, 248, 238, 0.96);
        color: var(--gold-dark);
    }

    body.page-admin .admin-mobile-tab.is-active .admin-mobile-tab-count,
    body.page-admin .admin-mobile-tab:hover .admin-mobile-tab-count {
        background: rgba(199, 162, 90, 0.18);
        color: var(--gold-dark);
    }

    body.page-admin .admin-mobile-order-list {
        display: grid;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    body.page-admin .admin-mobile-order-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        border-radius: 16px;
        box-shadow: var(--shadow-soft);
        overflow: hidden;
        box-sizing: border-box;
    }

    body.page-admin .admin-mobile-order-card .admin-order-card-header {
        flex-wrap: wrap;
        gap: 8px 12px;
        padding: 12px 16px;
        min-width: 0;
        width: 100%;
        margin: 0;
        border: 0;
        border-bottom: 1px solid rgba(29, 23, 17, 0.06);
        border-radius: 0;
        background: #fbf8f3;
        color: inherit;
        font: inherit;
        text-align: left;
        cursor: pointer;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }

    body.page-admin .admin-mobile-order-card:not(.is-expanded) .admin-order-card-header {
        border-bottom-color: transparent;
    }

    body.page-admin .admin-mobile-order-card .admin-order-card-header:focus-visible {
        outline: 2px solid var(--gold);
        outline-offset: -2px;
    }

    body.page-admin .admin-mobile-order-card-header-end {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
        flex-shrink: 0;
    }

    body.page-admin .admin-mobile-order-card-chevron {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--muted);
        transition: transform 0.22s ease;
    }

    body.page-admin .admin-mobile-order-card.is-expanded .admin-mobile-order-card-chevron,
    body.page-admin .admin-mobile-order-card .admin-order-card-header[aria-expanded="true"] .admin-mobile-order-card-chevron {
        transform: rotate(180deg);
    }

    body.page-admin .admin-mobile-order-card .admin-order-card-meta--mobile,
    body.page-admin .admin-mobile-order-card .admin-order-card-controls {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.28s ease, opacity 0.2s ease;
    }

    body.page-admin .admin-mobile-order-card .admin-order-card-meta--mobile {
        padding-top: 0;
        padding-bottom: 0;
    }

    body.page-admin .admin-mobile-order-card .admin-order-card-controls {
        padding-top: 0;
        padding-bottom: 0;
        border-top-color: transparent;
    }

    body.page-admin .admin-mobile-order-card.is-expanded .admin-order-card-meta--mobile,
    body.page-admin .admin-mobile-order-card.is-expanded .admin-order-card-controls,
    body.page-admin .admin-mobile-order-card .admin-order-card-header[aria-expanded="true"] ~ .admin-order-card-meta--mobile,
    body.page-admin .admin-mobile-order-card .admin-order-card-header[aria-expanded="true"] ~ .admin-order-card-controls {
        max-height: 720px;
        opacity: 1;
        pointer-events: auto;
    }

    body.page-admin .admin-mobile-order-card.is-expanded .admin-order-card-meta--mobile,
    body.page-admin .admin-mobile-order-card .admin-order-card-header[aria-expanded="true"] ~ .admin-order-card-meta--mobile {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    body.page-admin .admin-mobile-order-card.is-expanded .admin-order-card-controls,
    body.page-admin .admin-mobile-order-card .admin-order-card-header[aria-expanded="true"] ~ .admin-order-card-controls {
        padding-top: 14px;
        padding-bottom: 14px;
        border-top-color: rgba(29, 23, 17, 0.06);
    }

    @media (prefers-reduced-motion: reduce) {
        body.page-admin .admin-mobile-order-card-chevron,
        body.page-admin .admin-mobile-order-card .admin-order-card-meta--mobile,
        body.page-admin .admin-mobile-order-card .admin-order-card-controls {
            transition: none;
        }
    }

    body.page-admin .admin-mobile-order-card .admin-order-card-id {
        flex: 1 1 auto;
        min-width: 0;
    }

    body.page-admin .admin-mobile-order-card .admin-order-card-id strong {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    body.page-admin .admin-mobile-order-card .admin-order-card-amount {
        flex-shrink: 0;
    }

    body.page-admin .admin-mobile-order-card .admin-order-card-controls {
        padding: 14px 16px;
        min-width: 0;
        max-width: 100%;
        overflow-x: hidden;
    }

    body.page-admin .admin-mobile-order-card .admin-order-control-row {
        grid-template-columns: minmax(0, 1fr);
        min-width: 0;
    }

    body.page-admin .admin-mobile-order-card .admin-order-control-row .field {
        min-width: 0;
    }

    body.page-admin .admin-mobile-order-card .admin-order-card-controls select,
    body.page-admin .admin-mobile-order-card .admin-order-card-controls input,
    body.page-admin .admin-mobile-order-card .admin-order-card-controls .btn-gold {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    body.page-admin .admin-mobile-order-card .admin-order-card-controls .btn-gold {
        align-self: stretch;
        text-align: center;
    }

    body.page-admin .admin-order-card-meta--mobile {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px 16px;
    }

    body.page-admin .admin-order-card-meta--mobile .admin-order-meta-item {
        border-right: 0;
        padding-right: 0;
        padding-bottom: 0;
        border-bottom: 0;
    }

    body.page-admin .admin-order-card-meta--mobile .admin-order-meta-item--wide {
        grid-column: 1 / -1;
    }

    body.page-admin .admin-mobile-product-list {
        display: grid;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    body.page-admin .admin-mobile-product-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        border-radius: 16px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow-soft);
        overflow: hidden;
        box-sizing: border-box;
    }

    body.page-admin .admin-mobile-product-card-header {
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr) auto;
        gap: 10px;
        align-items: center;
        width: 100%;
        margin: 0;
        padding: 12px 14px;
        border: 0;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        background: transparent;
        color: inherit;
        font: inherit;
        text-align: left;
        cursor: pointer;
        min-width: 0;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }

    body.page-admin .admin-mobile-taxonomy-card .admin-mobile-taxonomy-card-header,
    body.page-admin .admin-mobile-customer-card .admin-mobile-customer-card-header {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    body.page-admin .admin-mobile-taxonomy-card .admin-mobile-product-card-id code {
        font-size: 0.68rem;
        font-weight: 600;
    }

    body.page-admin .admin-mobile-product-card:not(.is-expanded) .admin-mobile-product-card-header {
        border-bottom-color: transparent;
    }

    body.page-admin .admin-mobile-product-card-header:focus-visible {
        outline: 2px solid var(--gold);
        outline-offset: -2px;
    }

    body.page-admin .admin-mobile-product-card-header-end {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
        flex-shrink: 0;
    }

    body.page-admin .admin-mobile-product-card-chevron {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--muted);
        transition: transform 0.22s ease;
    }

    body.page-admin .admin-mobile-product-card.is-expanded .admin-mobile-product-card-chevron,
    body.page-admin .admin-mobile-product-card-header[aria-expanded="true"] .admin-mobile-product-card-chevron {
        transform: rotate(180deg);
    }

    @media (prefers-reduced-motion: reduce) {
        body.page-admin .admin-mobile-product-card-chevron {
            transition: none;
        }
    }

    body.page-admin .admin-mobile-product-thumb {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        object-fit: cover;
        background: rgba(29, 23, 17, 0.06);
    }

    body.page-admin .admin-mobile-product-card-id {
        display: grid;
        gap: 2px;
        min-width: 0;
    }

    body.page-admin .admin-mobile-product-card-id strong {
        font-size: 0.88rem;
        overflow-wrap: break-word;
        word-break: normal;
    }

    body.page-admin .admin-mobile-product-card-id span {
        color: var(--muted);
        font-size: 0.72rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    body.page-admin .admin-mobile-product-card-price {
        flex-shrink: 0;
        color: var(--gold-dark);
        font-size: 0.82rem;
        font-weight: 900;
        text-align: right;
    }

    body.page-admin .admin-mobile-product-card-meta {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 12px;
        padding: 12px 14px;
        min-width: 0;
    }

    body.page-admin .admin-mobile-product-meta-item {
        display: grid;
        gap: 4px;
        min-width: 0;
    }

    body.page-admin .admin-mobile-product-meta-item--wide {
        grid-column: 1 / -1;
    }

    body.page-admin .admin-mobile-product-meta-label {
        color: var(--muted);
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    body.page-admin .admin-mobile-product-flags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    body.page-admin .admin-mobile-product-card-actions {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        padding: 12px 14px 14px;
        border-top: 1px solid var(--line);
        min-width: 0;
    }

    /* Edit | Delete share one row; a lone Manage button still fills the row */
    body.page-admin .admin-mobile-product-card-actions > .btn,
    body.page-admin .admin-mobile-product-card-actions > form {
        flex: 1 1 0;
        min-width: 0;
    }

    body.page-admin .admin-mobile-product-card-actions > .btn,
    body.page-admin .admin-mobile-product-card-actions > form .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    body.page-admin .admin-mobile-product-card-meta,
    body.page-admin .admin-mobile-product-card-actions {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.28s ease, opacity 0.2s ease;
    }

    body.page-admin .admin-mobile-product-card-meta {
        padding-top: 0;
        padding-bottom: 0;
    }

    body.page-admin .admin-mobile-product-card-actions {
        padding-top: 0;
        padding-bottom: 0;
        border-top-color: transparent;
    }

    body.page-admin .admin-mobile-product-card.is-expanded .admin-mobile-product-card-meta,
    body.page-admin .admin-mobile-product-card.is-expanded .admin-mobile-product-card-actions,
    body.page-admin .admin-mobile-product-card-header[aria-expanded="true"] ~ .admin-mobile-product-card-meta,
    body.page-admin .admin-mobile-product-card-header[aria-expanded="true"] ~ .admin-mobile-product-card-actions {
        max-height: 320px;
        opacity: 1;
        pointer-events: auto;
    }

    body.page-admin .admin-mobile-product-card.is-expanded .admin-mobile-product-card-meta,
    body.page-admin .admin-mobile-product-card-header[aria-expanded="true"] ~ .admin-mobile-product-card-meta {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    body.page-admin .admin-mobile-product-card.is-expanded .admin-mobile-product-card-actions,
    body.page-admin .admin-mobile-product-card-header[aria-expanded="true"] ~ .admin-mobile-product-card-actions {
        padding-top: 12px;
        padding-bottom: 14px;
        border-top-color: var(--line);
    }

    @media (prefers-reduced-motion: reduce) {
        body.page-admin .admin-mobile-product-card-meta,
        body.page-admin .admin-mobile-product-card-actions {
            transition: none;
        }
    }

    body.page-admin .admin-mobile-customer-list {
        display: grid;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    body.page-admin .admin-mobile-customer-card .admin-mobile-product-meta-item strong,
    body.page-admin .admin-mobile-customer-card .admin-mobile-product-meta-item small {
        display: block;
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    body.page-admin .admin-mobile-customer-card .admin-mobile-product-meta-item small {
        color: var(--muted);
        font-size: 0.72rem;
        margin-top: 2px;
    }

    body.page-admin .admin-mobile-customer-card.is-expanded .admin-mobile-product-card-meta,
    body.page-admin .admin-mobile-customer-card .admin-mobile-product-card-header[aria-expanded="true"] ~ .admin-mobile-product-card-meta {
        max-height: 480px;
    }

    body.page-admin .admin-mobile-customer-edit-form {
        padding: 0 14px 14px;
    }

    body.page-admin .admin-mobile-feed-empty span {
        color: var(--muted);
        font-size: 0.76rem;
        line-height: 1.45;
        text-align: center;
    }

    body.page-admin .admin-mobile-bottom-nav,
    .page-admin .admin-mobile-bottom-nav {
        display: grid !important;
    }

    body.page-admin .admin-mobile-hero {
        display: block;
        position: relative;
        overflow: hidden;
        margin: 0 0 12px;
        border-radius: 0 0 28px 28px;
        color: #fff8ee;
        box-shadow: 0 18px 40px rgba(29, 23, 17, 0.14);
        background:
            linear-gradient(180deg, rgba(13, 10, 8, 0.42) 0%, rgba(29, 23, 17, 0.78) 56%, rgba(29, 23, 17, 0.9) 100%),
            radial-gradient(circle at 88% 8%, rgba(199, 162, 90, 0.32), transparent 42%),
            var(--admin-hero-image) center top / cover no-repeat;
    }

    body.page-admin .admin-mobile-hero-shade {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 85% 10%, rgba(255, 248, 238, 0.14), transparent 42%);
        pointer-events: none;
    }

    body.page-admin .admin-mobile-hero-content {
        position: relative;
        z-index: 1;
        padding: calc(18px + env(safe-area-inset-top, 0px)) 18px 22px;
    }

    body.page-admin .admin-mobile-hero-top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 14px;
    }

    body.page-admin .admin-mobile-hero-greeting {
        display: grid;
        gap: 6px;
    }

    body.page-admin .admin-mobile-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.68rem;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        opacity: 0.92;
    }

    body.page-admin .admin-mobile-hero-name {
        margin: 0;
        font-family: var(--font-heading);
        font-size: clamp(1.55rem, 6vw, 2rem);
        line-height: 1.12;
        color: #fff8ee;
    }

    body.page-admin .admin-mobile-date-chip {
        flex-shrink: 0;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.14);
        font-size: 0.72rem;
        font-weight: 900;
        white-space: nowrap;
    }

    body.page-admin .admin-mobile-hero-label {
        margin: 0 0 4px;
        font-size: 0.82rem;
        opacity: 0.86;
    }

    body.page-admin .admin-mobile-hero-balance {
        margin: 0 0 6px;
        font-family: var(--font-heading);
        font-size: clamp(1.9rem, 8vw, 2.35rem);
        font-weight: 700;
        line-height: 1.05;
        font-variant-numeric: tabular-nums;
    }

    body.page-admin .admin-mobile-hero-meta {
        margin: 0 0 14px;
        font-size: 0.82rem;
        line-height: 1.45;
        opacity: 0.88;
    }

    body.page-admin .admin-mobile-hero-actions {
        display: grid;
        gap: 8px;
    }

    body.page-admin .admin-mobile-hero-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 44px;
        padding: 0 18px;
        border-radius: 12px;
        background: #fff8ee;
        color: var(--gold-dark);
        font-size: 0.88rem;
        font-weight: 800;
        text-decoration: none;
        width: 100%;
    }

    body.page-admin .admin-mobile-hero-cta-alert {
        background: rgba(199, 162, 90, 0.22);
        border: 1px solid rgba(228, 199, 132, 0.42);
        color: #fff8ee;
    }

    body.page-admin .admin-mobile-snapshot {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        margin: 0 14px 14px;
    }

    body.page-admin .admin-mobile-snapshot-chip {
        display: grid;
        gap: 6px;
        padding: 10px;
        border-radius: 14px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: var(--shadow-soft);
        color: var(--ink);
        text-decoration: none;
    }

    body.page-admin .admin-mobile-snapshot-chip span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: var(--muted);
        font-size: 0.62rem;
        font-weight: 800;
        letter-spacing: 0.03em;
        text-transform: uppercase;
    }

    body.page-admin .admin-mobile-snapshot-chip strong {
        font-family: var(--font-heading);
        font-size: 0.82rem;
        line-height: 1.2;
        color: var(--gold-dark);
    }

    body.page-admin .admin-mobile-stats {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        margin: 0 14px 14px;
    }

    body.page-admin .admin-mobile-stat {
        display: grid;
        gap: 2px;
        justify-items: center;
        padding: 10px 6px;
        border-radius: 16px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.92);
        box-shadow: var(--shadow-soft);
        text-align: center;
    }

    body.page-admin a.admin-mobile-stat {
        color: inherit;
        text-decoration: none;
    }

    body.page-admin a.admin-mobile-stat:active {
        transform: scale(0.98);
    }

    body.page-admin .admin-mobile-stat strong {
        font-family: var(--font-heading);
        font-size: 1.05rem;
        line-height: 1.1;
        color: var(--gold-dark);
    }

    body.page-admin .admin-mobile-stat span {
        color: var(--muted);
        font-size: 0.62rem;
        font-weight: 900;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    body.page-admin .admin-mobile-actions {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        margin: 0 14px 14px;
    }

    body.page-admin .admin-mobile-actions:has(> .admin-mobile-action:first-child:nth-last-child(2)) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-admin .admin-mobile-action:only-child {
        grid-column: 1 / -1;
    }

    body.page-admin .admin-mobile-action {
        display: grid;
        gap: 6px;
        align-items: center;
        justify-items: center;
        min-height: 68px;
        padding: 10px 8px;
        border-radius: 14px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: var(--shadow-soft);
        color: var(--ink);
        font-size: 0.68rem;
        font-weight: 800;
        text-align: center;
        text-decoration: none;
    }

    body.page-admin .admin-mobile-action .icon {
        color: var(--gold-dark);
        width: 1rem;
        height: 1rem;
    }

    body.page-admin .admin-mobile-inventory {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin: 0 14px 0;
        padding: 14px 16px;
        border-radius: 16px;
        border: 1px solid rgba(199, 162, 90, 0.28);
        background: linear-gradient(135deg, rgba(255, 248, 238, 0.96), rgba(255, 255, 255, 0.98));
        box-shadow: var(--shadow-soft);
    }

    body.page-admin .admin-mobile-finance {
        display: flex;
        gap: 10px;
        margin: 0 14px 14px;
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    body.page-admin .admin-mobile-finance::-webkit-scrollbar {
        display: none;
    }

    body.page-admin .admin-mobile-finance-card {
        display: grid;
        flex: 0 0 148px;
        gap: 8px;
        padding: 12px;
        border-radius: 16px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: var(--shadow-soft);
        scroll-snap-align: start;
    }

    body.page-admin .admin-mobile-finance-card span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--muted);
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.03em;
        text-transform: uppercase;
    }

    body.page-admin .admin-mobile-finance-card strong {
        font-family: var(--font-heading);
        font-size: 1.15rem;
        line-height: 1.1;
        color: var(--gold-dark);
    }

    body.page-admin .admin-mobile-section {
        margin: 0 14px 16px;
    }

    body.page-admin .admin-mobile-section-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 10px;
    }

    /* Shared phone layout guard: custom status values, headings and links must
       wrap inside the viewport instead of widening the page. */
    body.page-admin .admin-mobile-section-head > *,
    body.page-admin .admin-mobile-feed,
    body.page-admin .admin-mobile-feed > li,
    body.page-admin .admin-mobile-feed-item,
    body.page-admin .admin-mobile-feed-meta {
        min-width: 0;
        max-width: 100%;
    }

    body.page-admin .admin-mobile-section-head h3 {
        margin: 0;
        font-size: 1rem;
        font-family: var(--font-heading);
    }

    body.page-admin .admin-mobile-snapshot-chip span,
    body.page-admin .admin-mobile-stat span,
    body.page-admin .admin-mobile-finance-card span,
    body.page-admin .admin-mobile-section-kicker,
    body.page-admin .admin-mobile-action,
    body.page-admin .admin-mobile-product-meta-label,
    body.page-admin .admin-mobile-section-head a {
        font-family: var(--font-body);
    }

    body.page-admin .admin-mobile-section-head a {
        color: var(--gold-dark);
        font-size: 0.78rem;
        font-weight: 900;
        text-decoration: none;
    }

    body.page-admin .admin-mobile-feed {
        display: grid;
        gap: 8px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    body.page-admin .admin-mobile-feed-item {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 10px;
        align-items: center;
        padding: 12px 14px;
        border-radius: 18px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: var(--shadow-soft);
        color: inherit;
        text-decoration: none;
    }

    body.page-admin .admin-mobile-feed-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: rgba(199, 162, 90, 0.14);
        color: var(--gold-dark);
    }

    body.page-admin .admin-mobile-feed-copy {
        display: grid;
        gap: 2px;
        min-width: 0;
    }

    body.page-admin .admin-mobile-feed-copy strong {
        font-size: 0.88rem;
    }

    body.page-admin .admin-mobile-feed-copy span {
        color: var(--muted);
        font-size: 0.76rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    body.page-admin .admin-mobile-feed-meta {
        display: grid;
        gap: 4px;
        justify-items: end;
        text-align: right;
        overflow-wrap: anywhere;
    }

    body.page-admin .admin-mobile-feed-meta strong {
        font-size: 0.82rem;
        color: var(--gold-dark);
    }

    /* Mobile Leads: native disclosure keeps one compact circular control.
       Its Open/Close wording describes the details panel; the durable lead
       status remains available to assistive technology and in the expanded
       details, rather than competing with a second badge or action. */
    body.page-admin .admin-mobile-lead-disclosure {
        min-width: 0;
        max-width: 100%;
    }

    body.page-admin .admin-mobile-lead-disclosure > summary {
        grid-template-columns: minmax(0, 1fr) auto;
        cursor: pointer;
        list-style: none;
    }

    body.page-admin .admin-mobile-lead-disclosure > summary::-webkit-details-marker {
        display: none;
    }

    body.page-admin .admin-mobile-lead-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        min-height: 46px;
        padding: 6px;
        border: 1px solid rgba(199, 162, 90, 0.4);
        border-radius: 50%;
        background: rgba(199, 162, 90, 0.12);
        color: var(--gold-dark);
        font-size: 0.7rem;
        font-weight: 900;
        line-height: 1;
        text-align: center;
    }

    body.page-admin .admin-mobile-lead-toggle-close,
    body.page-admin .admin-mobile-lead-disclosure[open] .admin-mobile-lead-toggle-open {
        display: none;
    }

    body.page-admin .admin-mobile-lead-disclosure[open] .admin-mobile-lead-toggle-close {
        display: inline;
    }

    body.page-admin .admin-mobile-lead-disclosure > summary:focus-visible {
        outline: 3px solid var(--gold-dark);
        outline-offset: 3px;
    }

    body.page-admin .admin-mobile-lead-details {
        display: grid;
        gap: 12px;
        min-width: 0;
        padding: 14px;
        border: 1px solid var(--line);
        border-top: 0;
        border-radius: 0 0 18px 18px;
        background: rgba(255, 255, 255, 0.82);
    }

    body.page-admin .admin-mobile-lead-disclosure[open] > summary {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    body.page-admin .admin-mobile-lead-details p {
        margin: 0;
        overflow-wrap: anywhere;
    }

    body.page-admin .admin-mobile-lead-details dl {
        display: grid;
        gap: 8px;
        margin: 0;
    }

    body.page-admin .admin-mobile-lead-details dl > div {
        display: grid;
        gap: 2px;
        min-width: 0;
    }

    body.page-admin .admin-mobile-lead-details dt {
        color: var(--muted);
        font-size: 0.65rem;
        font-weight: 900;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    body.page-admin .admin-mobile-lead-details dd {
        min-width: 0;
        margin: 0;
        font-size: 0.8rem;
        overflow-wrap: anywhere;
    }

    body.page-admin .admin-mobile-feed-empty {
        display: grid;
        gap: 8px;
        justify-items: center;
        padding: 24px 16px;
        border-radius: 18px;
        border: 1px dashed var(--line);
        background: rgba(255, 255, 255, 0.72);
        text-align: center;
        color: var(--muted);
    }

    body.page-admin .admin-mobile-section-kicker {
        display: block;
        color: var(--muted);
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    body.page-admin .admin-mobile-inventory-copy {
        display: grid;
        gap: 4px;
        min-width: 0;
    }

    body.page-admin .admin-mobile-inventory-copy strong {
        font-size: 0.92rem;
        color: var(--ink);
    }

    body.page-admin .admin-mobile-inventory-copy p {
        margin: 0;
        color: var(--muted);
        font-size: 0.76rem;
        line-height: 1.4;
    }

    body.page-admin .admin-topbar {
        padding: 15px;
        border-radius: 16px;
    }

    body.page-admin .admin-topbar-actions {
        display: grid;
        grid-template-columns: 44px 1fr 1fr;
        gap: 10px;
        width: 100%;
    }

    /* Row 1: Search bar spans all three columns */
    body.page-admin .admin-search-form {
        grid-column: 1 / -1;
        grid-row: 1;
        min-width: 0;
    }

    /* Row 2: Bell icon | View storefront | Log out */
    body.page-admin .admin-topbar-actions .admin-icon-action {
        grid-column: 1;
        grid-row: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        border: 1px solid var(--admin-line);
        border-radius: var(--admin-radius);
        background: #ffffff;
    }

    body.page-admin .admin-topbar-actions > .btn {
        grid-column: 2;
        grid-row: 2;
        width: 100%;
    }

    body.page-admin .admin-topbar-actions form:not(.admin-search-form) {
        grid-column: 3;
        grid-row: 2;
        width: 100%;
    }

    body.page-admin .admin-topbar-actions form:not(.admin-search-form) .btn {
        width: 100%;
        padding: 8px 10px;
        font-size: 0.78rem;
    }

    body.page-admin .admin-stats-grid-primary,
    body.page-admin .admin-finance-summary-grid,
    body.page-admin .admin-finance-summary-grid-compact,
    body.page-admin .admin-finance-summary-grid-5 {
        grid-template-columns: 1fr;
    }

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

    /* Date filter: 2x2 grid — From | To on row 1, Apply | Clear on row 2 */
    body.page-admin .admin-finance-filter {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    body.page-admin .admin-finance-filter .field {
        min-width: 0;
    }

    body.page-admin .admin-finance-filter .field input[type="date"] {
        width: 100%;
        min-width: 0;
    }

    /* iOS WebKit: date/time inputs keep intrinsic width unless native appearance is removed.
       Applies site-wide (admin filters, coupons, gift cards, bespoke and account forms). */
    input[type="date"],
    input[type="time"],
    input[type="datetime-local"],
    input[type="month"] {
        -webkit-appearance: none;
        appearance: none;
        display: block;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    input[type="date"]::-webkit-date-and-time-value,
    input[type="time"]::-webkit-date-and-time-value,
    input[type="datetime-local"]::-webkit-date-and-time-value,
    input[type="month"]::-webkit-date-and-time-value {
        text-align: left;
    }

    /* Guard: no admin form control may exceed its card on small screens (settings, products, finance, etc.) */
    body.page-admin .admin-form input:not([type="checkbox"]):not([type="radio"]),
    body.page-admin .admin-form select,
    body.page-admin .admin-form textarea,
    body.page-admin .field input:not([type="checkbox"]):not([type="radio"]),
    body.page-admin .field select,
    body.page-admin .field textarea {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    body.page-admin .form-grid .field,
    body.page-admin .admin-form .field,
    body.page-admin .admin-form label {
        min-width: 0;
    }

    /* Checkbox pills: keep the box tiny and let the caption wrap inside the card */
    body.page-admin .checkbox-row label {
        display: flex;
        align-items: flex-start;
        max-width: 100%;
        min-width: 0;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    body.page-admin .checkbox-row input[type="checkbox"],
    body.page-admin .checkbox-row input[type="radio"] {
        width: 18px;
        height: 18px;
        min-height: 0;
        margin-top: 2px;
        padding: 0;
        flex: 0 0 auto;
    }

    body.page-admin .admin-finance-filter > .btn,
    body.page-admin .admin-finance-filter > a.btn {
        width: 100%;
    }

    body.page-admin .admin-finance-toolbar {
        flex-direction: column;
    }

    body.page-admin .admin-finance-toolbar .hero-actions {
        justify-content: flex-start;
    }

    body.page-admin .admin-rail-submenu {
        display: none;
    }

    body.page-admin .stat-card {
        min-height: 108px;
    }

    body.page-admin .admin-insight-strip article:last-child {
        grid-column: 1 / -1;
    }

    body.page-admin .admin-sales-chart {
        min-height: 180px;
        gap: 8px;
        overflow-x: auto;
    }

    body.page-admin .admin-sales-bar em {
        display: none;
    }

    body.page-admin .admin-mobile-nav-link {
        display: grid;
        gap: 3px;
        align-items: center;
        justify-items: center;
        padding: 6px 4px;
        border: 0;
        border-radius: 8px;
        background: transparent;
        color: var(--admin-muted);
        font: inherit;
        font-size: 0.625rem;
        font-weight: 600;
        line-height: 1;
        cursor: pointer;
        text-decoration: none;
        transition: color 0.15s ease;
    }

    body.page-admin .admin-mobile-nav-link.is-active,
    body.page-admin .admin-mobile-nav-link:hover {
        color: var(--admin-accent-dark);
        background: transparent;
    }

    body.page-admin .admin-mobile-nav-icon,
    body.page-admin .admin-mobile-nav-link .icon {
        width: 1.12rem;
        height: 1.12rem;
    }

    body.page-admin .admin-mobile-nav-icon-wrap {
        position: relative;
        display: inline-block;
        line-height: 1;
    }

    body.page-admin .admin-mobile-nav-badge {
        position: absolute;
        top: -4px;
        right: -8px;
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        border-radius: 999px;
        background: var(--admin-accent);
        color: #fff8ee;
        font-size: 0.56rem;
        font-weight: 800;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    body.page-admin .admin-mobile-more-sheet {
        position: fixed;
        inset: 0;
        z-index: 90;
        display: block;
        pointer-events: none;
    }

    body.page-admin .admin-mobile-more-sheet.is-open {
        pointer-events: auto;
    }

    body.page-admin .admin-mobile-more-overlay {
        position: absolute;
        inset: 0;
        border: 0;
        background: rgba(29, 23, 17, 0.52);
        opacity: 0;
        transition: opacity 0.22s ease;
        cursor: pointer;
    }

    body.page-admin .admin-mobile-more-sheet.is-open .admin-mobile-more-overlay {
        opacity: 1;
    }

    body.page-admin .admin-mobile-more-panel {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        gap: 14px;
        max-height: min(86dvh, 720px);
        padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
        border-radius: 28px 28px 0 0;
        background: rgba(255, 250, 244, 0.98);
        box-shadow: 0 -24px 60px rgba(29, 23, 17, 0.18);
        transform: translateY(102%);
        transition: transform 0.24s ease;
        overflow: auto;
    }

    body.page-admin .admin-mobile-more-sheet.is-open .admin-mobile-more-panel {
        transform: translateY(0);
    }

    body.page-admin .admin-mobile-more-head {
        display: flex;
        align-items: start;
        justify-content: space-between;
        gap: 12px;
    }

    body.page-admin .admin-mobile-more-head strong {
        display: block;
        font-size: 1.05rem;
    }

    body.page-admin .admin-mobile-more-head p {
        margin: 4px 0 0;
        color: var(--admin-muted);
        font-size: 0.82rem;
    }

    body.page-admin .admin-mobile-more-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        padding: 0;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.82);
        cursor: pointer;
    }

    body.page-admin .admin-mobile-more-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    body.page-admin .admin-mobile-more-tile {
        display: grid;
        gap: 8px;
        justify-items: center;
        min-height: 88px;
        padding: 12px 8px;
        border-radius: 14px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: var(--shadow-soft);
        color: var(--ink);
        font-size: 0.68rem;
        font-weight: 800;
        line-height: 1.2;
        text-align: center;
        text-decoration: none;
    }

    body.page-admin .admin-mobile-more-tile-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: rgba(200, 148, 47, 0.12);
        color: var(--admin-accent-dark);
    }

    body.page-admin .admin-mobile-more-tile.is-active {
        border-color: rgba(200, 148, 47, 0.38);
        background: rgba(200, 148, 47, 0.1);
        color: var(--admin-accent-dark);
    }

    body.page-admin .admin-mobile-more-footer {
        display: grid;
        gap: 10px;
        padding-top: 4px;
        border-top: 1px solid var(--line);
    }

    body.page-admin .admin-mobile-more-store {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 42px;
        border-radius: 12px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.9);
        color: var(--ink);
        font-size: 0.82rem;
        font-weight: 800;
        text-decoration: none;
    }

    body.page-admin .admin-mobile-more-logout {
        margin: 0;
    }

    body.page-admin .admin-mobile-more-logout .btn {
        width: 100%;
        justify-content: center;
    }

    body.page-admin.admin-more-open {
        overflow: hidden;
    }

    body.page-admin .admin-panel {
        padding: 16px;
    }

    body.page-admin .admin-table {
        min-width: 760px;
    }

    body.page-admin .admin-order-head {
        align-items: flex-start;
        flex-direction: column;
    }

    body.page-admin .admin-panel.admin-panel-collapsible .admin-section-head {
        margin-bottom: 0;
        padding-right: 28px;
        cursor: pointer;
    }

    body.page-admin .admin-panel.admin-panel-collapsible .admin-section-head::after {
        content: '+';
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        color: #8a631b;
        font-size: 1.2rem;
        font-weight: 700;
        line-height: 1;
    }

    body.page-admin .admin-panel.admin-panel-collapsible:not(.is-collapsed) .admin-section-head::after {
        content: '−';
    }

    body.page-admin .admin-panel.admin-panel-collapsible.is-collapsed > :not(.admin-section-head) {
        display: none;
    }
}

/* Admin shell alignment fix: one rail, one workspace, one left edge. */
@media (min-width: 1060px) {
    body.page-admin {
        --admin-rail-left: 18px;
        --admin-rail-width: 244px;
        --admin-workspace-gap: 24px;
        --admin-workspace-right: 24px;
        --admin-workspace-left: calc(var(--admin-rail-left) + var(--admin-rail-width) + var(--admin-workspace-gap));
    }

    body.page-admin .site-main {
        overflow-x: hidden;
    }

    body.page-admin .admin-shell.admin-shell-dashboard {
        display: block;
        min-height: 100vh;
        padding: 18px var(--admin-workspace-right) 64px var(--admin-workspace-left);
    }

    body.page-admin .admin-shell-dashboard > .container {
        width: 100%;
        max-width: 1440px;
        margin-left: 0;
        margin-right: auto;
    }

    body.page-admin .admin-desktop-rail {
        position: fixed;
        left: var(--admin-rail-left);
        top: 18px;
        bottom: 18px;
        z-index: 90;
        display: flex;
        flex-direction: column;
        width: var(--admin-rail-width);
        max-height: calc(100vh - 36px);
        padding: 18px 14px;
        overflow-y: auto;
    }

    body.page-admin .admin-desktop-rail .admin-rail-brand {
        flex: 0 0 auto;
    }

    body.page-admin .admin-desktop-rail form {
        margin-top: auto;
        padding-top: 12px;
    }

    body.page-admin .admin-topbar.container {
        position: sticky;
        top: 14px;
        z-index: 70;
    }

    body.page-admin .admin-app-nav {
        display: none !important;
    }
}

@media (min-width: 1440px) {
    body.page-admin {
        --admin-rail-width: 252px;
        --admin-workspace-gap: 28px;
        --admin-workspace-right: 32px;
    }
}

@media (max-width: 1059px) {
    body.page-admin {
        --admin-mobile-nav-inset: env(safe-area-inset-bottom, 0px);
        --admin-mobile-nav-clearance: calc(68px + var(--admin-mobile-nav-inset));
    }

    body.page-admin .admin-hero-topbar,
    body.page-admin .admin-desktop-only {
        display: none !important;
    }

    body.page-admin .site-main {
        padding-bottom: 0;
    }

    body.page-admin .admin-shell.admin-shell-dashboard {
        padding-left: 0;
    }

    body.page-admin .admin-desktop-rail {
        display: none !important;
    }

    body.page-admin .admin-shell,
    body.page-admin .admin-shell.admin-shell-dashboard {
        padding-top: 0;
        padding-bottom: var(--admin-mobile-nav-clearance);
    }

    body.page-admin .admin-app-nav {
        display: none !important;
    }

    body.page-admin .admin-mobile-bottom-nav,
    .page-admin .admin-mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10050;
        display: grid !important;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0;
        padding: 8px 4px max(8px, env(safe-area-inset-bottom));
        border-top: 1px solid var(--line);
        background: rgba(255, 250, 244, 0.98);
        backdrop-filter: blur(8px);
        box-shadow: 0 -10px 30px rgba(29, 23, 17, 0.08);
    }

    body.page-admin #cookie-consent,
    body.page-admin .cookie-consent {
        display: none !important;
    }

    body.page-admin .admin-mobile-nav-link {
        display: grid;
        gap: 3px;
        align-items: center;
        justify-items: center;
        padding: 6px 4px;
        border: 0;
        border-radius: 8px;
        background: transparent;
        color: var(--admin-muted);
        font: inherit;
        font-size: 0.625rem;
        font-weight: 600;
        line-height: 1;
        cursor: pointer;
        text-decoration: none;
        transition: color 0.15s ease;
    }

    body.page-admin .admin-mobile-nav-link.is-active,
    body.page-admin .admin-mobile-nav-link:hover {
        color: var(--admin-accent-dark);
        background: transparent;
    }

    body.page-admin .admin-mobile-nav-icon,
    body.page-admin .admin-mobile-nav-link .icon {
        width: 1.12rem;
        height: 1.12rem;
    }

    body.page-admin .admin-mobile-nav-icon-wrap {
        position: relative;
        display: inline-block;
        line-height: 1;
    }

    body.page-admin .admin-mobile-nav-badge {
        position: absolute;
        top: -4px;
        right: -8px;
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        border-radius: 999px;
        background: var(--admin-accent);
        color: #fff8ee;
        font-size: 0.56rem;
        font-weight: 800;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    body.page-admin .admin-mobile-more-sheet {
        position: fixed;
        inset: 0;
        z-index: 90;
        display: block;
        pointer-events: none;
    }

    body.page-admin .admin-mobile-more-sheet.is-open {
        pointer-events: auto;
    }

    body.page-admin .admin-mobile-more-overlay {
        position: absolute;
        inset: 0;
        border: 0;
        background: rgba(29, 23, 17, 0.52);
        opacity: 0;
        transition: opacity 0.22s ease;
        cursor: pointer;
    }

    body.page-admin .admin-mobile-more-sheet.is-open .admin-mobile-more-overlay {
        opacity: 1;
    }

    body.page-admin .admin-mobile-more-panel {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        gap: 14px;
        max-height: min(86dvh, 720px);
        padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
        border-radius: 28px 28px 0 0;
        background: rgba(255, 250, 244, 0.98);
        box-shadow: 0 -24px 60px rgba(29, 23, 17, 0.18);
        transform: translateY(102%);
        transition: transform 0.24s ease;
        overflow: auto;
    }

    body.page-admin .admin-mobile-more-sheet.is-open .admin-mobile-more-panel {
        transform: translateY(0);
    }

    body.page-admin .admin-mobile-more-head {
        display: flex;
        align-items: start;
        justify-content: space-between;
        gap: 12px;
    }

    body.page-admin .admin-mobile-more-head strong {
        display: block;
        font-size: 1.05rem;
    }

    body.page-admin .admin-mobile-more-head p {
        margin: 4px 0 0;
        color: var(--admin-muted);
        font-size: 0.82rem;
    }

    body.page-admin .admin-mobile-more-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        padding: 0;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.82);
        cursor: pointer;
    }

    body.page-admin .admin-mobile-more-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    body.page-admin .admin-mobile-more-tile {
        display: grid;
        gap: 8px;
        justify-items: center;
        min-height: 88px;
        padding: 12px 8px;
        border-radius: 14px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: var(--shadow-soft);
        color: var(--ink);
        font-size: 0.68rem;
        font-weight: 800;
        line-height: 1.2;
        text-align: center;
        text-decoration: none;
    }

    body.page-admin .admin-mobile-more-tile-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: rgba(200, 148, 47, 0.12);
        color: var(--admin-accent-dark);
    }

    body.page-admin .admin-mobile-more-tile.is-active {
        border-color: rgba(200, 148, 47, 0.38);
        background: rgba(200, 148, 47, 0.1);
        color: var(--admin-accent-dark);
    }

    body.page-admin .admin-mobile-more-footer {
        display: grid;
        gap: 10px;
        padding-top: 4px;
        border-top: 1px solid var(--line);
    }

    body.page-admin .admin-mobile-more-store {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 42px;
        border-radius: 12px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.9);
        color: var(--ink);
        font-size: 0.82rem;
        font-weight: 800;
        text-decoration: none;
    }

    body.page-admin .admin-mobile-more-logout {
        margin: 0;
    }

    body.page-admin .admin-mobile-more-logout .btn {
        width: 100%;
        justify-content: center;
    }

    body.page-admin.admin-more-open {
        overflow: hidden;
    }
}

/* Cookie consent banner */
.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg);
    border-top: 1px solid var(--line);
    box-shadow: 0 -16px 35px rgba(29, 23, 17, 0.08);
    font-size: 0.9rem;
    color: var(--ink);
}

.cookie-consent-copy {
    margin: 0;
    max-width: 60ch;
    line-height: 1.5;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-actions .btn-gold {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.cookie-consent-actions .btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

@media (max-width: 640px) {
    .cookie-consent {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 18px;
    }

    .cookie-consent-copy {
        max-width: 100%;
    }
}

/* GDPR danger button (red outline) */
.btn-danger {
    color: #b3261e;
    border-color: rgba(179, 38, 30, 0.45);
    background: rgba(179, 38, 30, 0.04);
}

.btn-danger:hover {
    color: #fff;
    background: #b3261e;
    border-color: #b3261e;
}

.account-gdpr-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 22px;
}

.account-gdpr-actions {
    align-items: flex-start;
    gap: 16px;
}

.account-delete-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 320px;
    width: 100%;
}

/* ════════════════════════════════════════════════════════════════════════
   ADMIN LOOKBOOK STYLE OVERRIDES — Applied to all admin pages
   Converts green/dark accents to gold lookbook palette
   ════════════════════════════════════════════════════════════════════════ */

/* Admin CSS variables — override to gold palette */
.page-admin {
    --admin-accent: #b87912;
    --admin-accent-soft: rgba(199, 162, 90, 0.14);
    --admin-accent-dark: #b87912;
    --admin-gold-soft: rgba(199, 162, 90, 0.14);
    --admin-shadow: 0 6px 20px rgba(29, 23, 17, 0.06);
    --admin-radius: 6px;
    --admin-input-bg: #fbf8f3;
    --admin-table-header-bg: #050505;
    --admin-section-head-bg: #fbf8f3;
    --admin-rail-bg-start: #0e110f;
    --admin-rail-bg-end: #181d19;
    --admin-btn-gold-start: #d49a28;
    --admin-btn-gold-end: #b87912;
    --admin-bg: #fbf8f3;
    --admin-surface: #ffffff;
    --admin-surface-muted: #fbf8f3;
    --admin-card: #ffffff;
    --admin-ink: #050505;
    --admin-muted: rgba(29, 23, 17, 0.62);
    --admin-line: rgba(29, 23, 17, 0.08);
}

/* Admin shell background */
.page-admin .admin-shell {
    background: #fbf8f3;
}

/* Stat cards — lookbook style */
.page-admin .stat-card {
    min-height: 110px;
    padding: 20px;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    background: #fff;
    box-shadow: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.page-admin .stat-card:hover {
    border-color: rgba(199, 162, 90, 0.3);
    box-shadow: 0 6px 20px rgba(29, 23, 17, 0.05);
}

.page-admin .stat-card::before {
    display: none;
}

.page-admin .stat-card span {
    color: rgba(29, 23, 17, 0.62);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.page-admin .stat-card strong {
    color: #050505;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    font-weight: 900;
    letter-spacing: -0.02em;
}

.page-admin .stat-card small {
    color: rgba(29, 23, 17, 0.5);
    font-size: 0.76rem;
}

/* Insight strip — lookbook style */
.page-admin .admin-insight-strip article {
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    background: #fff;
    transition: border-color 0.18s ease;
}

.page-admin .admin-insight-strip article:hover {
    border-color: rgba(199, 162, 90, 0.3);
}

.page-admin .admin-insight-strip strong {
    color: #050505;
    font-weight: 900;
}

.page-admin .admin-insight-strip span {
    color: rgba(29, 23, 17, 0.62);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Note cards — lookbook style */
.page-admin .note-card {
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    background: #fff;
}

.page-admin .note-card .eyebrow {
    color: var(--admin-accent);
}

.page-admin .note-card h3 {
    color: #050505;
    font-weight: 900;
}

/* Admin panels — lookbook card style */
.page-admin .admin-panel,
.page-admin .admin-login-card,
.page-admin .admin-order-card,
.page-admin .admin-lead-card,
.page-admin .admin-notification-card {
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    background: #fff;
    box-shadow: none;
}

.page-admin .admin-panel {
    padding: 24px 22px;
}

.page-admin .admin-panel:hover {
    box-shadow: 0 6px 20px rgba(29, 23, 17, 0.05);
    border-color: rgba(199, 162, 90, 0.2);
}

.page-admin .admin-panel h2 {
    color: #050505;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.page-admin .admin-panel h3 {
    color: #050505;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.page-admin .admin-panel .section-copy {
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.9rem;
    line-height: 1.55;
}

/* Section heads — lookbook style */
.page-admin .admin-section-head {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

.page-admin .admin-section-head .eyebrow {
    color: var(--admin-accent);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.page-admin .admin-section-head h2 {
    color: #050505;
    font-weight: 900;
}

.page-admin .admin-section-head > span,
.page-admin .admin-section-head a {
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 5px;
    background: #fbf8f3;
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.76rem;
    font-weight: 700;
}

/* Form inputs — lookbook focus style */
.page-admin .admin-form input,
.page-admin .admin-form select,
.page-admin .admin-form textarea,
.page-admin .admin-login-card input {
    min-height: 42px;
    border: 1px solid rgba(29, 23, 17, 0.14);
    border-radius: 4px;
    background: #fbf8f3;
    color: #1d1711;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.page-admin .admin-form input:focus,
.page-admin .admin-form select:focus,
.page-admin .admin-form textarea:focus,
.page-admin .admin-login-card input:focus {
    border-color: #b87912;
    box-shadow: 0 0 0 3px rgba(199, 162, 90, 0.12);
    outline: 0;
}

.page-admin .field span {
    color: #050505;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

/* Buttons — gold lookbook style */
.page-admin .btn-gold {
    background: linear-gradient(180deg, #d49a28, #b87912);
    color: #fff8ef;
    border: 0;
    box-shadow: none;
}

.page-admin .btn-gold:hover {
    background: linear-gradient(180deg, #e0a838, #c8871a);
}

.page-admin .btn-outline,
.page-admin .btn-soft {
    border: 1px solid rgba(29, 23, 17, 0.14);
    background: #fff;
    color: #050505;
    box-shadow: none;
}

.page-admin .btn-outline:hover,
.page-admin .btn-soft:hover {
    border-color: #b87912;
    background: rgba(199, 162, 90, 0.06);
    color: #b87912;
}

/* Tables — lookbook dark header style */
.page-admin .admin-table-wrap {
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    background: #fff;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.page-admin .admin-table {
    border-collapse: collapse;
    min-width: 560px;
}

.page-admin .admin-table th {
    background: #050505;
    color: #d9b76d;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-align: left;
    padding: 14px 16px;
}

.page-admin .admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
    color: #1d1711;
    font-size: 0.86rem;
}

.page-admin .admin-table tbody tr:last-child td {
    border-bottom: 0;
}

.page-admin .admin-table tbody tr:hover {
    background: rgba(199, 162, 90, 0.04);
}

/* Order/Lead/Notification cards — lookbook style */
.page-admin .admin-order-card,
.page-admin .admin-lead-card,
.page-admin .admin-notification-card {
    padding: 20px;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    background: #fff;
    box-shadow: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.page-admin .admin-order-card:hover,
.page-admin .admin-lead-card:hover,
.page-admin .admin-notification-card:hover {
    border-color: rgba(199, 162, 90, 0.3);
    box-shadow: 0 6px 20px rgba(29, 23, 17, 0.05);
}

.page-admin .admin-order-card strong,
.page-admin .admin-lead-card strong,
.page-admin .admin-notification-card strong {
    color: #050505;
}

.page-admin .admin-order-card p,
.page-admin .admin-lead-card p,
.page-admin .admin-notification-card p {
    color: rgba(29, 23, 17, 0.72);
    font-size: 0.88rem;
    line-height: 1.55;
}

/* Empty states — lookbook style */
.page-admin .admin-empty-state {
    padding: 40px 20px;
    text-align: center;
}

.page-admin .admin-empty-state .icon {
    color: rgba(199, 162, 90, 0.5);
}

.page-admin .admin-empty-state strong {
    color: #050505;
    font-size: 0.92rem;
    font-weight: 900;
}

.page-admin .admin-empty-state p {
    color: rgba(29, 23, 17, 0.62);
    font-size: 0.86rem;
}

/* Sales chart — lookbook gold bars */
.page-admin .admin-sales-chart {
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    background: #fbf8f3;
}

.page-admin .admin-sales-bar span {
    background: linear-gradient(180deg, #d49a28, #b87912);
    border-radius: 4px 4px 0 0;
}

.page-admin .admin-sales-bar em {
    color: #050505;
    font-weight: 700;
}

.page-admin .admin-sales-bar small {
    color: rgba(29, 23, 17, 0.5);
}

/* Mini list items — lookbook style */
.page-admin .admin-mini-list {
    gap: 10px;
}

.page-admin .admin-mini-item img {
    border-radius: 4px;
    border: 1px solid rgba(29, 23, 17, 0.08);
}

.page-admin .admin-mini-item strong {
    color: #050505;
    font-size: 0.86rem;
    font-weight: 700;
}

.page-admin .admin-mini-item span {
    color: rgba(29, 23, 17, 0.62);
    font-size: 0.78rem;
}

.page-admin .admin-mini-item em {
    color: var(--admin-accent);
    font-style: normal;
    font-weight: 900;
    font-size: 0.82rem;
}

/* Status pills — lookbook style */
.page-admin .admin-status-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

/* Finance tabs / section anchors — lookbook tab style */
.page-admin .admin-finance-tabs,
.page-admin .admin-section-anchor {
    display: flex;
    gap: clamp(16px, 3vw, 40px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(29, 23, 17, 0.08);
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.page-admin .admin-finance-tabs a,
.page-admin .admin-section-anchor a {
    position: relative;
    padding: 0 0 10px;
    color: #050505;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.18s ease;
}

.page-admin .admin-finance-tabs a:hover,
.page-admin .admin-section-anchor a:hover {
    color: var(--admin-accent);
}

.page-admin .admin-finance-tabs a.is-active,
.page-admin .admin-section-anchor a.is-active {
    color: var(--admin-accent);
}

/* Desktop rail — gold accents on dark */
.page-admin .admin-desktop-rail a:hover,
.page-admin .admin-desktop-rail a.is-active,
.page-admin .admin-desktop-rail button:hover {
    background: rgba(199, 162, 90, 0.16);
    color: #d9b76d;
}

.page-admin .admin-desktop-rail .admin-rail-submenu a.is-subactive {
    background: rgba(199, 162, 90, 0.16);
    color: #d9b76d;
}

/* Login card — lookbook style */
.page-admin .admin-login-card {
    padding: 32px 28px;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    background: #fff;
    box-shadow: none;
}

.page-admin .admin-login-card h2 {
    color: #050505;
    font-size: 1.3rem;
    font-weight: 900;
}

.page-admin .admin-login-card .eyebrow {
    color: var(--admin-accent);
}

/* Dashboard grid — lookbook spacing */
.page-admin .admin-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 20px;
}

/* Checkbox row — lookbook style */
.page-admin .checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.page-admin .checkbox-row label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid rgba(29, 23, 17, 0.14);
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(29, 23, 17, 0.72);
    cursor: pointer;
    transition: border-color 0.18s ease, color 0.18s ease;
}

.page-admin .checkbox-row label:hover {
    border-color: rgba(199, 162, 90, 0.5);
    color: var(--admin-accent);
}

.page-admin .checkbox-row input[type="checkbox"] {
    accent-color: #b87912;
}

/* Admin upload preview — lookbook style */
.page-admin .admin-upload-preview {
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    background: #fbf8f3;
}

.page-admin .admin-upload-preview img {
    border-radius: 6px;
    border: 1px solid rgba(199, 162, 90, 0.3);
}

/* Admin edit panel — lookbook style */
.page-admin .admin-edit-panel {
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    background: #fbf8f3;
}

/* Responsive admin */
@media (max-width: 1120px) {
    .page-admin .admin-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    .page-admin .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }

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

    .page-admin .admin-finance-tabs,
    .page-admin .admin-section-anchor {
        overflow-x: auto;
        gap: 20px;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   ADMIN ORDER CARDS — Organized layout
   ════════════════════════════════════════════════════════════════════════ */

/* Order pipeline visualization */
.page-admin .admin-order-pipeline {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 16px;
    padding: 18px 20px;
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    background: #fff;
}

.page-admin .admin-pipeline-step {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 12px;
    border: 1px solid rgba(29, 23, 17, 0.06);
    border-radius: 6px;
    background: #fbf8f3;
    text-decoration: none;
    transition: border-color 0.18s ease, background 0.18s ease;
}

.page-admin .admin-pipeline-step:hover {
    border-color: rgba(199, 162, 90, 0.4);
    background: rgba(199, 162, 90, 0.04);
}

.page-admin .admin-pipeline-step.has-items {
    border-color: rgba(199, 162, 90, 0.3);
}

.page-admin .admin-pipeline-count {
    color: #050505;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.page-admin .admin-pipeline-label {
    color: #050505;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.page-admin .admin-pipeline-step small {
    color: rgba(29, 23, 17, 0.5);
    font-size: 0.72rem;
}

.page-admin .admin-pipeline-step--pending.has-items {
    border-color: rgba(199, 162, 90, 0.4);
    background: rgba(199, 162, 90, 0.06);
}

.page-admin .admin-pipeline-step--pending .admin-pipeline-count {
    color: var(--admin-accent);
}

.page-admin .admin-pipeline-step--confirmed.has-items {
    border-color: rgba(15, 122, 77, 0.25);
    background: rgba(15, 122, 77, 0.04);
}

.page-admin .admin-pipeline-step--confirmed .admin-pipeline-count {
    color: #0f7a4d;
}

.page-admin .admin-pipeline-step--closed.has-items {
    border-color: rgba(29, 23, 17, 0.12);
    background: #f5f3f0;
}

.page-admin .admin-pipeline-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    color: rgba(29, 23, 17, 0.25);
    flex-shrink: 0;
}

/* Overview recent order rows */
.page-admin .admin-order-overview-row {
    display: grid;
    grid-template-columns: minmax(140px, auto) minmax(0, 1fr) 60px minmax(80px, auto);
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

.page-admin .admin-order-overview-row:last-child {
    border-bottom: 0;
}

.page-admin .admin-order-overview-id {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.page-admin .admin-order-overview-id strong {
    color: #050505;
    font-size: 0.82rem;
    font-weight: 900;
    white-space: nowrap;
}

.page-admin .admin-order-overview-customer {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.page-admin .admin-order-overview-customer strong {
    color: #050505;
    font-size: 0.84rem;
    font-weight: 700;
}

.page-admin .admin-order-overview-customer small {
    color: rgba(29, 23, 17, 0.55);
    font-size: 0.76rem;
}

.page-admin .admin-order-overview-date {
    color: rgba(29, 23, 17, 0.5);
    font-size: 0.76rem;
    text-align: center;
}

.page-admin .admin-order-overview-amount {
    color: #050505;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .page-admin .admin-order-pipeline {
        flex-direction: column;
        gap: 8px;
    }

    .page-admin .admin-pipeline-arrow {
        display: none;
    }

    .page-admin .admin-order-overview-row {
        grid-template-columns: 1fr auto;
        gap: 8px;
        padding: 12px 0;
    }

    .page-admin .admin-order-overview-customer,
    .page-admin .admin-order-overview-date {
        grid-column: 1;
    }

    .page-admin .admin-order-overview-amount {
        grid-column: 2;
        grid-row: 1 / 3;
        align-self: center;
    }
}

.page-admin .admin-order-card-organized {
    padding: 0;
    overflow: hidden;
    max-width: 100%;
    min-width: 0;
}

.page-admin .admin-order-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
    background: #fbf8f3;
}

.page-admin .admin-order-card-id {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.page-admin .admin-order-card-id strong {
    color: #050505;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.page-admin .admin-order-status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.page-admin .admin-order-card-amount {
    color: #050505;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
}

.page-admin .admin-order-card-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

.page-admin .admin-order-meta-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    padding-right: 16px;
    border-right: 1px solid rgba(29, 23, 17, 0.04);
}

.page-admin .admin-order-meta-item:last-child {
    border-right: 0;
    padding-right: 0;
}

.page-admin .admin-order-meta-label {
    color: rgba(29, 23, 17, 0.5);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.page-admin .admin-order-meta-item strong {
    color: #050505;
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.3;
}

.page-admin .admin-order-meta-item small {
    color: rgba(29, 23, 17, 0.55);
    font-size: 0.76rem;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-admin .admin-order-card-journals {
    padding: 8px 20px;
    background: rgba(199, 162, 90, 0.06);
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
}

.page-admin .admin-order-card-journals small {
    color: var(--admin-accent);
    font-size: 0.76rem;
    font-weight: 700;
}

.page-admin .admin-order-card-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.page-admin .admin-order-control-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    min-width: 0;
}

.page-admin .admin-order-control-row .field {
    min-width: 0;
}

.page-admin .admin-order-card-controls select,
.page-admin .admin-order-card-controls input {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.page-admin .admin-order-notes-field {
    width: 100%;
}

.page-admin .admin-order-notes-field input {
    width: 100%;
}

.page-admin .admin-order-card-controls .btn-gold {
    align-self: flex-start;
}

@media (max-width: 760px) {
    .page-admin .admin-order-card-meta {
        grid-template-columns: 1fr 1fr;
        gap: 14px 0;
    }

    .page-admin .admin-order-meta-item {
        border-right: 0;
        padding-right: 0;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(29, 23, 17, 0.04);
    }

    .page-admin .admin-order-meta-item:nth-last-child(-n+2) {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .page-admin .admin-order-control-row {
        grid-template-columns: 1fr;
    }

    .page-admin .admin-order-card-controls .btn-gold {
        align-self: stretch;
        text-align: center;
    }
}

/* ===== Finance Gallery — Lookbook Style ===== */

.page-admin .admin-finance-gallery {
    padding: 22px 0 40px;
    background: #fbf8f3;
}

/* Finance toolbar — match reports toolbar card style */
.page-admin .admin-finance-gallery .admin-finance-toolbar {
    margin: 0 0 22px;
    padding: 16px;
    border: 1px solid var(--admin-line);
    border-radius: var(--admin-radius);
    background: var(--admin-section-head-bg);
}

.page-admin .admin-finance-gallery .admin-finance-toolbar .admin-finance-filter {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    grid-template-columns: repeat(2, minmax(180px, 1fr)) auto auto;
    gap: 10px;
    align-items: end;
}

.page-admin .admin-finance-gallery .admin-finance-toolbar .admin-finance-filter .field span {
    color: var(--admin-muted);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.page-admin .admin-finance-gallery .admin-finance-toolbar .admin-finance-filter input[type="date"] {
    border: 1px solid var(--admin-line);
    border-radius: var(--admin-radius);
    background: #fff;
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.86rem;
    color: var(--admin-ink);
}

.page-admin .admin-finance-gallery .admin-finance-toolbar .admin-finance-filter .btn,
.page-admin .admin-finance-gallery .admin-finance-toolbar .admin-finance-filter a.btn {
    min-height: 38px;
    border-radius: var(--admin-radius);
}

/* Insight strip — match dashboard brand style (white cards, gold hover) */
.page-admin .admin-finance-gallery .admin-insight-strip article {
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 6px;
    background: #fff;
    padding: 18px 16px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.page-admin .admin-finance-gallery .admin-insight-strip article:hover {
    border-color: rgba(199, 162, 90, 0.3);
    box-shadow: 0 6px 20px rgba(29, 23, 17, 0.05);
}

.page-admin .admin-finance-gallery .admin-insight-strip article span {
    color: rgba(29, 23, 17, 0.62);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.page-admin .admin-finance-gallery .admin-insight-strip article strong {
    color: #050505;
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.page-admin .admin-finance-gallery .admin-insight-strip article .admin-status-pill {
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

/* Stat cards — lookbook style with dark accent */
.page-admin .admin-finance-gallery .stat-card {
    border-radius: 4px;
    background: #fff;
    border: 1px solid rgba(29, 23, 17, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.page-admin .admin-finance-gallery .stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(29, 23, 17, 0.1);
    border-color: rgba(199, 162, 90, 0.3);
}

/* Finance metric cards — lookbook card style */
.page-admin .admin-finance-gallery .admin-finance-metric-card {
    border-radius: 4px;
    border: 1px solid rgba(29, 23, 17, 0.08);
    background: #fff;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.page-admin .admin-finance-gallery .admin-finance-metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(29, 23, 17, 0.08);
    border-color: rgba(199, 162, 90, 0.25);
}

.page-admin .admin-finance-gallery .admin-finance-metric-card span {
    position: relative;
    padding-left: 12px;
}

.page-admin .admin-finance-gallery .admin-finance-metric-card span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 14px;
    border-radius: 999px;
    background: var(--admin-accent);
}

/* Panels in the gallery — match lookbook section spacing */
.page-admin .admin-finance-gallery .admin-panels {
    margin-bottom: 16px;
}

.page-admin .admin-finance-gallery .admin-panel {
    border-radius: 4px;
}

/* Tables — lookbook style */
.page-admin .admin-finance-gallery .admin-table th {
    background: #050505;
    color: #d9b76d;
}

.page-admin .admin-finance-gallery .admin-table tbody tr:hover {
    background: rgba(199, 162, 90, 0.04);
}

/* Organized cards — lookbook style within finance gallery */
.page-admin .admin-finance-gallery .admin-order-card-organized {
    border: 1px solid rgba(29, 23, 17, 0.08);
    border-radius: 4px;
    background: #fff;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.page-admin .admin-finance-gallery .admin-order-card-organized:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(29, 23, 17, 0.07);
    border-color: rgba(199, 162, 90, 0.25);
}

.page-admin .admin-finance-gallery .admin-order-card-header {
    border-bottom: 1px solid rgba(29, 23, 17, 0.06);
    background: rgba(251, 248, 243, 0.6);
}

.page-admin .admin-finance-gallery .admin-order-card-meta {
    border-bottom: 0;
}

/* Responsive — finance gallery */
@media (max-width: 1120px) {
    .page-admin .admin-finance-gallery .admin-finance-toolbar .admin-finance-filter {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .page-admin .admin-finance-gallery .admin-finance-toolbar .admin-finance-filter > .btn,
    .page-admin .admin-finance-gallery .admin-finance-toolbar .admin-finance-filter > a.btn {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .page-admin .admin-finance-gallery {
        padding: 16px 0 30px;
    }

    .page-admin .admin-finance-gallery .admin-finance-toolbar {
        padding: 12px;
    }

    .page-admin .admin-finance-gallery .admin-finance-toolbar .admin-finance-filter {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .page-admin .admin-finance-gallery .admin-finance-toolbar .admin-finance-filter .field {
        min-width: 0;
    }

    .page-admin .admin-finance-gallery .admin-finance-toolbar .admin-finance-filter .field input[type="date"] {
        width: 100%;
        min-width: 0;
    }

    .page-admin .admin-finance-gallery .admin-finance-toolbar .admin-finance-filter > .btn,
    .page-admin .admin-finance-gallery .admin-finance-toolbar .admin-finance-filter > a.btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 460px) {
    .page-admin .admin-finance-gallery .admin-finance-toolbar .admin-finance-filter {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
}

/* ─── Bespoke responsive ─────────────────────────────────────────────────── */
@media (max-width: 980px) {
    body.page-bespoke .bespoke-form-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    body.page-bespoke .bespoke-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    body.page-bespoke .bespoke-process-card:nth-child(2) {
        border-right: 0;
    }

    body.page-bespoke .bespoke-process-card:nth-child(1),
    body.page-bespoke .bespoke-process-card:nth-child(2) {
        border-bottom: 1px solid rgba(29, 23, 17, 0.06);
    }

    body.page-bespoke .bespoke-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body.page-bespoke .bespoke-hero-section {
        min-height: 340px;
        padding: 40px 0 44px;
    }

    body.page-bespoke .bespoke-hero-content h1 {
        font-size: clamp(2.4rem, 8vw, 3.2rem);
    }

    body.page-bespoke .bespoke-form-grid {
        grid-template-columns: 1fr;
    }

    body.page-bespoke .bespoke-form {
        padding: 24px 20px;
    }

    body.page-bespoke .bespoke-process-grid {
        grid-template-columns: 1fr;
    }

    body.page-bespoke .bespoke-process-card {
        border-right: 0;
        border-bottom: 1px solid rgba(29, 23, 17, 0.06);
    }

    body.page-bespoke .bespoke-process-card:last-child {
        border-bottom: 0;
    }

    body.page-bespoke .bespoke-faq-card {
        padding: 22px;
    }
}

/* Admin dashboard mobile — collapse empty stretch above bottom nav */
@media (max-width: 760px) {
    body.page-admin .page-shell,
    body.page-admin .site-main,
    body.page-admin .admin-shell,
    body.page-admin .admin-shell.admin-shell-dashboard {
        min-height: 0 !important;
        height: auto !important;
    }

    body.page-admin .site-main {
        padding-bottom: 0 !important;
    }

    body.page-admin .admin-shell,
    body.page-admin .admin-shell.admin-shell-dashboard {
        padding-top: 0 !important;
        padding-bottom: var(--admin-mobile-nav-clearance) !important;
    }

    body.page-admin .admin-dashboard-desktop-only {
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body.page-admin .admin-orders-desktop-only {
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body.page-admin .admin-products-desktop-only {
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body.page-admin .admin-customers-desktop-only {
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body.page-admin .admin-collections-desktop-only {
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body.page-admin .admin-notifications-desktop-only {
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body.page-admin .admin-finance-desktop-only {
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body.page-admin .admin-leads-desktop-only {
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body.page-admin .admin-reports-desktop-only {
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body.page-admin .admin-settings-desktop-only {
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body.page-admin .admin-dashboard-mobile-only {
        margin-bottom: 0;
    }

    body.page-admin .admin-orders-mobile-only {
        margin-bottom: 0;
    }

    body.page-admin .admin-products-mobile-only {
        margin-bottom: 0;
    }

    body.page-admin .admin-customers-mobile-only {
        margin-bottom: 0;
    }

    body.page-admin .admin-collections-mobile-only {
        margin-bottom: 0;
    }

    body.page-admin .admin-notifications-mobile-only {
        margin-bottom: 0;
    }

    body.page-admin .admin-finance-mobile-only {
        margin-bottom: 0;
    }

    body.page-admin .admin-reports-mobile-only {
        margin-bottom: 0;
    }

    body.page-admin .admin-settings-mobile-only {
        margin-bottom: 0;
    }

    body.page-admin .admin-dashboard-mobile-only .admin-mobile-inventory {
        margin-bottom: 0;
    }
}

/* Admin finance reports — bank statement styling */
.page-admin .admin-finance-reports {
    --bank-ink: #1d1711;
    --bank-muted: #6f6254;
    --bank-line: rgba(29, 23, 17, 0.14);
    --bank-paper: #fffdf9;
    --bank-gold: #c7a25a;
}

.page-admin .admin-bank-statement {
    background: var(--bank-paper);
    border: 1px solid var(--bank-line);
    border-radius: var(--radius-sm);
    padding: 28px 32px;
    box-shadow: 0 8px 28px rgba(29, 23, 17, 0.06);
}

.page-admin .admin-panel-statement {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.page-admin .admin-bank-statement-header {
    display: grid;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--bank-gold);
}

.page-admin .admin-bank-statement-institution {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.65rem;
    letter-spacing: 0.04em;
    color: var(--bank-ink);
}

.page-admin .admin-bank-statement-tagline {
    margin: 4px 0 0;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bank-muted);
}

.page-admin .admin-bank-statement-title-block h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--bank-ink);
}

.page-admin .admin-bank-statement-title-block p {
    margin: 6px 0 0;
    color: var(--bank-muted);
    font-size: 0.92rem;
}

.page-admin .admin-bank-statement-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
}

.page-admin .admin-bank-statement-meta > div {
    display: grid;
    gap: 2px;
}

.page-admin .admin-bank-statement-meta span {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bank-muted);
}

.page-admin .admin-bank-statement-meta strong {
    font-size: 0.95rem;
    color: var(--bank-ink);
}

.page-admin .admin-bank-balanced-indicator.is-balanced {
    color: #2d6a4f;
}

.page-admin .admin-bank-balanced-indicator.is-unbalanced {
    color: #9b2226;
}

.page-admin .admin-bank-statement-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 20px;
    padding: 16px 18px;
    background: rgba(199, 162, 90, 0.08);
    border: 1px solid rgba(199, 162, 90, 0.22);
    border-radius: 12px;
}

.page-admin .admin-bank-statement-summary > div {
    display: grid;
    gap: 2px;
}

.page-admin .admin-bank-statement-summary span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bank-muted);
}

.page-admin .admin-bank-table-wrap {
    overflow-x: auto;
}

.page-admin .admin-bank-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.page-admin .admin-bank-table th,
.page-admin .admin-bank-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--bank-line);
    vertical-align: top;
}

.page-admin .admin-bank-table thead th {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bank-muted);
    background: rgba(29, 23, 17, 0.03);
    border-bottom: 2px solid var(--bank-line);
}

.page-admin .admin-bank-table .num,
.page-admin .admin-bank-statement-summary .num {
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-family: ui-monospace, "SFMono-Regular", "Menlo", monospace;
    white-space: nowrap;
}

.page-admin .admin-bank-table .mono {
    font-family: ui-monospace, "SFMono-Regular", "Menlo", monospace;
    font-size: 0.86rem;
    color: var(--bank-muted);
}

.page-admin .admin-bank-table tfoot th {
    background: rgba(199, 162, 90, 0.1);
    border-top: 2px solid var(--bank-gold);
    font-weight: 600;
}

.page-admin .admin-bank-total-row th,
.page-admin .admin-bank-total-row td {
    font-weight: 600;
}

/* ----- Branded accounting report format (PDF-style letterhead) ----- */
.page-admin .admin-report-letterhead {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

.page-admin .admin-report-letterhead-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
    flex-wrap: wrap;
    padding-bottom: 14px;
    border-bottom: 3px solid var(--report-accent, var(--gold-dark));
}

.page-admin .admin-report-logo {
    width: 82px;
    height: 82px;
    flex: 0 0 82px;
    display: grid;
    place-items: center;
}

.page-admin .admin-report-logo--image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.page-admin .admin-report-logo--monogram {
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--surface-strong, #fff8f0), #f2e7d2);
    border: 3px solid var(--report-accent, var(--gold-dark));
    box-shadow: 0 6px 16px rgba(141, 107, 49, 0.22);
}

.page-admin .admin-report-logo--monogram span {
    font-family: var(--font-heading, Georgia, serif);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--report-accent, var(--gold-dark));
    letter-spacing: 0.04em;
}

.page-admin .admin-report-brand {
    display: grid;
    gap: 3px;
}

.page-admin .admin-report-brand-name {
    margin: 0;
    font-family: var(--font-heading, Georgia, serif);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--gold-dark);
}

.page-admin .admin-report-contact {
    margin: 0;
    font-size: 0.82rem;
    color: var(--ink);
}

.page-admin .admin-report-contact .lbl {
    color: var(--gold-dark);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.page-admin .admin-report-title-band {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--ink);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.95rem;
    box-shadow: inset 0 0 0 1px rgba(141, 107, 49, 0.25);
}

.page-admin .admin-report-subhead {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 18px;
}

.page-admin .admin-report-subtitle {
    margin: 0;
    color: var(--bank-muted);
    font-size: 0.9rem;
}

.page-admin .admin-report-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    font-size: 0.78rem;
    color: var(--bank-muted);
}

.page-admin .admin-report-meta strong {
    color: var(--bank-ink);
}

.page-admin .admin-report-status {
    font-weight: 700;
}

.page-admin .admin-report-accent-gold {
    --report-accent: var(--gold-dark);
}

.page-admin .admin-report-accent-ink {
    --report-accent: var(--ink);
}

.page-admin .admin-report-section-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 24px 0 10px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.page-admin .admin-report-section-income,
.page-admin .admin-report-section-inflow {
    color: #1f9d57;
}

.page-admin .admin-report-section-expense,
.page-admin .admin-report-section-outflow {
    color: #e0483f;
}

.page-admin .admin-bank-table--brand thead th {
    background: var(--gold-dark);
    color: #ffffff;
    border-bottom-color: var(--gold-dark);
    text-transform: uppercase;
}

.page-admin .admin-bank-table--brand-alt thead th {
    background: var(--ink);
    color: var(--gold-light);
    border-bottom-color: var(--ink);
    text-transform: uppercase;
}

.page-admin .admin-bank-table--striped tbody tr:nth-child(even) td {
    background: #f6f7f9;
}

.page-admin .admin-bank-section-row td {
    background: #eceff5;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #33384a;
}

.page-admin .admin-bank-table--sheet td:first-child {
    width: 50%;
}

.page-admin .admin-bank-balance-flag td {
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 12px;
    text-transform: uppercase;
    background: transparent;
    border-top: 2px solid var(--report-accent, var(--gold-dark));
}

.page-admin .admin-bank-balance-flag.is-balanced td {
    color: #1f9d57;
}

.page-admin .admin-bank-balance-flag.is-unbalanced td {
    color: #d9432f;
}

.page-admin .admin-bank-table tfoot tr.admin-bank-total-row--brand th {
    background: var(--gold-dark);
    color: #ffffff;
    border-top-color: var(--gold-dark);
}

.page-admin .admin-bank-table tfoot tr.admin-bank-total-row--brand-alt th {
    background: var(--ink);
    color: var(--gold-light);
    border-top-color: var(--ink);
}

.page-admin .amount-income {
    color: #1f9d57;
    font-weight: 600;
}

.page-admin .amount-expense {
    color: #e0483f;
    font-weight: 600;
}

.page-admin .admin-report-total-line {
    margin: 8px 0 0;
    font-size: 0.95rem;
    color: var(--bank-ink);
}

.page-admin .admin-report-net-line {
    font-size: 1.05rem;
    margin-top: 10px;
}

.page-admin .admin-report-tag {
    display: inline-block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--bank-muted);
    border: 1px solid var(--bank-line);
    border-radius: 4px;
    padding: 1px 5px;
    margin-left: 6px;
}

.page-admin .admin-report-empty-cell {
    color: var(--bank-muted);
    font-style: italic;
}

@media print {
    body.page-admin .admin-report-title-band,
    body.page-admin .admin-bank-table--brand thead th,
    body.page-admin .admin-bank-table--brand-alt thead th,
    body.page-admin .admin-bank-total-row--brand th,
    body.page-admin .admin-bank-total-row--brand-alt th,
    body.page-admin .admin-bank-section-row td,
    body.page-admin .admin-bank-table--striped tbody tr:nth-child(even) td,
    body.page-admin .admin-report-logo {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

.page-admin .admin-reports-mobile-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
}

/* Mobile Admin resilience pass: keep every operational section reachable,
   preserve table scroll affordance, and give the bottom-sheet a keyboard-safe
   touch target. These rules are presentation-only. */
@media (max-width: 760px) {
    body.page-admin.admin-section-deliveries,
    body.page-admin.admin-section-staff {
        background: var(--bg-alt);
    }

    body.page-admin.admin-section-deliveries .page-shell,
    body.page-admin.admin-section-deliveries .site-main,
    body.page-admin.admin-section-staff .page-shell,
    body.page-admin.admin-section-staff .site-main,
    body.page-admin.admin-section-deliveries .admin-shell,
    body.page-admin.admin-section-staff .admin-shell {
        min-height: 0;
        height: auto;
        background: var(--bg-alt);
        padding-top: 0;
    }

    body.page-admin .admin-deliveries-mobile-shell,
    body.page-admin .admin-staff-mobile-shell {
        display: block;
        background: var(--bg-alt);
        padding-bottom: 0;
    }

    body.page-admin .admin-deliveries-mobile-shell .admin-mobile-stats,
    body.page-admin .admin-staff-mobile-shell .admin-mobile-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-admin .admin-deliveries-mobile-shell + .container,
    body.page-admin .admin-staff-mobile-shell + .container {
        margin-top: 14px;
    }

    body.page-admin .admin-section-head {
        align-items: flex-start;
        gap: 10px;
    }

    body.page-admin .admin-section-head > div {
        min-width: 0;
    }

    body.page-admin .admin-section-head h2,
    body.page-admin .admin-section-head h3,
    body.page-admin .admin-section-head .eyebrow {
        overflow-wrap: anywhere;
    }

    body.page-admin .admin-section-head > .btn,
    body.page-admin .admin-section-head > a.btn {
        flex: 0 0 auto;
        max-width: 48%;
        white-space: normal;
        text-align: center;
    }

    body.page-admin .admin-table-wrap {
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-color: rgba(141, 107, 49, 0.55) transparent;
    }

    body.page-admin .admin-table th,
    body.page-admin .admin-table td {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    body.page-admin .admin-table .table-actions {
        min-width: 112px;
    }

    body.page-admin .admin-table .table-actions .btn,
    body.page-admin .admin-table .table-actions a.btn {
        min-height: 40px;
        white-space: nowrap;
    }

    body.page-admin .admin-notifications-mobile-only .admin-notification-tools {
        margin-bottom: 14px;
    }

    /* Alerts use the shared three-column feed card class, but their direct
       children are a heading, message, and delivery metadata rather than the
       icon/copy/meta structure used elsewhere. Keep that content in one full
       width column so long alert messages never collapse at phone widths. */
    body.page-admin .admin-notifications-mobile-only .admin-notification-card.admin-mobile-feed-item {
        grid-template-columns: minmax(0, 1fr);
        align-items: stretch;
        gap: 8px;
    }

    body.page-admin .admin-notifications-mobile-only .admin-notification-card.admin-mobile-feed-item > * {
        grid-column: 1;
        min-width: 0;
    }

    body.page-admin .admin-notification-card .admin-order-head {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 8px;
    }

    body.page-admin .admin-notification-card .admin-order-head strong,
    body.page-admin .admin-notification-card p,
    body.page-admin .admin-notification-card small {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    body.page-admin .admin-mobile-more-close,
    body.page-admin .admin-mobile-more-store {
        min-height: 44px;
    }

    body.page-admin .admin-mobile-more-close {
        width: 44px;
        height: 44px;
    }

    body.page-admin .admin-mobile-more-panel:focus-visible,
    body.page-admin .admin-mobile-more-close:focus-visible,
    body.page-admin .admin-mobile-more-tile:focus-visible,
    body.page-admin .admin-mobile-nav-link:focus-visible {
        outline: 3px solid var(--gold-dark);
        outline-offset: 3px;
    }
}

@media (max-width: 1059px) {
    body.page-admin {
        --admin-mobile-nav-clearance: calc(78px + var(--admin-mobile-nav-inset));
    }

    body.page-admin .admin-mobile-nav-link {
        min-height: 44px;
    }
}

.page-admin .admin-mobile-tab.is-ledger {
    border-color: rgba(199, 162, 90, 0.35);
}

@media print {
    body.page-admin .admin-shell,
    body.page-admin .admin-bank-statement {
        background: #fff;
        box-shadow: none;
    }

    body.page-admin .admin-desktop-rail,
    body.page-admin .admin-hero-topbar,
    body.page-admin .admin-finance-toolbar,
    body.page-admin .admin-finance-tabs,
    body.page-admin .admin-mobile-bottom-nav,
    body.page-admin .no-print {
        display: none !important;
    }

    body.page-admin .admin-bank-statement {
        border: none;
        padding: 0;
    }

    body.page-admin .admin-bank-table {
        font-size: 10pt;
    }
}

@media (max-width: 760px) {
    .page-admin .admin-bank-statement {
        padding: 18px 16px;
    }

    .page-admin .admin-bank-statement-header {
        gap: 14px;
    }

    .page-admin .admin-bank-statement-meta {
        gap: 12px 16px;
    }

    .page-admin .admin-bank-statement-mobile .admin-bank-table td:last-child,
    .page-admin .admin-bank-statement-mobile .admin-bank-table th:last-child {
        width: 1%;
        white-space: nowrap;
    }

    .page-admin .admin-bank-statement-mobile .admin-bank-table .btn-xs {
        white-space: nowrap;
    }
}

/* Account mobile dashboard — Richlance-style hero shell (customer) */
@media (max-width: 1180px) {
    body.page-account {
        background: var(--bg-alt);
    }

    body.page-account .site-main {
        padding-top: 0;
        padding-bottom: calc(112px + env(safe-area-inset-bottom, 0px));
        background: var(--bg-alt);
    }

    body.page-account .account-desktop-only {
        display: none !important;
        height: 0 !important;
        overflow: hidden;
        margin: 0 !important;
        padding: 0 !important;
        border: 0;
        visibility: hidden;
        pointer-events: none;
    }

    body.page-account .account-mobile-shell,
    body.page-account .account-mobile-only {
        display: block;
    }

    body.page-account .account-mobile-shell {
        background: var(--bg-alt);
        padding-bottom: 0;
    }

    body.page-account .account-mobile-only {
        padding-bottom: 8px;
    }

    body.page-account .account-mobile-hero {
        display: block;
        position: relative;
        overflow: hidden;
        margin: 0 0 12px;
        border-radius: 0 0 28px 28px;
        color: #fff8ee;
        box-shadow: 0 18px 40px rgba(29, 23, 17, 0.14);
        background:
            linear-gradient(180deg, rgba(13, 10, 8, 0.42) 0%, rgba(29, 23, 17, 0.78) 56%, rgba(29, 23, 17, 0.9) 100%),
            radial-gradient(circle at 88% 8%, rgba(199, 162, 90, 0.32), transparent 42%),
            var(--account-hero-image) center top / cover no-repeat;
    }

    body.page-account .account-mobile-hero-shade {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 85% 10%, rgba(255, 248, 238, 0.14), transparent 42%);
        pointer-events: none;
    }

    body.page-account .account-mobile-hero-content {
        position: relative;
        z-index: 1;
        padding: 18px 18px 22px;
    }

    body.page-account .account-mobile-hero-top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 14px;
    }

    body.page-account .account-mobile-hero-greeting {
        display: grid;
        gap: 6px;
    }

    body.page-account .account-mobile-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.68rem;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        opacity: 0.92;
    }

    body.page-account .account-mobile-hero-name {
        margin: 0;
        font-family: var(--font-heading);
        font-size: clamp(1.55rem, 6vw, 2rem);
        line-height: 1.12;
        color: #fff8ee;
    }

    body.page-account .account-mobile-date-chip {
        flex-shrink: 0;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.14);
        font-size: 0.72rem;
        font-weight: 900;
        white-space: nowrap;
    }

    body.page-account .account-mobile-hero-label {
        margin: 0 0 4px;
        font-size: 0.82rem;
        opacity: 0.86;
    }

    body.page-account .account-mobile-hero-balance {
        margin: 0 0 6px;
        font-family: var(--font-heading);
        font-size: clamp(1.9rem, 8vw, 2.35rem);
        font-weight: 700;
        line-height: 1.05;
        font-variant-numeric: tabular-nums;
    }

    body.page-account .account-mobile-hero-meta {
        margin: 0 0 14px;
        font-size: 0.82rem;
        line-height: 1.45;
        opacity: 0.88;
    }

    body.page-account .account-mobile-hero-guest .account-mobile-hero-meta {
        margin-bottom: 0;
    }

    body.page-account .account-mobile-hero-actions {
        display: grid;
        gap: 8px;
    }

    body.page-account .account-mobile-hero-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 44px;
        padding: 0 18px;
        border-radius: 12px;
        background: #fff8ee;
        color: var(--gold-dark);
        font-size: 0.88rem;
        font-weight: 800;
        text-decoration: none;
        width: 100%;
    }

    body.page-account .account-mobile-hero-cta-alert {
        background: rgba(199, 162, 90, 0.22);
        border: 1px solid rgba(228, 199, 132, 0.42);
        color: #fff8ee;
    }

    body.page-account .account-mobile-stats {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        margin: 0 14px 14px;
    }

    body.page-account .account-mobile-stat {
        display: grid;
        gap: 2px;
        justify-items: center;
        padding: 10px 6px;
        border-radius: 16px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.92);
        box-shadow: var(--shadow-soft);
        text-align: center;
    }

    body.page-account a.account-mobile-stat {
        color: inherit;
        text-decoration: none;
    }

    body.page-account a.account-mobile-stat:active {
        transform: scale(0.98);
    }

    body.page-account .account-mobile-stat strong {
        font-family: var(--font-heading);
        font-size: 1.05rem;
        line-height: 1.1;
        color: var(--gold-dark);
    }

    body.page-account .account-mobile-stat span {
        color: var(--muted);
        font-size: 0.62rem;
        font-weight: 900;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    body.page-account .account-mobile-actions {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
        margin: 0 14px 14px;
    }

    body.page-account .account-mobile-action {
        display: grid;
        gap: 6px;
        align-items: center;
        justify-items: center;
        min-height: 68px;
        padding: 10px 8px;
        border-radius: 14px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: var(--shadow-soft);
        color: var(--ink);
        font-size: 0.68rem;
        font-weight: 800;
        text-align: center;
        text-decoration: none;
    }

    body.page-account .account-mobile-action .icon {
        color: var(--gold-dark);
        width: 1rem;
        height: 1rem;
    }

    body.page-account .account-mobile-panel {
        display: block;
        margin: 0 14px 12px;
        border-radius: 16px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.94);
        box-shadow: var(--shadow-soft);
        overflow: hidden;
    }

    body.page-account .account-mobile-panel-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--ink);
        cursor: pointer;
        text-align: left;
    }

    body.page-account .account-mobile-panel-title {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 700;
    }

    body.page-account .account-mobile-panel-meta {
        color: var(--muted);
        font-size: 0.72rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    body.page-account .account-mobile-panel-head::after {
        content: '−';
        color: var(--gold-dark);
        font-size: 1.2rem;
        font-weight: 700;
        line-height: 1;
    }

    body.page-account .account-mobile-panel-collapsible.is-collapsed .account-mobile-panel-head::after {
        content: '+';
    }

    body.page-account .account-mobile-panel-collapsible.is-collapsed .account-mobile-panel-body {
        display: none;
    }

    body.page-account .account-mobile-panel-body {
        padding: 0 16px 16px;
    }

    body.page-account .account-mobile-panel-link {
        display: block;
        width: 100%;
        margin-top: 10px;
    }

    body.page-account .account-mobile-feed {
        display: grid;
        gap: 8px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    body.page-account .account-mobile-feed-item {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 10px;
        align-items: center;
        padding: 12px;
        border-radius: 14px;
        border: 1px solid rgba(29, 23, 17, 0.06);
        background: rgba(255, 250, 244, 0.92);
        color: inherit;
        text-decoration: none;
    }

    body.page-account .account-mobile-feed-icon {
        display: grid;
        place-items: center;
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(199, 162, 90, 0.12);
        color: var(--gold-dark);
    }

    body.page-account .account-mobile-feed-copy {
        display: grid;
        gap: 2px;
        min-width: 0;
    }

    body.page-account .account-mobile-feed-copy strong {
        font-size: 0.88rem;
        min-width: 0;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    body.page-account .account-mobile-feed-copy span {
        color: var(--muted);
        font-size: 0.74rem;
    }

    body.page-account .account-mobile-feed-meta {
        display: grid;
        gap: 4px;
        justify-items: end;
        text-align: right;
        min-width: 0;
        max-width: 42%;
    }

    body.page-account .account-mobile-feed-meta .badge {
        max-width: 100%;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }

    body.page-account .account-mobile-feed-meta strong {
        font-size: 0.82rem;
        color: var(--gold-dark);
    }

    body.page-account .account-mobile-feed-empty {
        display: grid;
        gap: 8px;
        justify-items: center;
        padding: 18px 12px;
        text-align: center;
    }

    body.page-account .account-mobile-feed-empty span {
        color: var(--muted);
        font-size: 0.76rem;
        line-height: 1.45;
    }

    body.page-account .account-mobile-saved-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    body.page-account .account-mobile-saved-card {
        display: grid;
        gap: 6px;
        padding: 8px;
        border-radius: 14px;
        border: 1px solid rgba(29, 23, 17, 0.06);
        background: rgba(255, 250, 244, 0.92);
        color: inherit;
        text-decoration: none;
    }

    body.page-account .account-mobile-saved-card img {
        width: 100%;
        aspect-ratio: 3 / 4;
        object-fit: cover;
        border-radius: 10px;
    }

    body.page-account .account-mobile-saved-card strong {
        font-size: 0.82rem;
        line-height: 1.25;
    }

    body.page-account .account-mobile-saved-card span {
        color: var(--gold-dark);
        font-size: 0.78rem;
        font-weight: 800;
    }

    body.page-account .account-mobile-content-wrap {
        display: block;
        padding: 0 14px 12px;
    }

    body.page-account .account-mobile-content-wrap .account-app-card,
    body.page-account .account-mobile-content-wrap .info-panel,
    body.page-account .account-mobile-content-wrap .profile-card {
        margin-bottom: 12px;
        border-radius: 16px;
        border: 1px solid var(--line);
        box-shadow: var(--shadow-soft);
    }

    body.page-account .account-mobile-guest-auth {
        display: block;
        padding: 0 14px 12px;
    }

    body.page-account .account-mobile-guest-auth .auth-card {
        padding: 18px 16px 16px;
        margin-top: 2px;
        border-radius: 16px;
    }

    body.page-account .account-mobile-guest-auth .auth-card h2 {
        display: none;
    }

    body.page-account .account-mobile-guest-auth .auth-card .section-copy {
        margin: 0 0 14px;
        font-size: 0.88rem;
        line-height: 1.5;
    }

    body.page-account .account-mobile-guest-auth .auth-card .form-grid {
        gap: 12px;
    }

    body.page-account .account-mobile-guest-auth .auth-card .btn-gold,
    body.page-account .account-mobile-profile-form .btn-gold,
    body.page-account .account-mobile-content-wrap form:not(.inline-form) .btn-gold:not(.btn-xs) {
        width: 100%;
        min-height: 47px;
        margin-top: 16px;
        padding: 12px 18px;
        border-radius: 5px;
    }

    body.page-account .account-mobile-guest-auth .auth-switch-links {
        margin-top: 16px;
        padding-bottom: 4px;
    }

    body.page-account .account-mobile-auth-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    body.page-account .account-mobile-profile-form {
        border: 0;
        box-shadow: none;
        padding: 0;
        background: transparent;
    }

    body.page-account .account-mobile-logout {
        margin-top: 12px;
    }

    body.page-account .account-password-card {
        border: 0;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }
}

/* Admin Orders — compact, legible disclosure summary at phone widths. */
@media (max-width: 760px) {
    body.page-admin .admin-mobile-order-card .admin-order-card-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
        align-items: center;
        gap: 10px;
        padding: 14px 16px 12px;
        text-align: center;
    }

    body.page-admin .admin-mobile-order-card .admin-order-card-id,
    body.page-admin .admin-mobile-order-card-header-end {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        min-width: 0;
    }

    body.page-admin .admin-mobile-order-card-header-end {
        text-align: center;
    }

    body.page-admin .admin-mobile-order-card-label {
        color: rgba(29, 23, 17, 0.5);
        font-size: 0.62rem;
        font-weight: 900;
        letter-spacing: 0.08em;
        line-height: 1.2;
        text-transform: uppercase;
    }

    body.page-admin .admin-mobile-order-card .admin-order-card-id strong {
        display: block;
        max-width: 100%;
        overflow: hidden;
        color: #050505;
        font-size: clamp(0.72rem, 3.4vw, 0.82rem);
        line-height: 1.35;
        overflow-wrap: normal;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    body.page-admin .admin-mobile-order-card .admin-order-card-amount {
        font-size: 1rem;
        line-height: 1.25;
    }

    body.page-admin .admin-mobile-order-card-summary {
        display: flex;
        flex-direction: column;
        grid-column: 1;
        align-items: center;
        justify-content: center;
        gap: 9px;
        width: 100%;
        min-width: 0;
        padding-top: 9px;
        border-top: 1px solid rgba(29, 23, 17, 0.06);
    }

    body.page-admin .admin-mobile-order-card-summary .admin-order-status-badge {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    body.page-admin .admin-mobile-order-card:not(.is-expanded) .admin-order-card-meta--mobile,
    body.page-admin .admin-mobile-order-card:not(.is-expanded) .admin-order-card-controls,
    body.page-admin .admin-mobile-order-card .admin-order-card-header[aria-expanded="false"] ~ .admin-order-card-meta--mobile,
    body.page-admin .admin-mobile-order-card .admin-order-card-header[aria-expanded="false"] ~ .admin-order-card-controls {
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        border-top-color: transparent;
    }
}
