:root {
    --ivory: #fbf4ec;
    --porcelain: #fffaf4;
    --champagne: #c08a45;
    --bronze: #8d5f2b;
    --ink: #17120d;
    --muted: #6f6258;
    --line: #ead9c5;
    --shadow: 0 18px 50px rgba(81, 48, 20, .12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: Inter, system-ui, sans-serif;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 72px 1fr auto;
    grid-template-areas:
        "menu brand actions"
        "nav nav nav";
    align-items: center;
    row-gap: 12px;
    min-height: 142px;
    padding: 14px clamp(18px, 4vw, 58px) 18px;
    background: rgba(251, 244, 236, .9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(192, 138, 69, .18);
}

.site-header * {
    flex-wrap: nowrap;
}

.header-left {
    display: contents;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    min-width: 0;
}

.icon-button {
    grid-area: menu;
}

.header-actions {
    grid-area: actions;
    justify-content: flex-end;
}

.brand {
    grid-area: brand;
    justify-self: center;
}

.brand img {
    width: 118px;
    aspect-ratio: 1;
    object-fit: contain;
}

.main-nav,
.site-footer,
.currency-form {
    display: flex;
    align-items: center;
    gap: 22px;
}

.main-nav {
    grid-area: nav;
    justify-content: center;
    width: 100%;
    gap: clamp(12px, 1.7vw, 28px);
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.main-nav a,
.site-footer p {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.icon-button,
.icon-link,
.currency-form select {
    border: 1px solid transparent;
    background: transparent;
    min-width: 38px;
    min-height: 38px;
    color: var(--ink);
    font: inherit;
}

.currency-picker {
    position: relative;
}

.currency-picker summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    min-width: 130px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--porcelain);
    cursor: pointer;
    list-style: none;
    font-weight: 600;
}

.currency-picker summary::-webkit-details-marker {
    display: none;
}

.currency-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 60;
    min-width: 170px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 6px;
}

.currency-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    font-weight: 600;
}

.currency-menu a.active,
.currency-menu a:hover {
    background: var(--ivory);
    color: var(--bronze);
}

.flag {
    display: inline-block;
    width: 22px;
    height: 15px;
    border-radius: 2px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
    flex: 0 0 auto;
}

.flag-gbp {
    background:
        linear-gradient(33deg, transparent 0 42%, #fff 42% 47%, #c8102e 47% 53%, #fff 53% 58%, transparent 58%),
        linear-gradient(147deg, transparent 0 42%, #fff 42% 47%, #c8102e 47% 53%, #fff 53% 58%, transparent 58%),
        linear-gradient(90deg, transparent 0 42%, #fff 42% 46%, #c8102e 46% 54%, #fff 54% 58%, transparent 58%),
        linear-gradient(0deg, transparent 0 36%, #fff 36% 43%, #c8102e 43% 57%, #fff 57% 64%, transparent 64%),
        #012169;
}

.flag-usd {
    background: repeating-linear-gradient(0deg,#b22234 0 2px,#fff 2px 4px);
    position: relative;
}

.flag-usd::before {
    content: "";
    display: block;
    width: 10px;
    height: 8px;
    background: #3c3b6e;
}

.flag-eur {
    background: #003399;
    position: relative;
}

.flag-eur::before {
    content: "★";
    color: #ffcc00;
    font-size: 9px;
    position: absolute;
    left: 7px;
    top: 1px;
}

.flag-cad {
    background: linear-gradient(90deg,#d52b1e 0 25%,#fff 25% 75%,#d52b1e 75%);
}

.flag-ngn {
    background: linear-gradient(90deg,#008751 0 33.33%,#fff 33.33% 66.66%,#008751 66.66%);
}

.wide-thumb {
    width: min(520px, 100%);
    max-height: 260px;
    object-fit: cover;
}

.flag-eur::before {
    content: "*" !important;
}

/* Keep mega menus inside the viewport by anchoring them to the whole nav, not the hovered label. */
body .main-nav {
    position: relative !important;
}

body .has-mega {
    position: static !important;
}

body .mega-menu {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: min(1040px, calc(100vw - 48px)) !important;
    max-height: min(560px, calc(100vh - 210px)) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.bundle-features {
    width: min(1220px, calc(100% - 36px));
    margin: -24px auto 64px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.bundle-features > div {
    background: var(--porcelain);
    border: 1px solid var(--line);
    padding: clamp(22px, 3vw, 34px);
}

.bundle-features h2 {
    margin: 0 0 16px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(26px, 2.4vw, 36px);
    line-height: 1;
    color: var(--bronze);
    text-transform: uppercase;
}

.bundle-features p,
.bundle-features li {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.bundle-features ul {
    margin: 0;
    padding-left: 18px;
}

.variation-summary {
    margin: 24px 0;
    padding: 20px;
    border: 1px solid var(--line);
    background: #fffaf4;
}

.variation-summary h2 {
    margin: 0 0 14px;
    font-size: 22px;
}

.variation-summary article {
    padding: 12px 0;
    border-top: 1px solid var(--line);
}

.variation-summary article:first-of-type {
    border-top: 0;
}

.variation-summary span {
    display: inline-flex;
    margin: 6px 10px 0 0;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 900px) {
    .bundle-features {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }
}

/* Final viewport-safe menu and product detail polish. */
body .main-nav {
    position: relative !important;
}

body .has-mega {
    position: static !important;
}

body .mega-menu {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: min(1040px, calc(100vw - 48px)) !important;
    max-height: min(560px, calc(100vh - 210px)) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.bundle-features {
    width: min(1220px, calc(100% - 36px));
    margin: -24px auto 64px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.bundle-features > div {
    background: var(--porcelain);
    border: 1px solid var(--line);
    padding: clamp(22px, 3vw, 34px);
}

.bundle-features h2 {
    margin: 0 0 16px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(26px, 2.4vw, 36px);
    line-height: 1;
    color: var(--bronze);
    text-transform: uppercase;
}

.bundle-features p,
.bundle-features li {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.bundle-features ul {
    margin: 0;
    padding-left: 18px;
}

.variation-summary {
    margin: 24px 0;
    padding: 20px;
    border: 1px solid var(--line);
    background: #fffaf4;
}

.variation-summary h2 {
    margin: 0 0 14px;
    font-size: 22px;
}

.variation-summary article {
    padding: 12px 0;
    border-top: 1px solid var(--line);
}

.variation-summary article:first-of-type {
    border-top: 0;
}

.variation-summary span {
    display: inline-flex;
    margin: 6px 10px 0 0;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 900px) {
    body .mega-menu {
        position: fixed !important;
        left: 12px !important;
        right: 12px !important;
        top: 132px !important;
        transform: none !important;
        width: auto !important;
        grid-template-columns: 1fr !important;
        max-height: 70vh !important;
    }

    .bundle-features {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }
}

.icon-button,
.icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    position: relative;
}

.icon-button svg,
.icon-link svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-link:first-of-type svg {
    fill: none;
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--champagne);
    color: #fff;
    font-size: 11px;
    line-height: 18px;
    font-weight: 700;
}

.currency-form select {
    border-color: var(--line);
    border-radius: 999px;
    padding: 8px 16px;
    background: var(--porcelain);
    min-width: 150px;
}

.currency-form::before {
    display: none !important;
    content: none !important;
}

.hero {
    position: relative;
    min-height: min(720px, calc(100vh - 74px));
    overflow: hidden;
    display: grid;
    align-items: center;
    background: #f3e5d8;
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    transition: opacity .5s ease;
}

.hero-slide.active,
.hero-slide:first-child {
    opacity: 1;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-copy {
    position: relative;
    max-width: 600px;
    margin-left: clamp(22px, 8vw, 130px);
    padding: 44px 0 120px;
}

.hero-copy p,
.eyebrow {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0;
}

.hero h1,
.page-intro h1 {
    margin: 0 0 22px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 500;
    line-height: .88;
    color: var(--bronze);
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(46px, 8vw, 104px);
}

.page-intro h1 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: .95;
}

.product-panel h1,
.auth-shell h1,
.admin-content h1 {
    margin: 0 0 18px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 500;
    line-height: 1;
    color: var(--bronze);
    text-transform: uppercase;
}

.hero h1 span,
.text-panel h2 span {
    display: block;
    color: var(--ink);
    font-style: italic;
    text-transform: none;
}

.gold-button,
.pill-button,
.outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 28px;
    border: 1px solid var(--champagne);
    border-radius: 0;
    background: var(--champagne);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
}

.outline-button {
    background: transparent;
    color: var(--bronze);
}

.pill-button {
    border-radius: 999px;
    gap: 18px;
}

.trust-strip {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 32px));
    margin: -74px auto 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(255, 250, 244, .94);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.trust-strip article {
    padding: 24px 18px;
    text-align: center;
    border-right: 1px solid var(--line);
}

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

.trust-strip span {
    display: block;
    color: var(--champagne);
    font-size: 34px;
}

.trust-strip h2,
.product-card h3,
.line-item h2 {
    margin: 8px 0;
    font-size: 13px;
    text-transform: uppercase;
}

.trust-strip p,
.text-panel p,
.product-panel p,
.summary-panel small,
.empty-state {
    color: var(--muted);
    line-height: 1.7;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr;
    min-height: 440px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.editorial-grid > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.text-panel {
    padding: clamp(28px, 5vw, 70px);
    background: var(--porcelain);
}

.text-panel h2,
.section-heading h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(34px, 4vw, 58px);
    line-height: .95;
    margin: 0 0 22px;
    text-transform: uppercase;
}

.products-section,
.page-intro,
.checkout-shell,
.product-detail,
.auth-shell,
.admin-shell {
    width: min(1220px, calc(100% - 36px));
    margin: 58px auto;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 22px;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    gap: 12px;
    align-items: center;
}

.search-form .gold-button {
    width: 100%;
}

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

.product-card {
    background: var(--porcelain);
    border: 1px solid var(--line);
}

.product-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.product-card div {
    padding: 18px;
}

.swatches,
.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.swatches span,
.color-options span {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .2);
}

.product-detail,
.checkout-shell,
.admin-shell {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 34px;
}

.product-detail > img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
}

.product-panel,
.form-panel,
.summary-panel,
.admin-content {
    background: var(--porcelain);
    border: 1px solid var(--line);
    padding: clamp(24px, 4vw, 46px);
}

.stacked-form,
.form-panel,
.line-items {
    display: grid;
    gap: 16px;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 0 13px;
    font: inherit;
}

textarea {
    padding-top: 12px;
    resize: vertical;
}

fieldset {
    border: 1px solid var(--line);
    padding: 16px;
}

.line-item,
.metric-grid {
    display: grid;
    gap: 16px;
}

.line-item {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 18px;
    background: var(--porcelain);
    border: 1px solid var(--line);
}

.summary-panel {
    align-self: start;
}

.narrow {
    max-width: 560px;
    margin-inline: auto;
}

.auth-shell {
    min-height: 48vh;
    display: grid;
    place-items: center;
}

.auth-shell .form-panel {
    padding: 32px;
}

.check-row,
.inline-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-row input {
    width: auto;
    min-height: auto;
}

.admin-shell {
    grid-template-columns: 260px 1fr;
    align-items: start;
}

.wide-admin {
    width: min(1480px, calc(100% - 36px));
}

.admin-nav {
    display: grid;
    align-content: start;
    gap: 10px;
    position: sticky;
    top: 132px;
    padding: 16px;
    background: #181512;
    border: 1px solid #2a241f;
    box-shadow: var(--shadow);
}

.admin-nav a {
    padding: 14px 16px;
    background: transparent;
    color: #f7ead9;
    border: 1px solid rgba(255,255,255,.08);
    font-weight: 700;
}

.admin-nav a:hover {
    background: rgba(192, 138, 69, .18);
    border-color: var(--champagne);
    color: #fff;
}

.metric-grid article {
    padding: 14px 16px;
    background: var(--porcelain);
    border: 1px solid var(--line);
}

.admin-list a:hover,
.admin-list a.active {
    border-color: var(--champagne);
    color: var(--bronze);
}

.admin-page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.admin-kicker {
    margin: 0 0 6px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    color: var(--muted);
}

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

.admin-card {
    background: var(--porcelain);
    border: 1px solid var(--line);
    padding: 18px;
    box-shadow: 0 10px 28px rgba(81, 48, 20, .08);
}

.action-card {
    display: block;
}

.action-card span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.action-card strong {
    display: block;
    font-size: 22px;
    margin-bottom: 10px;
}

.action-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.admin-banner-preview {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    border: 1px solid var(--line);
    margin-bottom: 14px;
}

.admin-editor-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 22px;
    align-items: start;
}

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

.admin-list a,
.danger-panel {
    padding: 13px 14px;
    border: 1px solid var(--line);
    background: #fff;
}

.admin-edit-panels {
    display: grid;
    gap: 18px;
}

.compact-admin-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 10px;
    align-items: end;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

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

.variation-admin-form {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
}

.compact-admin-form .check-row {
    min-height: 46px;
}

.color-admin-form {
    grid-template-columns: 1fr 120px 140px 150px;
}

.admin-thumb {
    width: 160px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--line);
}

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

.metric-grid span {
    display: block;
    color: var(--muted);
    margin-bottom: 8px;
}

.metric-grid strong {
    font-size: 26px;
}

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

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

th,
td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.flash {
    width: min(900px, calc(100% - 36px));
    margin: 18px auto;
    padding: 14px 18px;
    background: #fff6e8;
    border: 1px solid var(--line);
}

.flash-error {
    background: #fff0f0;
}

.inline-error {
    color: #8a1f1f;
    background: #fff0f0;
    border: 1px solid #efc7c7;
    padding: 12px;
}

.site-footer {
    justify-content: space-between;
    padding: 26px clamp(18px, 4vw, 58px);
    border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
    .site-header {
        grid-template-columns: 48px 1fr auto;
        min-height: 98px;
    }

    .main-nav {
        justify-content: flex-start;
    }

    .brand img {
        width: 90px;
    }

    .header-actions {
        gap: 8px;
    }

    .currency-form select {
        min-width: 118px;
        max-width: 128px;
        padding-inline: 10px;
        font-size: 12px;
    }

    .trust-strip,
    .editorial-grid,
    .product-grid,
    .product-detail,
    .checkout-shell,
    .admin-shell,
    .metric-grid,
    .admin-card-grid,
    .admin-editor-grid,
    .compact-admin-form,
    .color-admin-form,
    .banner-admin-form,
    .variation-admin-form {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        margin-top: 0;
    }

    .trust-strip article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .hero-copy {
        margin: 0;
        padding: 40vh 22px 80px;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .search-form {
        grid-template-columns: 1fr;
    }
}

/* Native details-based mega menu. Closed menus stay hidden even if hover CSS is ignored. */
.has-mega {
    position: relative;
}

.has-mega summary {
    list-style: none;
    cursor: pointer;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.has-mega summary::-webkit-details-marker {
    display: none;
}

.has-mega:not([open]) .mega-menu {
    display: none !important;
}

.has-mega[open] .mega-menu {
    display: grid !important;
}

body .site-header .header-actions {
    margin-left: auto !important;
    justify-content: flex-end !important;
}

/* Final type scale clamps for non-home pages. */
body:not(.home-page) .auth-shell h1,
body:not(.home-page) .admin-content h1,
body:not(.home-page) .product-panel h1 {
    font-size: 40px !important;
    line-height: 1.02 !important;
}

body:not(.home-page) .page-intro h1 {
    font-size: clamp(34px, 4vw, 58px) !important;
    line-height: 1 !important;
}

@media (max-width: 900px) {
    body:not(.home-page) .auth-shell h1,
    body:not(.home-page) .admin-content h1,
    body:not(.home-page) .product-panel h1 {
        font-size: 32px !important;
    }
}

/* Luxury mega-menu header override. */
body .site-header {
    display: block !important;
    min-height: 132px !important;
    padding: 14px clamp(18px, 4vw, 58px) 0 !important;
}

body .header-top {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

body .site-header .brand {
    position: static !important;
    transform: none !important;
    margin: 0 auto !important;
}

body .site-header .header-actions {
    position: absolute !important;
    right: clamp(18px, 4vw, 58px) !important;
    top: 32px !important;
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
}

body .main-nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: clamp(16px, 2vw, 34px) !important;
    width: 100% !important;
    min-height: 52px !important;
    margin-top: 10px !important;
    border-top: 1px solid rgba(192, 138, 69, .16) !important;
    position: relative !important;
    overflow: visible !important;
}

.nav-item {
    min-height: 52px;
    display: flex;
    align-items: center;
}

.has-mega > a {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
}

.mega-menu {
    position: absolute;
    left: 50%;
    top: 52px;
    transform: translateX(-50%);
    display: none;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 26px;
    width: min(980px, calc(100vw - 56px));
    padding: 28px;
    background: #fffaf4;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 80;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
    display: grid;
}

.mega-menu h3 {
    margin: 0 0 12px;
    color: var(--bronze);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 24px;
    line-height: 1;
}

.mega-menu a {
    display: block;
    padding: 7px 0;
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
    color: var(--ink);
}

@media (max-width: 900px) {
    body .site-header {
        min-height: 132px !important;
    }

    body .site-header .header-actions {
        position: static !important;
        justify-content: center !important;
        margin-top: 8px !important;
    }

    body .main-nav {
        justify-content: flex-start !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        padding-bottom: 4px !important;
    }

    .mega-menu {
        position: fixed;
        left: 12px;
        right: 12px;
        top: 132px;
        transform: none;
        width: auto;
        grid-template-columns: 1fr;
        max-height: 70vh;
        overflow-y: auto;
    }
}
