/* ==========================================================================
   Tokens / Base
   ========================================================================== */

:root {
    --black: #050505;
    --ink: #111111;
    --graphite: #1b1b1b;
    --muted: #6e6e6e;
    --line: #dedbd5;
    --soft-line: rgba(255, 255, 255, 0.14);
    --paper: #f7f5f0;
    --paper-2: #eeece6;
    --white: #ffffff;
    --metal: #a6a09a;
    --success: #273326;
    --focus: #7d786f;
    --max: 1320px;
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open,
body.search-open,
body.age-locked {
    overflow: hidden;
}

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

button,
a,
input,
select,
textarea {
    touch-action: manipulation;
}

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

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

/* ==========================================================================
   Typography
   ========================================================================== */

.skip-link {
    position: fixed;
    z-index: 50;
    top: 10px;
    left: 10px;
    transform: translateY(-140%);
    background: var(--white);
    color: var(--black);
    padding: 10px 14px;
    border: 1px solid var(--line);
}

.skip-link:focus {
    transform: translateY(0);
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
    position: fixed;
    z-index: 30;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 clamp(18px, 4vw, 42px);
    color: var(--white);
    mix-blend-mode: normal;
    transition:
        background 220ms ease,
        border-color 220ms ease,
        color 220ms ease;
}

.site-header.is-solid,
.site-header.on-light {
    background: rgba(5, 5, 5, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.brand {
    justify-self: start;
    font-size: 13px;
    letter-spacing: 0.38em;
    font-weight: 600;
}

.nav-links {
    justify-self: center;
    display: flex;
    gap: clamp(22px, 4vw, 44px);
    align-items: center;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.18em;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    opacity: 0.72;
    padding: 10px 4px;
}

.nav-links a:hover,
.nav-links a.is-active {
    opacity: 1;
}

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

.icon-button,
.cart-link,
.menu-button {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.icon-button {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition:
        background 160ms ease,
        border-color 160ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.38);
}

.icon-button.dark {
    color: var(--black);
    border-color: var(--line);
}

.cart-link {
    position: relative;
    min-width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--white);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
}

.menu-button {
    display: none;
    justify-self: end;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    place-items: center;
    gap: 5px;
}

.menu-button span {
    display: block;
    width: 16px;
    height: 1px;
    background: currentColor;
}

.mobile-menu {
    position: fixed;
    z-index: 29;
    inset: 64px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    padding: 28px;
    background: rgba(5, 5, 5, 0.96);
    color: var(--white);
    border-bottom: 1px solid var(--soft-line);
}

.mobile-menu a {
    padding: 17px 0;
    border-bottom: 1px solid var(--soft-line);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
}

.mobile-menu [data-mobile-cart-link] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-cart-count {
    position: static;
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #050505;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
}

.mobile-menu.is-open {
    display: grid;
}

/* ==========================================================================
   Overlays / Modals / Search
   ========================================================================== */

.search-drawer {
    position: fixed;
    z-index: 40;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 96px 22px 22px;
    background: rgba(5, 5, 5, 0.66);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.search-drawer.is-open {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.search-shell {
    width: min(780px, 100%);
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 10px;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 0;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translateY(-8px);
    animation: searchShellIn 180ms cubic-bezier(0.22, 0.8, 0.22, 1) forwards;
}

.search-shell label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.search-shell input {
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.96);
    height: 48px;
    padding: 0 16px;
    outline: none;
}

.search-shell input:focus {
    border-color: rgba(255, 255, 255, 0.75);
}

.search-field-icon,
.search-shell .icon-button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 48px;
    color: rgba(255, 255, 255, 0.82);
}

.search-field-icon svg,
.search-shell .icon-button svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.7;
}

.search-shell .icon-button.dark {
    width: 44px;
    height: 48px;
    border: 0;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.04);
}

.search-results {
    width: min(780px, 100%);
    max-height: 50vh;
    overflow: auto;
    background: rgba(247, 245, 240, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.16);
    margin-top: 12px;
    opacity: 0;
    transform: translateY(-4px);
    animation: searchResultsIn 160ms cubic-bezier(0.22, 0.8, 0.22, 1) 60ms forwards;
    will-change: opacity, transform;
}

.search-result {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 16px;
    align-items: center;
    padding: 14px 18px;
    border-top: 1px solid var(--line);
    transition: background 160ms ease;
}

.search-result:first-child {
    border-top: 0;
}

.search-result:hover {
    background: rgba(0, 0, 0, 0.04);
}

.search-result img {
    width: 62px;
    height: 42px;
    object-fit: contain;
    background: var(--white);
}

.search-empty {
    padding: 18px;
    color: var(--muted);
    font-size: 14px;
}

.search-results .recent-searches {
    padding: 16px 18px;
    border-bottom: 0;
    background: var(--paper);
}

.search-results .recent-searches > div {
    color: var(--muted);
}

.search-results .recent-searches button {
    border-color: var(--line);
    background: transparent;
    color: var(--ink);
}

.search-results .recent-searches > div button {
    color: var(--muted);
}

.route-progress {
    position: fixed;
    z-index: 120;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    transform: scaleX(0);
    transform-origin: left center;
    opacity: 0;
    pointer-events: none;
}

.route-progress.is-active {
    opacity: 1;
    transform: scaleX(0.72);
    transition:
        transform 220ms cubic-bezier(0.22, 0.8, 0.22, 1),
        opacity 120ms ease;
}

.route-progress.is-finishing {
    transform: scaleX(1);
    opacity: 0;
    transition:
        transform 180ms ease,
        opacity 240ms ease;
}

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

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

.age-gate {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: var(--white);
    background:
        radial-gradient(
            circle at 50% 38%,
            rgba(255, 255, 255, 0.18),
            transparent 24%
        ),
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.76),
            rgba(0, 0, 0, 0.28) 46%,
            rgba(0, 0, 0, 0.8)
        ),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.86)),
        url("assets/kyro-hero-v3.png") center / cover no-repeat,
        var(--black);
}

.age-gate.is-open {
    display: flex;
}

.age-panel {
    width: min(860px, 100%);
    padding: clamp(34px, 5vw, 68px) clamp(26px, 5vw, 72px);
    text-align: center;
    background:
        linear-gradient(145deg, rgba(14, 14, 14, 0.9), rgba(4, 4, 4, 0.74)),
        rgba(0, 0, 0, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: 0 42px 120px rgba(0, 0, 0, 0.76);
    backdrop-filter: blur(10px) saturate(0.86);
}

.age-panel h1 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.54em;
    text-indent: 0.54em;
    font-size: clamp(40px, 5.2vw, 76px);
    line-height: 0.95;
    font-weight: 400;
    color: #fff;
    text-shadow: 0 0 24px rgba(255, 255, 255, 0.16);
}

.age-panel p {
    margin: 0;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(13px, 1.3vw, 18px);
    line-height: 1.8;
    letter-spacing: 0.18em;
}

.age-panel .muted {
    margin-top: 12px;
    font-size: clamp(12px, 1.1vw, 15px);
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.54);
}

.age-panel .eyebrow {
    margin-top: 20px;
    font-size: clamp(12px, 1.15vw, 16px);
    letter-spacing: 0.44em;
    text-indent: 0.44em;
    color: rgba(255, 255, 255, 0.72);
}

.age-panel .age-statement {
    margin-top: clamp(36px, 4vw, 52px);
    color: rgba(255, 255, 255, 0.9);
}

.age-panel .micro {
    margin-top: clamp(28px, 3vw, 42px);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-indent: 0.28em;
    color: rgba(255, 255, 255, 0.68);
    text-align: center;
}

.age-panel::before,
.age-panel::after {
    content: "";
    display: block;
    height: 1px;
    background: rgba(255, 255, 255, 0.26);
    margin: 0;
}

.age-panel::before {
    margin-bottom: clamp(30px, 4vw, 52px);
}

.age-panel::after {
    margin-top: clamp(28px, 3vw, 42px);
}

.age-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 3vw, 34px);
    margin: clamp(28px, 3.4vw, 44px) auto 0;
    max-width: 620px;
}

.age-actions .button {
    min-height: 64px;
    font-size: 13px;
    letter-spacing: 0.32em;
    text-indent: 0.32em;
    border-color: rgba(255, 255, 255, 0.32);
}

.age-actions .button-light {
    box-shadow: 0 0 36px rgba(255, 255, 255, 0.1);
}

.age-actions .button-outline-dark:hover,
.age-actions .button-outline-dark:focus-visible {
    background: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Homepage
   ========================================================================== */

.hero {
    position: relative;
    min-height: min(980px, 100vh);
    display: grid;
    align-items: end;
    padding: 118px clamp(28px, 4vw, 72px) 54px;
    color: var(--white);
    overflow: hidden;
    background:
        radial-gradient(
            circle at 64% 42%,
            rgba(255, 255, 255, 0.08),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.5) 48%,
            rgba(0, 0, 0, 0.86) 100%
        ),
        url("assets/kyro-hero-texture.png") center / cover no-repeat,
        var(--black);
}

.hero::before,
.dark-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.62),
            rgba(0, 0, 0, 0.16) 54%,
            rgba(0, 0, 0, 0.46)
        ),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(100%, var(--max));
    margin: 0 auto;
}

.hero h1 {
    margin: 0;
    font-size: clamp(92px, 14vw, 178px);
    line-height: 0.82;
    font-weight: 400;
    letter-spacing: 0.28em;
}

.hero h1 span {
    display: block;
    margin-top: 30px;
    font-size: clamp(22px, 2.6vw, 36px);
    line-height: 1;
    letter-spacing: 0.58em;
    text-indent: 0.18em;
    color: rgba(255, 255, 255, 0.74);
}

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

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: clamp(86px, 14vh, 150px);
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.38);
    background: transparent;
}

.metric {
    padding: 0 clamp(28px, 4vw, 56px);
    min-height: 72px;
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.38);
}

.metric:last-child {
    border-right: 0;
}

.metric span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.48);
}

.metric strong {
    display: block;
    margin-top: 14px;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

.hero-shop {
    min-width: 350px;
    min-height: 70px;
    justify-content: space-between;
    padding: 0 38px;
    font-size: 18px;
    border-color: rgba(255, 255, 255, 0.62);
}

.button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    border: 1px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 10px;
    font-weight: 600;
    transition:
        transform 160ms ease,
        background 160ms ease,
        border-color 160ms ease,
        color 160ms ease,
        opacity 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button:disabled,
.button[disabled] {
    transform: none;
}

.button-dark {
    background: var(--black);
    color: var(--white);
}

.button.is-adding {
    animation: buttonAddPulse 320ms ease-out both;
}

.button.is-added {
    background: #2a9461;
    color: #fff;
    border-color: transparent;
}

.button-light {
    background: var(--white);
    color: var(--black);
}

.button-muted {
    background: #d9d6cf;
    color: var(--muted);
    cursor: not-allowed;
}

.coming-soon-control {
    width: 100%;
    opacity: 0.78;
}

.coming-soon-control-detail {
    min-height: 64px;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.62);
    border-color: rgba(255, 255, 255, 0.18);
}

.button-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.34);
}

.button-outline-dark {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.26);
}

.button-ghost {
    background: transparent;
    color: var(--black);
    border-color: var(--line);
}

.button-wide {
    width: 100%;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.section {
    width: calc(100% - 36px);
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(64px, 9vw, 112px) 0;
}

.section-tight {
    padding-top: clamp(36px, 6vw, 72px);
}

.section-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    gap: clamp(28px, 8vw, 90px);
    align-items: end;
    margin-bottom: 30px;
}

.featured-header {
    display: block;
    text-align: center;
}

.featured-header h2 {
    font-size: clamp(82px, 12vw, 170px);
}

.featured-subtitle {
    margin: 14px 0 34px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 13px;
}

.section-header h2,
.page-title {
    margin: 0;
    font-size: clamp(44px, 8vw, 112px);
    line-height: 0.92;
    font-weight: 400;
    letter-spacing: 0;
}

.section-header p,
.lead {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 14px;
}

.eyebrow {
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 10px;
    color: var(--muted);
}

.dark .eyebrow,
.hero .eyebrow,
.dark-page-hero .eyebrow {
    color: rgba(255, 255, 255, 0.56);
}

.micro {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
}

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

.category-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: var(--white);
}

.category-tile {
    min-height: 132px;
    padding: 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background 160ms ease;
}

.category-tile:hover,
.category-tile:focus-visible {
    background: #efede8;
}

.category-tile span {
    font-size: 10px;
    color: var(--muted);
}

.category-tile strong {
    font-size: 13px;
    line-height: 1.25;
    font-weight: 500;
}

.catalogue-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(178px, 224px);
    gap: 14px;
    margin: 0 0 24px;
    align-items: end;
}

.catalogue-search {
    position: relative;
    display: block;
}

.catalogue-search span {
    position: absolute;
    left: 18px;
    top: 50%;
    width: 22px;
    height: 22px;
    transform: translateY(-50%);
    color: var(--muted);
}

.catalogue-search svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
}

.catalogue-search input {
    width: 100%;
    padding-left: 56px;
}

.search-suggestions {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-suggestions a {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.48);
    color: var(--ink);
    font-size: 12px;
}

.search-suggestions small {
    color: var(--muted);
}

.catalogue-controls input {
    min-height: 44px;
    border: 1px solid var(--line);
    background: var(--white);
    padding: 0 14px;
    outline: none;
}

.catalogue-search input {
    padding-left: 56px;
}

.catalogue-sort {
    display: grid;
    gap: 6px;
    justify-self: end;
    width: min(224px, 100%);
}

.catalogue-sort span {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 9px;
}

.catalogue-sort select {
    min-height: 44px;
    border: 1px solid var(--line);
    background: var(--white);
    padding: 0 14px;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 10px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.filter-chip {
    min-width: 0;
    min-height: 34px;
    border: 1px solid var(--line);
    background: var(--paper);
    padding: 0 12px;
    cursor: pointer;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 9px;
    line-height: 1.25;
    white-space: normal;
    text-align: center;
    overflow-wrap: anywhere;
}

.filter-chip.is-active {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
}

.filter-chip-toggle {
    margin-left: auto;
}

.result-count {
    margin: -4px 0 18px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 10px;
}

/* ==========================================================================
   Catalogue / Products
   ========================================================================== */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.skeleton {
    animation: shimmer 1.4s ease-in-out infinite;
    background: var(--skeleton-bg, rgba(128, 128, 128, 0.15));
    border-radius: 4px;
}

.product-grid-skeleton {
    --skeleton-bg: rgba(18, 28, 36, 0.1);
}

.skeleton-card {
    min-height: 402px;
    pointer-events: none;
}

.skeleton-card-image {
    height: 234px;
    border-radius: 0;
}

.skeleton-card-body {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 22px;
}

.skeleton-card-line {
    width: 72%;
    height: 16px;
}

.skeleton-card-line.tiny {
    width: 36%;
    height: 12px;
}

.skeleton-card-line.short {
    width: 48%;
}

.skeleton-card-button {
    width: 100%;
    height: 40px;
    margin-top: 8px;
}

.product-detail-skeleton {
    --skeleton-bg: rgba(255, 255, 255, 0.12);
}

.skeleton-detail-media,
.skeleton-detail-info {
    min-height: 620px;
    display: grid;
    align-content: center;
}

.skeleton-detail-image {
    width: min(70%, 520px);
    height: min(68vh, 560px);
    margin: 0 auto;
}

.skeleton-detail-info {
    align-content: start;
    gap: 18px;
    padding-top: clamp(10px, 4vw, 58px);
}

.skeleton-title {
    width: min(82%, 560px);
    height: clamp(48px, 5vw, 76px);
}

.skeleton-chip-row {
    width: min(78%, 520px);
    height: 58px;
    margin: 10px 0 18px;
}

.skeleton-line {
    width: 100%;
    height: 42px;
}

.skeleton-line.short {
    width: 66%;
}

.skeleton-price {
    width: 38%;
    height: 58px;
    margin-top: 24px;
}

.skeleton-button {
    width: 100%;
    height: 72px;
}

.skeleton-search,
.skeleton-sort {
    height: 44px;
}

.product-card {
    min-width: 0;
    display: grid;
    grid-template-rows: auto 1fr;
    background: var(--paper);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition:
        background 160ms ease,
        transform 160ms ease;
}

.product-card:hover {
    background: #fdfcf8;
    transform: translateY(-3px);
}

.product-card.is-in-cart {
    box-shadow: inset 0 0 0 1px rgba(7, 22, 35, 0.22);
}

.product-media {
    position: relative;
    height: 234px;
    display: grid;
    place-items: center;
    padding: 20px;
    background: linear-gradient(180deg, #f8f7f3, #efede8);
    overflow: hidden;
}

.product-media img {
    width: min(100%, 240px);
    height: 180px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(1.02);
}

.render-pending {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 6px 8px;
    background: rgba(5, 5, 5, 0.78);
    color: var(--white);
    font-size: 8px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.status-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--black);
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 8px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.status-pill.soon {
    color: var(--muted);
}

.catalogue-empty-state {
    grid-column: 1 / -1;
    min-height: 320px;
    display: grid;
    place-items: center;
    justify-items: center;
    gap: 14px;
    padding: 52px 20px;
    text-align: center;
    background: var(--paper);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.catalogue-empty-state h3 {
    margin: 0;
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 400;
}

.notify-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.notify-form input {
    min-width: 0;
    min-height: 42px;
    border: 1px solid var(--line);
    background: var(--white);
    padding: 0 12px;
    font-size: 12px;
}

.notify-form .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 9px;
}

.notify-form-detail {
    grid-template-columns: minmax(0, 1fr) minmax(170px, auto);
}

.notify-form-detail input {
    min-height: 64px;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.24);
    color: var(--white);
}

.notify-confirmation {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

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

.product-category {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    min-height: 20px;
}

.product-category span,
.coa-status {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 7px;
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 0;
    min-height: 0;
    font-size: 18px;
    line-height: 1.22;
    font-weight: 500;
}

.card-price {
    margin: 0;
    color: var(--black);
    font-size: 22px;
    line-height: 1.1;
    font-weight: 500;
}

.product-meta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: end;
    color: var(--muted);
    font-size: 12px;
}

.product-meta strong {
    display: block;
    margin-top: 4px;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
}

.product-copy {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-self: end;
}

.card-actions .button.is-in-cart {
    background: transparent;
    color: var(--ink);
    border-color: rgba(7, 22, 35, 0.42);
}

.product-card.is-bundle-added {
    animation: bundleCardPulse 620ms cubic-bezier(0.22, 0.8, 0.22, 1);
}

.dark-page-hero {
    position: relative;
    min-height: 430px;
    display: grid;
    align-items: end;
    padding: 118px clamp(18px, 4vw, 56px) 46px;
    color: var(--white);
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.82)),
        url("assets/kyro-page-texture.png") center / cover no-repeat,
        var(--black);
}

.dark-page-hero.product {
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.82)),
        url("assets/kyro-page-texture.png");
}

.dark-page-hero.coa {
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.82)),
        url("assets/kyro-page-texture.png");
}

.dark-page-hero.faq {
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.82)),
        url("assets/kyro-page-texture.png");
}

.dark-page-hero.support {
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.82)),
        url("assets/kyro-page-texture.png");
}

.dark-page-hero.checkout {
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.82)),
        url("assets/kyro-page-texture.png");
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    width: min(100%, var(--max));
    margin: 0 auto;
}

.page-hero-inner .lead {
    max-width: min(620px, 100%);
}

.page-hero-inner .page-title {
    color: var(--white);
}

/* ==========================================================================
   Product Detail
   ========================================================================== */

.product-detail {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.detail-media,
.detail-info {
    background: var(--paper);
}

.detail-media {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
    padding: clamp(28px, 5vw, 58px);
}

.detail-media img {
    width: min(100%, 520px);
    max-height: 520px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.detail-info {
    padding: clamp(28px, 5vw, 58px);
}

.detail-info h1 {
    margin: 18px 0 24px;
    font-size: clamp(34px, 5vw, 72px);
    line-height: 0.98;
    font-weight: 400;
}

.data-table {
    border-top: 1px solid var(--line);
}

.data-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
}

.data-row span:first-child {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 9px;
}

.qty-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 26px 0 12px;
}

.qty-control {
    display: grid;
    grid-template-columns: 40px 44px 40px;
    height: 42px;
    border: 1px solid var(--line);
}

.qty-control button {
    border: 0;
    background: var(--white);
    cursor: pointer;
}

.qty-control output {
    display: grid;
    place-items: center;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
}

.info-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: 24px;
}

.info-panel {
    background: var(--paper);
    padding: 20px;
}

.info-panel h3 {
    margin: 0 0 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
}

.info-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 13px;
}

.coa-grid,
.faq-layout,
.support-layout,
.checkout-layout {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

/* ==========================================================================
   COA / Certificates
   ========================================================================== */

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

.coa-item {
    min-height: 164px;
    background: var(--paper);
    padding: 18px;
    display: grid;
    align-content: space-between;
    gap: 18px;
    transition:
        opacity 220ms ease,
        background 220ms ease,
        transform 220ms ease;
}

.coa-item h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 500;
}

.coa-meta {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
}

.coa-item.is-coming-soon {
    background: #eceae4;
    opacity: 0.58;
}

.coa-item:hover {
    transform: translateY(-3px);
}

.coa-variant-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.coa-variant-row button {
    min-height: 32px;
    padding: 7px 9px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
    transition:
        background 180ms ease,
        color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.coa-variant-row button:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 0, 0, 0.32);
}

.coa-variant-row button.is-active {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.coa-variant-row button.is-disabled:not(.is-active) {
    color: rgba(7, 22, 35, 0.35);
    background: #dfddd7;
}

.coa-variant-row span {
    display: block;
    font-size: 11px;
    line-height: 1.2;
}

.coa-meta.is-refreshing {
    animation: resultsIn 220ms ease both;
}

.faq-layout {
    grid-template-columns: 260px 1fr;
}

.faq-side,
.faq-main,
.support-card,
.checkout-card {
    background: var(--paper);
}

.faq-side {
    padding: 22px;
}

.faq-side button {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    display: block;
}

.support-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
}

.support-card {
    padding: clamp(24px, 4vw, 44px);
}

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

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

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

.field label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}

.field input,
.field textarea,
.field select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    background: var(--white);
    padding: 12px;
    outline: none;
}

.field textarea {
    min-height: 136px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--black);
}

.checkout-layout {
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
}

.checkout-card {
    padding: clamp(22px, 4vw, 38px);
}

.cart-list {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.cart-item {
    display: grid;
    grid-template-columns: 78px 1fr auto;
    gap: 16px;
    align-items: center;
    background: var(--paper);
    padding: 12px;
}

.cart-item img {
    width: 78px;
    height: 58px;
    object-fit: contain;
    background: var(--white);
    mix-blend-mode: multiply;
}

.cart-item h3 {
    margin: 0 0 5px;
    font-size: 14px;
}

.cart-item p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.remove-button {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    width: 34px;
    height: 34px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.summary-line strong {
    color: var(--black);
    font-weight: 500;
}

.checkbox-row {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    margin: 18px 0;
    color: var(--muted);
    line-height: 1.5;
    font-size: 13px;
}

.empty-state {
    min-height: 260px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 40px 20px;
    background: var(--paper);
    border: 1px solid var(--line);
}

.empty-state h2 {
    margin: 0 0 10px;
    font-weight: 400;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-top: 1px solid var(--soft-line);
    background-color: var(--black);
}

.footer-brand,
.footer-grid > div {
    padding: clamp(28px, 5vw, 54px);
    border-right: 1px solid var(--soft-line);
}

.footer-brand h2 {
    margin: 0 0 22px;
    letter-spacing: 0.38em;
    font-size: 24px;
    font-weight: 500;
}

.footer-brand p,
.footer-grid p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.55;
    font-size: 13px;
}

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

.footer-grid h3 {
    margin: 0 0 20px;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-grid a {
    display: block;
    margin: 11px 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
}

.page-loading {
    width: min(220px, 34vw);
    height: 2px;
    margin: 45vh auto;
    overflow: hidden;
    background: rgba(5, 5, 5, 0.08);
}

.page-loading::before {
    content: "";
    display: block;
    width: 42%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(5, 5, 5, 0.46),
        transparent
    );
    animation: pageLoadingSweep 1200ms ease-in-out infinite;
}

.cookie-banner {
    position: fixed;
    z-index: 70;
    left: clamp(16px, 3vw, 42px);
    right: clamp(16px, 3vw, 42px);
    bottom: clamp(16px, 3vw, 32px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 18px 20px;
    color: var(--white);
    background: rgba(5, 5, 5, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(14px);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner p {
    margin: 0;
    max-width: 820px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.65;
}

.cookie-banner a {
    color: var(--white);
    border-bottom: 1px solid currentColor;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cookie-actions .button {
    min-width: 112px;
    padding: 13px 18px;
}

.cookie-banner .button-outline-dark {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.42);
    background: transparent;
}

.cookie-banner .button-outline-dark:hover,
.cookie-banner .button-outline-dark:focus-visible {
    color: var(--black);
    background: var(--white);
}

.toast {
    position: fixed;
    z-index: 60;
    right: 22px;
    bottom: 22px;
    max-width: 340px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: space-between;
    background: var(--black);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transform: translateY(140%);
    opacity: 0;
    transition:
        transform 180ms ease,
        opacity 180ms ease;
    font-size: 12px;
}

.toast span {
    line-height: 1.5;
}

.toast button {
    border: 0;
    border-bottom: 1px solid currentColor;
    padding: 0;
    background: transparent;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 10px;
    cursor: pointer;
    transition:
        opacity 140ms ease,
        transform 140ms ease;
}

.toast button:hover {
    opacity: 0.72;
}

.toast button:active {
    transform: translateY(1px);
}

.toast.is-visible {
    transform: translateY(0);
    opacity: 1;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 3px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

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

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

    .checkout-layout,
    .support-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .nav-links,
    .header-actions {
        display: none;
    }

    .menu-button {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-color: rgba(255, 255, 255, 0.34);
    }

    .hero {
        min-height: 760px;
        padding-top: 94px;
    }

    .hero h1 {
        letter-spacing: 0.12em;
    }

    .hero h1 span {
        letter-spacing: 0.36em;
    }

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

    .hero-shop {
        min-width: 0;
        width: min(100%, 320px);
        min-height: 56px;
        padding: 0 22px;
        font-size: 12px;
    }

    .hero-metrics,
    .section-header,
    .product-detail,
/* ==========================================================================
   FAQ / Support
   ========================================================================== */

.faq-layout,
    .site-footer,
    .footer-grid,
    .info-panels {
        grid-template-columns: 1fr;
    }

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

    .detail-media {
        min-height: 360px;
    }

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

    .hero-metrics {
        width: 100%;
        gap: 0;
        margin-top: 56px;
    }

    .metric {
        min-height: 52px;
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }

    .metric:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 560px) {
    .section {
        width: calc(100% - 24px);
        max-width: var(--max);
    }

    .product-grid,
    .coa-grid,
    .category-strip,
    .catalogue-controls {
        grid-template-columns: 1fr;
    }

    .filter-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .filter-chip {
        width: 100%;
        min-height: 40px;
        padding: 6px 8px;
    }

    .page-hero-inner .lead {
        max-width: 320px;
    }

    .product-media {
        height: 220px;
    }

    .search-drawer {
        padding: 84px 14px 18px;
    }

    .search-shell {
        grid-template-columns: 40px 1fr 40px;
        padding: 8px;
    }

    .search-field-icon,
    .search-shell .icon-button {
        width: 40px;
        height: 46px;
    }

    .search-shell input {
        height: 46px;
        padding: 0 12px;
        font-size: 13px;
    }

    .dark-page-hero {
        min-height: 360px;
    }

    .age-actions,
    .cart-item,
    .search-result {
        grid-template-columns: 1fr;
    }

    .cart-item img,
    .search-result img {
        width: 100%;
        height: 120px;
    }
}

main.page-enter {
    animation: pageIn 360ms ease both;
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-link {
    width: 44px;
    height: 44px;
    border: 0;
}

.cart-link svg,
.footer-social svg,
.social-links svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-grid.is-refreshing,
.faq-main.is-refreshing {
    animation: resultsIn 260ms ease both;
}

@keyframes resultsIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Cart / Basket
   ========================================================================== */

.basket-page {
    min-height: 100vh;
    padding: 150px clamp(28px, 4vw, 78px) 90px;
    background: #030303;
    color: var(--white);
}

.basket-top {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: end;
    padding-bottom: 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.basket-top h1 {
    margin: 62px 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: clamp(42px, 5vw, 74px);
    font-weight: 400;
}

.basket-top p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
}

.basket-terms {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 1.7;
}

.basket-summary .basket-terms {
    max-width: 92%;
}

.continue-link {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 18px;
}

.basket-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
    gap: 34px;
}

.basket-items,
.basket-summary {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.01)
    );
    padding: 24px;
}

.basket-head,
.basket-item {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 116px 150px 90px;
    column-gap: 20px;
    align-items: center;
}

.basket-head {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 15px;
}

.basket-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition:
        opacity 180ms ease,
        transform 180ms cubic-bezier(0.22, 0.8, 0.22, 1),
        background 180ms ease;
}

[data-basket-live] {
    transition: min-height 180ms ease;
}

.basket-item.is-updated,
.basket-item.is-added {
    animation: basketRowFlash 280ms ease-out both;
}

.basket-item.is-added {
    animation-name: basketRowAdd;
}

.qty-control output.is-qty-flash {
    animation: qtyFlash 260ms ease-out both;
}

.basket-empty-live,
[data-basket-live].is-basket-refreshing {
    animation: basketBodyFlash 260ms ease both;
}

.basket-head span:first-child,
.basket-product {
    justify-self: stretch;
}

.basket-head span:nth-child(2),
.basket-item > strong:first-of-type {
    justify-self: center;
    text-align: center;
}

.basket-head span:nth-child(3),
.basket-item .qty-control {
    justify-self: center;
}

.basket-head span:nth-child(4),
.basket-item > strong:last-child {
    justify-self: end;
    text-align: right;
}

.basket-product {
    min-width: 0;
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 18px;
    align-items: center;
}

.basket-item img {
    width: 104px;
    height: 104px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.basket-product-media,
.basket-product h3 a {
    transition:
        opacity 160ms ease,
        color 160ms ease;
}

.basket-product-media:hover,
.basket-product h3 a:hover {
    opacity: 0.72;
}

.basket-item h3 {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 18px;
    font-weight: 400;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.basket-item p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
}

.basket-item button:not(.qty-control button) {
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    color: var(--white);
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
    transition:
        opacity 150ms ease,
        transform 150ms ease;
}

.basket-item button:not(.qty-control button):hover {
    opacity: 0.72;
}

.basket-item button:not(.qty-control button):active {
    transform: translateY(1px);
}

.dark-qty {
    border-color: rgba(255, 255, 255, 0.25);
    width: 132px;
}

.dark-qty button {
    background: transparent;
    color: var(--white);
    transition:
        background 140ms ease,
        color 140ms ease,
        transform 140ms ease;
}

.dark-qty button:hover {
    background: rgba(255, 255, 255, 0.08);
}

.dark-qty button:active {
    transform: scale(0.98);
}

.basket-summary h2,
.summary-head h2,
.checkout-form h2 {
    margin: 0 0 28px;
    font-size: 24px;
    font-weight: 500;
}

.free-shipping {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.free-shipping-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
}

.free-shipping-head strong {
    font-weight: 500;
    color: var(--white);
}

.free-shipping-track {
    height: 4px;
    margin: 18px 0 12px;
    background: rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.free-shipping-track span {
    display: block;
    height: 100%;
    background: var(--white);
    transition: width 280ms cubic-bezier(0.22, 0.8, 0.22, 1);
}

.free-shipping p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.5;
}

.basket-summary .summary-line,
.checkout-card .summary-line {
    color: inherit;
}

.basket-summary .summary-line {
    color: rgba(255, 255, 255, 0.74);
    border-bottom-color: rgba(255, 255, 255, 0.22);
}

.basket-summary .summary-line strong {
    color: var(--white);
}

.basket-summary .button {
    margin-top: 26px;
    min-height: 72px;
    color: var(--black);
}

.basket-summary .free-shipping {
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.basket-summary .summary-line.total {
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 18px;
}

.basket-clear {
    margin-top: 28px;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.28);
}

.dark-empty {
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.24);
}

.dark-empty .lead,
.dark-empty p {
    color: rgba(255, 255, 255, 0.68);
}

/* ==========================================================================
   Checkout
   ========================================================================== */

.checkout-page {
    width: min(100% - 72px, 1180px);
    margin: 0 auto;
    padding: 78px 0 110px;
}

.checkout-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: clamp(38px, 6vw, 72px);
    background: transparent;
    border: 0;
    align-items: start;
}

.checkout-card {
    background: transparent;
    padding: 0;
}

.checkout-layout > .checkout-card:last-child {
    background: rgba(255, 255, 255, 0.46);
    border: 1px solid var(--line);
    padding: clamp(28px, 4vw, 44px);
}

.checkout-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
}

.checkout-form h2,
.checkout-form p,
.checkout-form .field.full {
    grid-column: 1 / -1;
}

.checkout-form h2 {
    margin-top: 32px;
}

.checkout-form h2:first-child {
    margin-top: 0;
}

.checkout-form p {
    margin: -16px 0 8px;
    color: var(--muted);
}

.method-row,
.payment-method {
    grid-column: 1 / -1;
    min-height: 76px;
    display: grid;
    grid-template-columns: 28px 1fr auto;
    gap: 16px;
    align-items: center;
    border: 1px solid var(--line);
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.42);
}

.payment-section {
    grid-column: 1 / -1;
    display: grid;
    gap: 12px;
}

.payment-method {
    width: 100%;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.payment-method span,
.method-row span {
    width: 18px;
    height: 18px;
    border: 1px solid var(--black);
    border-radius: 999px;
}

.payment-method.is-active span {
    box-shadow:
        inset 0 0 0 4px var(--paper),
        inset 0 0 0 9px var(--black);
}

.payment-method:focus-visible {
    outline: 1px solid currentColor;
    outline-offset: 3px;
}

.method-row small,
.payment-method small {
    color: var(--muted);
}

.discount-row {
    display: grid;
    grid-template-columns: 1fr 110px;
    gap: 8px;
    margin: 22px 0;
}

.discount-row input {
    min-height: 48px;
    border: 1px solid var(--line);
    padding: 0 14px;
}

.summary-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: start;
}

.secure-note {
    margin-top: 18px;
    text-align: center;
    color: var(--muted);
}

.checkout-card .button[data-checkout-next],
.checkout-card .button[data-checkout-confirm] {
    min-height: 66px;
    font-size: 13px;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea,
.checkbox-row.is-invalid {
    border-color: rgba(210, 82, 82, 0.92) !important;
}

.field-error {
    margin: 2px 0 0 !important;
    color: #ff8a8a !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
}

.cart-count {
    top: 0;
    right: 0;
    min-width: 21px;
    height: 21px;
    border: 1px solid var(--black);
    font-size: 12px;
}

.catalogue-controls {
    grid-template-columns: minmax(0, 1fr) minmax(178px, 224px);
    align-items: end;
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.dark-page-hero {
    min-height: clamp(520px, 58vw, 720px);
    align-items: end;
    padding-bottom: clamp(96px, 14vw, 170px);
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.04) 0%,
            rgba(0, 0, 0, 0.24) 58%,
            rgba(247, 245, 240, 0.98) 100%
        ),
        url("assets/kyro-ocean-hero.png") center / cover no-repeat,
        var(--black);
}

.dark-page-hero.product,
.dark-page-hero.coa,
.dark-page-hero.faq,
.dark-page-hero.support,
.dark-page-hero.checkout {
    background-image:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.04) 0%,
            rgba(0, 0, 0, 0.24) 58%,
            rgba(247, 245, 240, 0.98) 100%
        ),
        url("assets/kyro-ocean-hero.png");
}

.dark-page-hero.support .lead,
.dark-page-hero.faq .lead,
.dark-page-hero.checkout .lead {
    margin-top: 42px;
}

.page-hero-inner .page-title {
    font-size: clamp(72px, 10vw, 128px);
    line-height: 0.9;
}

.page-hero-inner .lead {
    max-width: 620px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.88);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 15px;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
}

.variant-options a {
    min-width: 112px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--muted);
}

.variant-options a.is-active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.variant-options a.is-disabled {
    opacity: 0.38;
    background: #e6e3dc;
    color: #777;
}

.variant-options span,
.variant-options small {
    display: block;
}

.variant-options span {
    font-size: 12px;
    font-weight: 600;
}

.variant-options small {
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 8px;
}

.coa-item {
    min-height: 150px;
}

.coa-item .product-category {
    justify-content: flex-start;
    text-align: left;
}

.coa-item .product-category span {
    justify-content: flex-start;
}

.faq-section {
    padding-top: 0;
}

.faq-layout {
    grid-template-columns: 320px 1fr;
    width: min(100%, 1120px);
    margin: 0 auto;
    background: transparent;
    border: 0;
    gap: 64px;
}

.faq-side,
.faq-main {
    background: transparent;
}

.faq-side {
    padding: 0 0 0 4px;
    border-right: 1px solid var(--line);
}

.faq-side button {
    border: 0;
    background: transparent;
    width: 100%;
    text-align: left;
    cursor: pointer;
    color: var(--muted);
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 18px 0 18px 46px;
    position: relative;
}

.faq-side button.is-active {
    color: var(--black);
}

.faq-side button.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--black);
}

.faq-main {
    padding: 0;
}

.accordion-item {
    border-bottom: 1px solid var(--line);
}

.accordion-button {
    min-height: 82px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: center;
    padding: 24px 0;
    border: 0;
    background: transparent;
    color: var(--black);
    text-align: left;
    cursor: pointer;
}

.accordion-button span:first-child {
    font-size: 16px;
    letter-spacing: 0.14em;
}

.accordion-button span:last-child {
    font-size: 28px;
    font-weight: 300;
}

.accordion-content {
    display: none;
    max-width: 680px;
    padding: 0 0 34px 48px;
    font-size: 16px;
    color: var(--ink);
    line-height: 1.65;
}

.accordion-item.is-open .accordion-content {
    display: block;
}

.support-page {
    width: min(100% - 72px, 980px);
    margin: 0 auto;
    padding: 128px 0 120px;
    position: relative;
    z-index: 2;
}

.support-intro {
    text-align: center;
    margin-bottom: 76px;
}

.support-intro .eyebrow {
    color: var(--black);
    font-size: 16px;
}

.support-intro p:last-child {
    margin: 14px auto 0;
    max-width: none;
    white-space: nowrap;
    line-height: 1.65;
}

.support-form-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 26px;
}

.support-form-large .field.full {
    grid-column: 1 / -1;
}

.support-form-large .field input,
.support-form-large .field select,
.support-form-large .field textarea {
    min-height: 84px;
    background: rgba(255, 255, 255, 0.42);
    border-color: #c9c7c1;
    font-size: 17px;
}

.support-form-large .field textarea {
    min-height: 240px;
}

.support-submit {
    grid-column: 1 / -1;
    justify-self: center;
    min-width: 420px;
    min-height: 72px;
    font-size: 13px;
    margin-top: 26px;
    border: 1px solid var(--black);
}

.social-strip {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.social-strip .eyebrow {
    color: var(--black);
    margin-bottom: 24px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}

.social-links a {
    min-height: 108px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    border-left: 1px solid var(--line);
}

.social-links a:first-child {
    border-left: 0;
}

.social-links strong {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 500;
}

.support-disclaimer {
    margin: 26px 0 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 13px;
}

.site-footer {
    display: grid;
    grid-template-columns: 0.95fr 3.3fr;
    padding: clamp(56px, 8vw, 108px) clamp(28px, 4vw, 72px) 34px;
    gap: clamp(44px, 6vw, 90px);
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 255, 255, 0.08),
            transparent 36%
        ),
        #050505;
}

.footer-brand,
.footer-grid > div {
    padding: 0;
    border-right: 0;
}

.footer-brand h2 {
    font-size: clamp(48px, 5vw, 76px);
    letter-spacing: 0.34em;
}

.footer-brand p,
.footer-grid a,
.footer-grid p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 20px;
    line-height: 1.5;
}

.footer-rule {
    display: block;
    width: 44px;
    height: 2px;
    background: var(--white);
    margin: 0 0 42px;
}

.footer-grid {
    grid-template-columns: 1.15fr 0.75fr 1fr 0.85fr;
    gap: 0;
}

.footer-grid > div {
    min-height: 430px;
    padding-left: clamp(28px, 4vw, 56px);
    border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.footer-grid h3 {
    font-size: 18px;
    letter-spacing: 0.22em;
    margin-bottom: 34px;
}

.footer-grid a {
    margin: 19px 0;
}

.footer-social {
    display: flex !important;
    align-items: center;
    gap: 22px;
}

.footer-bottom {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1.7fr 0.7fr;
    gap: 34px;
    align-items: center;
    margin-top: 34px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.12em;
    font-size: 18px;
}

.footer-bottom strong {
    text-align: center;
    letter-spacing: 0.22em;
    font-weight: 500;
}

.footer-bottom span:last-child {
    text-align: right;
}

@media (max-width: 1080px) {
    .site-footer,
    .footer-grid,
    .footer-bottom,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid > div {
        min-height: auto;
        padding: 34px 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.22);
    }

    .footer-bottom strong,
    .footer-bottom span:last-child {
        text-align: left;
    }

    .faq-side {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding-bottom: 24px;
    }
}

@media (max-width: 640px) {
    .page-hero-inner .page-title {
        font-size: clamp(58px, 18vw, 86px);
    }

    .support-page {
        width: calc(100% - 32px);
        margin-top: -54px;
    }

    .support-intro p:last-child {
        max-width: 34rem;
        white-space: normal;
    }

    .support-form-large,
    .social-links {
        grid-template-columns: 1fr;
    }

    .social-links a {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .support-submit {
        width: 100%;
        min-width: 0;
    }

    .basket-layout,
    .basket-head,
    .basket-item,
    .basket-product,
    .checkout-layout,
    .checkout-form {
        grid-template-columns: 1fr;
    }

    .basket-head {
        display: none;
    }

    .basket-page {
        padding: 110px 18px 64px;
    }

    .basket-top {
        display: grid;
        align-items: start;
    }

    .basket-top h1 {
        font-size: clamp(38px, 12vw, 58px);
        letter-spacing: 0.18em;
    }

    .basket-items,
    .basket-summary,
    .checkout-layout > .checkout-card:last-child {
        padding: 22px;
    }

    .basket-item > strong,
    .basket-item .qty-control {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        justify-self: stretch;
        text-align: left;
    }

    .basket-item > strong::before,
    .basket-item .qty-control::before {
        content: attr(data-label);
        color: rgba(255, 255, 255, 0.52);
        text-transform: uppercase;
        letter-spacing: 0.14em;
        font-size: 10px;
    }

    .cookie-banner {
        grid-template-columns: 1fr;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions .button {
        flex: 1;
    }

    .checkout-page {
        width: calc(100% - 32px);
    }

    .checkout-form .field,
    .checkout-form h2,
    .checkout-form p {
        grid-column: 1;
    }

    .footer-newsletter {
        grid-template-columns: 1fr;
    }

    .footer-newsletter > div {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .drawer-item-controls .qty-control {
        grid-template-columns: 48px 48px 48px;
        height: 48px;
    }

    .qty-control button,
    .filter-chip,
    .variant-options a,
    .review-star-btn,
    .button,
    .icon-button,
    .menu-button,
    .cart-link {
        min-width: 48px;
        min-height: 48px;
    }

    .notify-form,
    .notify-form-detail,
    .trust-badge-row,
    .fbt-row {
        grid-template-columns: 1fr;
    }
}

@media (pointer: coarse) {
    .button,
    .filter-chip,
    .variant-options a,
    .qty-control button,
    .qty-control output,
    .icon-button,
    .cart-link,
    .menu-button,
    .scroll-top {
        min-width: 48px;
        min-height: 48px;
    }
}

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

/* Final KYRO interaction and purchase-flow polish */
body.cart-open {
    overflow: hidden;
}

body.lightbox-open {
    overflow: hidden;
}

body[data-route="home"],
body[data-route="product"],
body[data-route="basket"],
body[data-route="checkout"] {
    background: #030303;
}

main {
    min-height: 100vh;
    background: var(--paper);
}

body[data-route="home"] main,
body[data-route="product"] main,
body[data-route="basket"] main,
body[data-route="checkout"] main {
    background: #030303;
}

.search-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
}

.mobile-search {
    min-height: 52px;
    border: 0;
    border-bottom: 1px solid var(--soft-line);
    background: transparent;
    color: var(--white);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
}

.hero {
    min-height: 100vh;
    align-items: center;
    padding-top: 96px;
    background:
        radial-gradient(
            circle at 55% 30%,
            rgba(255, 255, 255, 0.12),
            transparent 24%
        ),
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.62),
            rgba(0, 0, 0, 0.18) 48%,
            rgba(0, 0, 0, 0.42)
        ),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9)),
        url("assets/kyro-hero-v3.png") center / cover no-repeat,
        var(--black);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background:
        linear-gradient(
            115deg,
            transparent 0 42%,
            rgba(255, 255, 255, 0.12) 47%,
            transparent 53% 100%
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0 82px,
            rgba(255, 255, 255, 0.07) 83px,
            transparent 84px
        );
    mix-blend-mode: screen;
    animation: heroDrift 11s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroDrift {
    from {
        transform: translate3d(-2%, 0, 0);
        opacity: 0.12;
    }
    to {
        transform: translate3d(2%, -1%, 0);
        opacity: 0.22;
    }
}

.hero-inner {
    padding: 4vh 0 0;
}

.hero h1 {
    max-width: 860px;
    letter-spacing: 0.18em;
    font-size: clamp(86px, 10vw, 156px);
    line-height: 0.86;
    text-shadow:
        0 0 18px rgba(255, 255, 255, 0.2),
        0 0 58px rgba(255, 255, 255, 0.12);
}

.hero h1 span {
    margin-top: 20px;
    letter-spacing: 0.18em;
    font-size: clamp(24px, 2.55vw, 42px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.86);
}

.hero-shop span {
    transition: transform 180ms ease;
}

.hero-shop:hover span {
    transform: translateX(8px);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.2em;
    line-height: 1;
    font-size: 1.08em;
    font-weight: 400;
    letter-spacing: 0;
    transform: translateY(-0.02em);
    transition: transform 180ms ease;
}

.product-back-link:hover .link-arrow,
.continue-link:hover .link-arrow {
    transform: translate(-4px, -0.02em);
}

.dark-page-hero,
.dark-page-hero.product,
.dark-page-hero.coa,
.dark-page-hero.faq,
.dark-page-hero.support,
.dark-page-hero.checkout {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 255, 255, 0.08),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #020202 0%,
            #070707 62%,
            rgba(247, 245, 240, 0.98) 100%
        ),
        var(--black);
}

.product-card {
    contain: layout paint;
    transition:
        background 220ms ease,
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.product-card:hover {
    background: #fffefa;
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.coa-item,
.review-card,
.basket-item,
.drawer-item {
    contain: layout paint;
}

.product-media {
    height: 336px;
    padding: 8px;
}

.product-media img {
    width: min(128%, 410px);
    height: 316px;
    image-rendering: auto;
    backface-visibility: hidden;
    mix-blend-mode: normal;
    filter: contrast(1.14) brightness(1.03)
        drop-shadow(0 18px 22px rgba(0, 0, 0, 0.16));
    transform: translateZ(0) scale(1.26);
    transition:
        transform 260ms ease,
        filter 260ms ease;
}

.product-card:hover .product-media img {
    transform: translate3d(0, -10px, 0) scale(1.34);
    filter: contrast(1.18) brightness(1.05)
        drop-shadow(0 24px 28px rgba(0, 0, 0, 0.18));
}

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

.featured-section,
.related-section {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-inline: 0;
    background: var(--paper);
    color: var(--ink);
}

.featured-section > .section-header,
.featured-section > .product-grid,
.featured-section > .center-action,
.related-section > .section-header,
.related-section > .product-grid {
    width: calc(100% - 36px);
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
}

.featured-section .featured-header {
    margin-bottom: 34px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.featured-section .featured-header > div {
    width: min(100%, 760px);
}

.featured-section .featured-header h2,
.related-section .related-header h2 {
    color: var(--ink);
}

.featured-section .featured-subtitle {
    color: var(--muted);
}

.product-page-shell {
    min-height: 100vh;
    padding: 112px clamp(24px, 4vw, 64px) 92px;
    background:
        radial-gradient(
            circle at 46% 12%,
            rgba(255, 255, 255, 0.08),
            transparent 28%
        ),
        linear-gradient(180deg, #020202, #050505 70%, #030303);
    color: var(--white);
    animation: routeFade 180ms ease both;
}

.product-back-link {
    display: inline-flex;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    transition:
        color 160ms ease,
        transform 160ms ease;
}

.product-back-link:hover {
    color: var(--white);
    transform: translateX(-4px);
}

.product-page-shell .product-detail {
    width: min(100%, 1440px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(360px, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(34px, 5vw, 72px);
    background: transparent;
    border: 0;
}

.product-page-shell .detail-media,
.product-page-shell .detail-info {
    background: transparent;
}

.product-page-shell .detail-media {
    position: relative;
    min-height: min(760px, 70vh);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(255, 255, 255, 0.14),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.015)
        );
}

.detail-media-button {
    width: 100%;
    height: 100%;
    min-height: inherit;
    border: 0;
    background: transparent;
    display: grid;
    place-items: center;
    cursor: zoom-in;
}

.product-page-shell .detail-media img {
    width: min(112%, 760px);
    max-height: 760px;
    transform: scale(1.22);
    mix-blend-mode: normal;
    filter: drop-shadow(0 36px 42px rgba(0, 0, 0, 0.52));
}

.product-page-shell .detail-info {
    padding: 10px 0;
}

.product-page-shell .detail-info h1 {
    margin: 0 0 34px;
    text-transform: uppercase;
    letter-spacing: clamp(0.08em, 0.85vw, 0.18em);
    font-size: clamp(38px, 4.3vw, 72px);
    line-height: 1.02;
    font-weight: 400;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    max-width: 100%;
}

.product-page-shell .detail-info h1.is-long-name {
    white-space: nowrap;
    letter-spacing: clamp(0.04em, 0.38vw, 0.08em);
    font-size: clamp(30px, 2.6vw, 42px);
}

.product-page-shell .detail-info h1.is-extra-long-name {
    letter-spacing: clamp(0.04em, 0.42vw, 0.08em);
    font-size: clamp(32px, 3.15vw, 56px);
    overflow-wrap: normal;
    text-wrap: balance;
}

.product-components {
    margin: -18px 0 30px;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.62);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: clamp(13px, 1vw, 16px);
    line-height: 1.55;
}

.benefit-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: -14px 0 28px;
}

.benefit-pills span,
.trust-badge-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 10px;
}

.benefit-pills span {
    padding: 0 11px;
}

.product-page-shell .variant-options {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 28px;
}

.product-page-shell .variant-options a {
    min-width: 0;
    min-height: 58px;
    padding: 12px 14px;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.62);
    transition:
        background 160ms ease,
        color 160ms ease,
        border-color 160ms ease,
        opacity 160ms ease;
}

.product-page-shell .variant-options a.is-active {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.product-page-shell .variant-options a.is-disabled {
    opacity: 0.28;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.58);
}

.product-page-shell .data-table {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.product-page-shell .data-row {
    grid-template-columns: minmax(120px, 0.38fr) 1fr;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 17px;
}

.product-page-shell .data-row span:first-child {
    color: rgba(255, 255, 255, 0.68);
    letter-spacing: 0.2em;
    font-size: 13px;
}

.product-page-shell .data-row strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.5;
}

.card-components,
.cart-components {
    margin: -6px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.checkout-flow .cart-components,
.drawer-item .cart-components,
.basket-product .cart-components {
    color: rgba(255, 255, 255, 0.58);
}

.product-price {
    margin: 34px 0 22px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
    font-weight: 300;
    letter-spacing: 0.04em;
}

.trust-badge-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 22px;
}

.trust-badge-row span {
    gap: 8px;
    min-height: 44px;
    padding: 0 10px;
}

.trust-badge-row svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-badge-row small {
    line-height: 1.2;
}

.purchase-label {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.product-page-shell .qty-row {
    position: relative;
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 18px;
    margin: 0;
}

.product-page-shell .qty-control {
    height: 72px;
    grid-template-columns: 70px 70px 70px;
    border-color: rgba(255, 255, 255, 0.22);
}

.product-page-shell .qty-control button,
.product-page-shell .qty-control output {
    background: transparent;
    color: var(--white);
    font-size: 24px;
    border-color: rgba(255, 255, 255, 0.18);
}

.product-add {
    min-height: 72px;
    justify-content: center;
    font-size: 16px;
    letter-spacing: 0.18em;
}

.qty-feedback {
    position: absolute;
    left: 0;
    bottom: -30px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    opacity: 0;
    transform: translateY(-4px);
    transition:
        opacity 200ms ease,
        transform 200ms ease;
    pointer-events: none;
}

.qty-feedback.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fbt-section,
.recently-viewed {
    background: #f5f3ee;
    color: var(--ink);
}

.fbt-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(240px, 0.7fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.fbt-row .product-card {
    border-top: 0;
}

.fbt-action {
    display: grid;
    align-content: center;
    gap: 22px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

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

.recently-viewed {
    padding: clamp(50px, 7vw, 88px) 0;
}

.recently-viewed-inner {
    width: calc(100% - 36px);
    max-width: var(--max);
    margin: 0 auto;
}

.recently-viewed h2 {
    margin: 0 0 22px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 16px;
    font-weight: 500;
}

.recently-viewed-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 25%);
    overflow-x: auto;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    scrollbar-width: thin;
}

.recently-viewed-strip .product-body {
    min-height: 210px;
}

.recently-viewed-strip .card-actions {
    align-self: stretch;
}

@media (min-width: 821px) {
    .product-page-shell .detail-info {
        position: sticky;
        top: 88px;
        align-self: start;
    }
}

.related-section {
    padding-top: 76px;
}

.related-header {
    display: block;
    text-align: left;
}

.related-header h2 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: clamp(28px, 4vw, 54px);
    line-height: 1.1;
}

.basket-page,
.checkout-flow {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 255, 255, 0.045),
            transparent 32%
        ),
        #030303;
}

.checkout-flow .checkout-layout {
    width: min(100%, 1460px);
    grid-template-columns: minmax(0, 1.25fr) minmax(390px, 0.55fr);
    gap: 42px;
}

.checkout-steps {
    width: min(100%, 1460px);
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.checkout-steps span {
    min-height: 52px;
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.56);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
}

.checkout-steps span:last-child {
    border-right: 0;
}

.checkout-steps .is-active {
    background: var(--white);
    color: var(--black);
}

.checkout-flow .checkout-card,
.checkout-flow .checkout-layout > .checkout-card:last-child {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.035),
        rgba(255, 255, 255, 0.01)
    );
    padding: 34px;
    color: var(--white);
}

.checkout-flow .checkout-form h2,
.checkout-flow .summary-head h2,
.basket-summary h2 {
    color: var(--white);
    text-transform: none;
    letter-spacing: 0;
    font-size: 28px;
    font-weight: 400;
}

.checkout-flow .checkout-form p,
.checkout-flow .field label,
.checkout-flow .secure-note,
.checkout-flow .checkbox-row,
.checkout-flow .summary-head a,
.checkout-flow .cart-item p,
.checkout-flow .summary-line {
    color: rgba(255, 255, 255, 0.68);
}

.checkout-flow .field input,
.checkout-flow .field select,
.checkout-flow .discount-row input {
    min-height: 58px;
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--white);
}

.checkout-flow .field input::placeholder,
.checkout-flow .discount-row input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.checkout-flow .method-row,
.checkout-flow .payment-method {
    min-height: 82px;
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.22);
}

.checkout-flow .payment-method span,
.checkout-flow .method-row span {
    border-color: var(--white);
}

.checkout-flow .payment-method.is-active span {
    box-shadow:
        inset 0 0 0 4px var(--black),
        inset 0 0 0 9px var(--white);
}

.checkout-flow .cart-list {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.checkout-flow .cart-item {
    background: rgba(255, 255, 255, 0.035);
    color: var(--white);
}

.checkout-flow .cart-item img {
    background: rgba(255, 255, 255, 0.05);
    mix-blend-mode: normal;
}

.checkout-flow .remove-button {
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.78);
}

.checkout-flow .summary-line {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.checkout-flow .summary-line strong {
    color: var(--white);
}

.checkout-flow .button-dark,
.checkout-flow .discount-row .button {
    background: var(--white);
    color: var(--black);
}

.cart-drawer {
    position: fixed;
    z-index: 80;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cart-drawer.is-open {
    pointer-events: auto;
}

.cart-drawer-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 220ms ease;
}

.cart-drawer.is-open .cart-drawer-backdrop {
    background: rgba(0, 0, 0, 0.42);
}

.cart-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(460px, 100%);
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 24px;
    padding: 34px;
    background: #050505;
    color: var(--white);
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    transform: translateX(104%);
    transition: transform 280ms cubic-bezier(0.22, 0.8, 0.22, 1);
}

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

.cart-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.cart-drawer-close {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.cart-drawer-items {
    overflow: auto;
    display: grid;
    align-content: start;
    gap: 1px;
}

.cart-drawer-summary {
    display: grid;
    gap: 2px;
    padding: 18px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.cart-drawer-summary:empty {
    display: none;
}

.cart-drawer-summary .summary-line {
    color: rgba(255, 255, 255, 0.68);
    border-bottom-color: rgba(255, 255, 255, 0.14);
}

.cart-drawer-summary .summary-line strong {
    color: var(--white);
}

.drawer-item {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    animation: drawerItemSettle 190ms ease-out both;
}

.drawer-item img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
}

.drawer-item-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.drawer-item-meta {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    line-height: 1.4;
}

.drawer-item-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
}

.drawer-item-controls .qty-control {
    height: 34px;
    grid-template-columns: 30px 36px 30px;
    width: auto;
}

.drawer-item-controls .qty-control button,
.drawer-item-controls .qty-control output {
    display: grid;
    place-items: center;
    min-width: 30px;
    line-height: 1;
}

.drawer-remove-btn {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    background: transparent;
    color: rgba(255, 255, 255, 0.52);
    padding: 0;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    cursor: pointer;
    transition: color 140ms ease;
    line-height: 1.6;
}

.drawer-remove-btn:hover {
    color: #fff;
}

.drawer-item h3,
.drawer-empty h3 {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 16px;
    font-weight: 400;
}

.drawer-item p,
.drawer-empty p {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.5;
}

.cart-drawer-actions {
    display: grid;
    gap: 12px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.cart-drawer-actions .button {
    min-height: 58px;
}

.cart-drawer-actions .button.is-disabled {
    opacity: 0.38;
    pointer-events: none;
    cursor: not-allowed;
}

.drawer-compliance {
    margin: -10px 0 0;
    color: rgba(255, 255, 255, 0.48);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 9px;
    line-height: 1.6;
}

.cart-drawer.is-refreshing .cart-drawer-items {
    animation: cartDrawerRefresh 180ms ease-out both;
}

.cart-count.is-updated {
    animation: cartPulse 260ms ease-out both;
}

.image-lightbox {
    position: fixed;
    z-index: 200;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
}

.image-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.image-lightbox-backdrop {
    position: fixed;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.84);
}

.image-lightbox figure {
    position: relative;
    z-index: 1;
    width: min(92vw, 980px);
    height: min(82vh, 860px);
    margin: 0;
    display: grid;
    place-items: center;
}

.image-lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.7));
}

.image-lightbox-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    cursor: pointer;
}

.sticky-add-bar {
    position: fixed;
    z-index: 70;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    background: rgba(4, 4, 4, 0.94);
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    transform: translateY(110%);
    transition: transform 240ms cubic-bezier(0.22, 0.8, 0.22, 1);
}

.sticky-add-bar.is-visible {
    transform: translateY(0);
}

.sticky-add-bar strong,
.sticky-add-bar span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
}

.sticky-add-bar span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
}

@media (min-width: 821px) {
    .sticky-add-bar {
        display: none;
    }
}

.scroll-top {
    position: fixed;
    z-index: 60;
    left: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(5, 5, 5, 0.58);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition:
        opacity 180ms ease,
        transform 180ms ease;
    cursor: pointer;
}

.scroll-top svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

.scroll-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top:hover,
.scroll-top:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.54);
}

.recent-searches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.recent-searches > div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 10px;
}

.recent-searches button {
    min-height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    padding: 0 12px;
    cursor: pointer;
}

.recent-searches > div button {
    border: 0;
    padding: 0;
    min-height: 0;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes cartDrawerRefresh {
    from {
        opacity: 0.82;
        transform: translateY(2px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

@keyframes drawerItemSettle {
    from {
        opacity: 0.82;
        transform: translateX(3px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes buttonAddPulse {
    0% {
        opacity: 0.92;
        transform: translateY(0);
    }
    45% {
        opacity: 1;
        transform: translateY(-1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cartPulse {
    0% {
        opacity: 0.86;
        transform: scale(1);
    }
    45% {
        opacity: 1;
        transform: scale(1.04);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bundleCardPulse {
    0% {
        box-shadow: inset 0 0 0 1px rgba(7, 22, 35, 0.2);
        transform: translateY(0);
    }
    45% {
        box-shadow: inset 0 0 0 2px rgba(7, 22, 35, 0.42);
        transform: translateY(-4px);
    }
    100% {
        box-shadow: inset 0 0 0 1px rgba(7, 22, 35, 0.2);
        transform: translateY(0);
    }
}

.faq-layout {
    width: min(100%, 1180px);
    gap: clamp(54px, 7vw, 96px);
}

.faq-side button {
    font-size: 18px;
    letter-spacing: 0.16em;
    padding: 22px 0 22px 54px;
}

.accordion-button {
    min-height: 86px;
    padding: 26px 0;
}

.accordion-button span:first-child {
    font-size: 18px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    max-width: 760px;
    padding: 0;
    font-size: 18px;
    line-height: 1.68;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition:
        grid-template-rows 240ms cubic-bezier(0.22, 0.8, 0.22, 1),
        opacity 180ms ease,
        transform 220ms ease;
}

.accordion-content > div {
    min-height: 0;
    overflow: hidden;
    padding: 0 58px 0 0;
}

.accordion-item.is-open .accordion-content {
    display: grid;
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
}

.accordion-item.is-open .accordion-content > div {
    padding-bottom: 38px;
}

.accordion-button span:last-child {
    transition: transform 220ms ease;
}

.accordion-item.is-open .accordion-button span:last-child {
    transform: rotate(180deg);
}

.site-footer {
    grid-template-columns: 0.75fr 3fr;
    padding: clamp(38px, 5vw, 70px) clamp(24px, 4vw, 58px) 26px;
    gap: clamp(28px, 4vw, 56px);
}

.footer-brand h2 {
    font-size: clamp(34px, 3.4vw, 52px);
}

.footer-brand p,
.footer-grid a,
.footer-grid p {
    font-size: 14px;
}

.footer-grid > div {
    min-height: 260px;
    padding-left: clamp(20px, 3vw, 36px);
}

.footer-grid h3 {
    font-size: 12px;
    margin-bottom: 22px;
}

.footer-grid a {
    margin: 12px 0;
}

.footer-newsletter {
    width: min(100%, 760px);
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: minmax(180px, 0.7fr) minmax(280px, 1fr);
    gap: 18px;
    align-items: end;
}

.footer-newsletter[hidden] {
    display: none !important;
}

.footer-newsletter label {
    color: rgba(255, 255, 255, 0.86);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
}

.footer-newsletter > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.footer-newsletter input {
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: transparent;
    color: var(--white);
    padding: 0 14px;
}

.footer-newsletter .button {
    min-height: 48px;
}

.footer-rule {
    margin-bottom: 24px;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 22px;
    font-size: 12px;
    grid-template-columns: 1fr auto 1fr;
}

.footer-bottom strong {
    justify-self: center;
    text-align: center;
}

.footer-bottom span:first-child {
    justify-self: start;
}

.footer-bottom span:last-child {
    justify-self: end;
}

.hero-metrics {
    width: min(100%, 1120px);
    margin: clamp(62px, 10vh, 104px) auto 0;
    padding-top: 24px;
    justify-self: center;
}

.metric {
    min-height: 56px;
    padding: 0 clamp(18px, 3vw, 40px);
}

.metric span {
    font-size: 10px;
    letter-spacing: 0.2em;
}

.metric strong {
    margin-top: 10px;
    font-size: clamp(14px, 1.15vw, 17px);
    letter-spacing: 0.14em;
    font-weight: 500;
}

.accordion-button span:first-child {
    font-size: 16px;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: #111;
}

.accordion-button span:last-child {
    font-size: 24px;
    color: #111;
}

.accordion-content {
    color: #202020;
    font-size: 17px;
    line-height: 1.72;
    letter-spacing: 0.01em;
}

.accordion-content a {
    color: inherit;
    border-bottom: 1px solid currentColor;
}

.basket-item {
    animation: basketItemSettle 180ms ease both;
}

.qty-control button,
.qty-control output {
    transition:
        background 160ms ease,
        color 160ms ease,
        border-color 160ms ease,
        transform 160ms ease;
}

.qty-control button:hover {
    background: rgba(255, 255, 255, 0.12);
}

.qty-control button:active {
    transform: scale(0.98);
}

.checkout-flow .field select option,
.field select option {
    background: #050505;
    color: #ffffff;
}

@media (max-width: 640px) {
    .catalogue-controls {
        grid-template-columns: 1fr;
    }

    .catalogue-sort {
        justify-self: stretch;
        width: 100%;
    }

    .checkout-flow .checkout-layout,
    .checkout-flow .checkout-card,
    .checkout-flow .checkout-layout > .checkout-card:last-child,
    .checkout-flow .checkout-form,
    .checkout-flow .field,
    .checkout-flow .field input,
    .checkout-flow .field select {
        min-width: 0;
        width: 100%;
    }

    .checkout-flow .discount-row {
        grid-template-columns: 1fr;
    }

    .checkout-flow .discount-row .button {
        width: 100%;
    }
}

@keyframes basketItemSettle {
    from {
        opacity: 0.84;
        transform: translateY(2px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes basketRowFlash {
    0% {
        background: rgba(255, 255, 255, 0.085);
        opacity: 0.92;
    }
    45% {
        background: rgba(255, 255, 255, 0.055);
        opacity: 1;
    }
    100% {
        background: transparent;
        opacity: 1;
    }
}

@keyframes basketRowAdd {
    0% {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(2px);
        opacity: 0.86;
    }
    100% {
        background: transparent;
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes qtyFlash {
    0% {
        background: rgba(255, 255, 255, 0.82);
        color: #050505;
        transform: scale(1.025);
    }
    100% {
        background: transparent;
        color: inherit;
        transform: scale(1);
    }
}

@keyframes basketBodyFlash {
    from {
        opacity: 0.72;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageLoadingSweep {
    from {
        transform: translateX(-120%);
    }
    to {
        transform: translateX(260%);
    }
}

@keyframes routeFade {
    from {
        opacity: 0.96;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .product-page-shell .product-detail,
    .checkout-flow .checkout-layout {
        grid-template-columns: 1fr;
    }

    .product-page-shell .variant-options {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .hero {
        min-height: 100vh;
    }

    .product-page-shell {
        padding: 96px 18px 68px;
    }

    .product-page-shell .variant-options,
    .product-page-shell .qty-row {
        grid-template-columns: 1fr;
    }

    .product-page-shell .detail-info h1.is-long-name,
    .product-page-shell .detail-info h1.is-extra-long-name {
        white-space: normal;
        text-wrap: balance;
        letter-spacing: 0.08em;
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.08;
    }

    .product-page-shell .qty-control {
        grid-template-columns: 1fr 1fr 1fr;
        width: 100%;
    }

    .checkout-flow .checkout-card,
    .checkout-flow .checkout-layout > .checkout-card:last-child {
        padding: 22px;
    }

    .trust-badge-row,
    .fbt-row {
        grid-template-columns: 1fr 1fr;
    }

    .fbt-action {
        grid-column: 1 / -1;
    }

    .recently-viewed-strip {
        grid-auto-columns: minmax(220px, 78%);
    }

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

/* ── Review section ───────────────────────────────── */
.review-section {
    background: #030303;
    color: var(--white);
    padding: clamp(64px, 9vw, 108px) clamp(24px, 4vw, 64px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review-section-inner {
    width: min(100%, 1320px);
    margin: 0 auto;
    display: grid;
    gap: 56px;
}

.review-top h2 {
    margin: 0 0 32px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 400;
}

.review-kicker {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.review-summary {
    display: flex;
    gap: clamp(32px, 6vw, 80px);
    align-items: flex-start;
    flex-wrap: wrap;
}

.review-aggregate {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 110px;
}

.review-avg-num {
    font-size: 56px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
}

.review-stars-row {
    display: flex;
    gap: 3px;
}

.star-icon {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.22);
    line-height: 1;
}

.star-icon.is-filled {
    color: #f0b429;
}

.review-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.52);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.review-breakdown {
    display: grid;
    gap: 8px;
    min-width: 220px;
    flex: 1;
    max-width: 340px;
}

.breakdown-row {
    display: grid;
    grid-template-columns: 36px 1fr 24px;
    gap: 10px;
    align-items: center;
}

.breakdown-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.breakdown-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.breakdown-track span {
    display: block;
    height: 100%;
    background: #f0b429;
    border-radius: 3px;
    transition: width 400ms cubic-bezier(0.22, 0.8, 0.22, 1);
}

.breakdown-n {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.44);
    text-align: right;
}

.review-none {
    color: rgba(255, 255, 255, 0.44);
    font-size: 15px;
    margin: 0;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card {
    background: rgba(255, 255, 255, 0.025);
    padding: 26px 28px;
    display: grid;
    gap: 12px;
    align-content: start;
    transition: background 180ms ease;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.045);
}

.review-card.has-image {
    grid-template-rows: auto auto auto 1fr;
}

.review-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.review-card-head .review-stars-row .star-icon {
    font-size: 15px;
}

.review-verified {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #2a9461;
    border: 1px solid #2a9461;
    padding: 3px 7px;
}

.review-title {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--white);
}

.review-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.review-body {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.review-footer {
    display: flex;
    gap: 14px;
    align-items: baseline;
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-footer strong {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.review-footer time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.1em;
}

/* Write a review form */
.review-form-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 36px;
}

.review-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    padding: 14px 24px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    transition:
        background 160ms ease,
        border-color 160ms ease;
}

.review-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.5);
}

.review-toggle-icon {
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    transition: transform 180ms ease;
}

.review-form {
    margin-top: 28px;
    display: grid;
    gap: 14px;
    max-width: 640px;
}

.review-star-input {
    display: grid;
    gap: 10px;
}

.review-star-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.62);
}

.review-star-buttons {
    display: flex;
    gap: 6px;
}

.review-star-btn {
    cursor: pointer;
}

.review-star-btn input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.review-star-btn .star-icon {
    font-size: 28px;
    transition:
        color 120ms ease,
        transform 120ms ease;
}

.review-star-btn.is-hover .star-icon,
.review-star-btn.is-selected .star-icon {
    color: #f0b429;
    transform: scale(1.1);
}

.review-text-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    padding: 14px 16px;
    font: inherit;
    font-size: 14px;
    outline: none;
    width: 100%;
    transition: border-color 160ms ease;
    resize: vertical;
}

.review-text-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.review-text-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
}

.review-image-upload {
    display: grid;
    gap: 9px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.review-image-upload input {
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.72);
    padding: 12px 14px;
    font: inherit;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
}

.review-image-upload input::file-selector-button {
    margin-right: 14px;
    border: 0;
    background: var(--white);
    color: var(--black);
    padding: 10px 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
}

.review-submit-btn {
    justify-self: start;
    min-height: 52px;
    padding: 0 32px;
}

.review-small-print {
    margin: 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.32);
    line-height: 1.55;
    letter-spacing: 0.04em;
}

/* Stars on product cards */
.card-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: -4px;
}

.card-stars .star-icon {
    font-size: 13px;
    color: #ccc;
}

.card-stars .star-icon.is-filled {
    color: #d4952a;
}

.card-stars-count {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.06em;
}

@media (max-width: 640px) {
    .review-summary {
        flex-direction: column;
        gap: 24px;
    }

    .review-aggregate {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
    }

    .review-avg-num {
        font-size: 42px;
    }

    .review-breakdown {
        max-width: 100%;
        width: 100%;
    }

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

/* FAQ final polish */
.faq-section {
    padding: clamp(58px, 8vw, 118px) clamp(18px, 4vw, 48px) clamp(76px, 10vw, 140px);
}

.faq-layout {
    width: min(100%, 1180px);
    display: grid;
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: clamp(40px, 6vw, 82px);
    align-items: start;
}

.faq-side {
    position: sticky;
    top: 108px;
    border-right: 1px solid var(--line);
    padding: 4px clamp(28px, 3vw, 42px) 4px 0;
}

.faq-side button {
    min-height: 48px;
    padding: 15px 0 15px 38px;
    font-size: 13px;
    line-height: 1.25;
    letter-spacing: 0.14em;
    color: rgba(15, 18, 20, 0.58);
    transition:
        color 160ms ease,
        transform 160ms ease;
}

.faq-side button:hover,
.faq-side button.is-active {
    color: var(--black);
}

.faq-side button.is-active {
    transform: translateX(2px);
}

.faq-side button.is-active::before {
    width: 22px;
    height: 1px;
    transform: translateY(-50%);
}

.faq-main {
    min-width: 0;
}

.accordion-item {
    border-bottom: 1px solid rgba(15, 18, 20, 0.14);
}

.accordion-button {
    min-height: 72px;
    padding: 22px 0;
    gap: 28px;
}

.accordion-button span:first-child {
    max-width: 760px;
    color: #111;
    font-size: clamp(13px, 1.05vw, 16px);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.accordion-button span:last-child {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: #111;
    font-size: 20px;
    line-height: 1;
}

.accordion-content {
    max-width: 780px;
    color: rgba(15, 18, 20, 0.78);
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.72;
    letter-spacing: 0.01em;
}

.accordion-content > div {
    padding: 0 clamp(34px, 5vw, 76px) 0 0;
}

.accordion-item.is-open .accordion-content > div {
    padding-bottom: 34px;
}

@media (max-width: 860px) {
    .faq-section {
        padding-inline: 18px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .faq-side {
        position: static;
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 0 0 16px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        scrollbar-width: none;
    }

    .faq-side::-webkit-scrollbar {
        display: none;
    }

    .faq-side button {
        flex: 0 0 auto;
        min-height: 46px;
        padding: 0 16px;
        border: 1px solid rgba(15, 18, 20, 0.16);
        font-size: 11px;
        letter-spacing: 0.12em;
        white-space: nowrap;
    }

    .faq-side button.is-active {
        transform: none;
        background: var(--black);
        color: var(--white);
    }

    .faq-side button.is-active::before {
        content: none;
    }

    .accordion-button {
        min-height: 68px;
        padding: 20px 0;
        gap: 18px;
    }

    .accordion-button span:first-child {
        font-size: 13px;
        letter-spacing: 0.08em;
    }

    .accordion-content > div,
    .accordion-item.is-open .accordion-content > div {
        padding-right: 0;
    }
}

@media (max-width: 520px) {
    .faq-section {
        padding-top: 44px;
    }

    .accordion-button span:first-child {
        font-size: 12px;
        letter-spacing: 0.06em;
    }

    .accordion-content {
        font-size: 14px;
        line-height: 1.68;
    }
}

/* Stabilisation pass: mobile density, focus clarity, and long-name resilience. */
.product-card h3 a,
.basket-product h3 a,
.drawer-item h3,
.search-result strong {
    overflow-wrap: anywhere;
}

.product-card .button:focus-visible,
.qty-control button:focus-visible,
.drawer-remove-btn:focus-visible,
.basket-clear:focus-visible,
.payment-method:focus-visible,
.filter-chip:focus-visible,
.accordion-button:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.78);
    outline-offset: 3px;
}

.faq-section .accordion-button:focus-visible,
.filter-chip:focus-visible {
    outline-color: rgba(5, 5, 5, 0.72);
}

@media (max-width: 768px) {
    .product-page-shell .product-detail {
        border-left: 0;
        border-right: 0;
    }

    .product-page-shell .detail-info {
        padding-inline: clamp(18px, 5vw, 32px);
    }

    .checkout-flow .checkout-layout,
    .basket-layout {
        gap: 22px;
    }

    .search-results {
        width: min(100%, 620px);
        margin-inline: auto;
    }
}

@media (max-width: 640px) {
    .basket-product {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 14px;
    }

    .basket-item img {
        width: 88px;
        height: 88px;
    }

    .basket-item {
        row-gap: 14px;
    }

    .basket-item h3 {
        font-size: 15px;
        letter-spacing: 0.08em;
        line-height: 1.35;
    }

    .checkout-steps {
        grid-template-columns: 1fr;
    }

    .checkout-steps span {
        min-height: 44px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .checkout-steps span:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 430px) {
    .hero {
        padding-inline: 18px;
    }

    .hero h1 {
        font-size: clamp(62px, 22vw, 86px);
        letter-spacing: 0.18em;
    }

    .hero h1 span {
        margin-top: 18px;
        font-size: 18px;
        letter-spacing: 0.26em;
    }

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

    .product-card .product-body {
        padding: 20px 18px;
    }

    .product-page-shell .detail-info h1 {
        font-size: clamp(34px, 11vw, 48px);
        line-height: 1.05;
    }

    .search-shell {
        grid-template-columns: 40px minmax(0, 1fr) 40px;
    }

    .search-result {
        grid-template-columns: 56px minmax(0, 1fr);
        align-items: center;
    }

    .search-result img {
        width: 56px;
        height: 56px;
    }

    .faq-side {
        margin-inline: -18px;
        padding-inline: 18px;
    }
}

@media (max-width: 390px) {
    .site-header {
        padding-inline: 16px;
    }

    .header-actions {
        gap: 6px;
    }

    .product-page-shell .detail-info {
        padding-inline: 16px;
    }

    .basket-top h1 {
        font-size: clamp(42px, 15vw, 58px);
    }

    .basket-item {
        padding-block: 18px;
    }

    .basket-item > strong,
    .basket-item .qty-control {
        width: 100%;
    }

    .checkout-flow .field input,
    .checkout-flow .field select,
    .checkout-flow .discount-row input,
    .search-shell input {
        min-height: 48px;
    }

    .filter-chip,
    .variant-options a,
    .qty-control button,
    .search-shell .icon-button {
        min-width: 48px;
        min-height: 48px;
    }
}

/* ==========================================================================
   Redesign-existing-projects audit polish: desktop/tablet/mobile refinement
   ========================================================================== */

:root {
    --kyro-panel: rgba(255, 255, 255, 0.035);
    --kyro-panel-strong: rgba(255, 255, 255, 0.06);
    --kyro-line: rgba(255, 255, 255, 0.16);
    --kyro-motion: cubic-bezier(0.22, 0.8, 0.22, 1);
}

html {
    scroll-padding-top: 88px;
}

body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.site-header {
    min-height: 64px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-links a,
.brand,
.header-actions button,
.cart-link,
.menu-button,
.button,
.filter-chip,
.variant-options a,
.payment-method,
.accordion-button,
.footer-grid a,
.footer-social {
    -webkit-tap-highlight-color: transparent;
}

.nav-links a.is-active::after {
    width: 100%;
}

.icon-button,
.cart-link,
.menu-button {
    transition:
        background 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.icon-button:hover,
.cart-link:hover,
.menu-button:hover {
    background: rgba(255, 255, 255, 0.055);
}

.icon-button:active,
.cart-link:active,
.menu-button:active,
.button:active,
.filter-chip:active,
.variant-options a:active {
    transform: translateY(1px);
}

.hero {
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding-bottom: clamp(48px, 7vh, 92px);
}

.hero-inner {
    width: min(100% - 72px, 1380px);
    margin: 0 auto;
    display: grid;
    justify-items: start;
}

.hero h1 {
    max-width: min(100%, 920px);
    text-wrap: balance;
}

.hero-actions {
    margin-top: clamp(24px, 4vh, 42px);
}

.hero-shop {
    min-height: 62px;
    width: min(100%, 348px);
    justify-content: center;
}

.hero-metrics {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.035),
        rgba(255, 255, 255, 0.012)
    );
}

.metric {
    align-content: center;
}

.featured-section {
    padding-top: clamp(74px, 9vw, 118px);
    padding-bottom: clamp(78px, 10vw, 132px);
}

.featured-section .featured-header {
    margin-bottom: clamp(28px, 5vw, 54px);
}

.featured-section .featured-header h2 {
    letter-spacing: -0.015em;
}

.product-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 265px), 1fr));
}

.featured-section .product-grid,
.related-section .product-grid {
    max-width: 1320px;
}

.product-card {
    min-height: 100%;
    background: #f8f6f1;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-media {
    min-height: 300px;
}

.product-body {
    min-height: 184px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.product-card h3 {
    text-wrap: balance;
}

.product-card .product-price,
.product-card .button,
.notify-form-card {
    margin-top: auto;
}

.product-card .card-price {
    margin-top: auto;
}

.product-card .card-actions {
    margin-top: 0;
}

.product-card .button {
    min-height: 48px;
}

.product-category {
    gap: 6px;
    align-items: flex-start;
}

.product-category span {
    white-space: normal;
    text-align: left;
}

.catalogue-controls.search-panel {
    grid-template-columns: minmax(0, 1fr) minmax(188px, 232px);
    align-items: end;
    gap: 16px;
}

.catalogue-search input,
.catalogue-sort select {
    min-height: 50px;
}

.catalogue-sort {
    align-self: stretch;
}

.catalogue-sort select {
    width: 100%;
}

.filter-row {
    gap: 10px;
}

.filter-chip {
    transition:
        background 160ms ease,
        color 160ms ease,
        border-color 160ms ease,
        transform 160ms ease;
}

.filter-chip:hover {
    border-color: rgba(5, 5, 5, 0.32);
}

.result-count {
    margin-top: 2px;
}

.product-page-shell {
    padding-top: clamp(96px, 10vw, 128px);
}

.product-page-shell .product-detail {
    grid-template-columns: minmax(360px, 0.96fr) minmax(420px, 0.84fr);
    gap: clamp(40px, 6vw, 86px);
}

.product-page-shell .detail-media {
    min-height: clamp(500px, 64vh, 720px);
}

.product-page-shell .detail-media img {
    width: min(102%, 690px);
    transform: scale(1.12);
}

.product-page-shell .detail-info {
    max-width: 720px;
}

.product-page-shell .detail-info h1 {
    margin-bottom: 28px;
    text-wrap: balance;
}

.product-page-shell .variant-options a:hover {
    border-color: rgba(255, 255, 255, 0.36);
    color: var(--white);
}

.product-page-shell .variant-options a.is-active:hover {
    color: var(--black);
}

.product-page-shell .data-row {
    align-items: start;
}

.product-purchase {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 26px;
    margin-top: 8px;
}

.product-price {
    margin-top: 0;
}

.qty-row .button,
.product-purchase .button {
    min-height: 72px;
}

.basket-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
}

.basket-items,
.basket-summary,
.checkout-flow .checkout-card,
.cart-drawer-panel {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.basket-head,
.basket-item {
    grid-template-columns: minmax(270px, 1fr) 108px 136px 94px;
    column-gap: 18px;
}

.basket-item {
    padding-block: 16px;
}

.basket-item img {
    width: 92px;
    height: 92px;
}

.basket-product {
    grid-template-columns: 92px minmax(0, 1fr);
}

.basket-item h3 {
    margin-bottom: 6px;
}

.basket-item p {
    margin-bottom: 9px;
}

.basket-summary {
    align-self: start;
    position: sticky;
    top: 92px;
}

.basket-summary .summary-line,
.cart-drawer-summary .summary-line,
.checkout-flow .summary-line {
    align-items: baseline;
}

.basket-summary .summary-line strong,
.cart-drawer-summary .summary-line strong,
.checkout-flow .summary-line strong {
    font-variant-numeric: tabular-nums;
}

.cart-drawer-panel {
    width: min(440px, 100%);
    gap: 20px;
}

.drawer-item {
    grid-template-columns: 76px 1fr;
    gap: 16px;
    padding-block: 16px;
}

.drawer-item img {
    width: 76px;
    height: 76px;
}

.drawer-item-controls {
    flex-wrap: wrap;
}

.drawer-item-controls .qty-control button {
    min-width: 34px;
}

.checkout-flow .checkout-layout {
    gap: clamp(28px, 4vw, 48px);
}

.checkout-flow .checkout-form {
    gap: 22px 24px;
}

.checkout-flow .checkout-form h2 {
    margin-top: 38px;
}

.checkout-flow .checkout-form h2:first-child {
    margin-top: 0;
}

.checkout-flow .field input,
.checkout-flow .field select,
.checkout-flow .discount-row input {
    transition:
        border-color 160ms ease,
        background 160ms ease,
        box-shadow 160ms ease;
}

.checkout-flow .field input:focus,
.checkout-flow .field select:focus,
.checkout-flow .discount-row input:focus,
.support-form-large input:focus,
.support-form-large textarea:focus,
.catalogue-search input:focus,
.catalogue-sort select:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.checkout-flow .checkout-layout > .checkout-card:last-child {
    position: sticky;
    top: 92px;
}

.faq-layout {
    align-items: start;
}

.faq-side button {
    font-size: 15px;
    line-height: 1.35;
}

.accordion-button span:first-child {
    line-height: 1.45;
}

.accordion-content {
    max-width: 820px;
}

.support-page {
    padding-top: clamp(86px, 10vw, 126px);
}

.support-intro {
    margin-bottom: clamp(34px, 5vw, 58px);
}

.support-form-large {
    gap: 18px 22px;
}

.support-form-large .field input,
.support-form-large .field textarea {
    background: rgba(255, 255, 255, 0.62);
}

.coa-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.coa-item {
    min-height: 180px;
    transition:
        background 180ms ease,
        opacity 180ms ease,
        transform 180ms ease,
        border-color 180ms ease;
}

.coa-variant-row {
    gap: 7px;
}

.coa-variant-row button {
    min-height: 38px;
}

.search-drawer {
    padding-inline: clamp(18px, 5vw, 72px);
}

.search-shell,
.search-results {
    width: min(880px, 100%);
}

.search-result {
    transition:
        background 150ms ease,
        transform 150ms ease;
}

.search-result:hover {
    transform: translateX(2px);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.4;
}

.footer-social.is-disabled {
    cursor: default;
    opacity: 0.72;
}

.site-footer {
    overflow: hidden;
}

.footer-grid {
    min-width: 0;
}

.footer-grid > div {
    min-width: 0;
}

@media (max-width: 1180px) {
    .basket-head,
    .basket-item {
        grid-template-columns: minmax(240px, 1fr) 92px 132px 84px;
        column-gap: 14px;
    }

    .basket-layout,
    .checkout-flow .checkout-layout {
        grid-template-columns: 1fr;
    }

    .basket-summary,
    .checkout-flow .checkout-layout > .checkout-card:last-child {
        position: static;
    }
}

@media (max-width: 820px) {
    .site-header {
        min-height: 60px;
        padding-block: 12px;
    }

    .header-actions {
        margin-left: auto;
    }

    .mobile-menu {
        top: 60px;
        padding: 10px 20px 18px;
    }

    .hero {
        min-height: 100svh;
        padding-top: 84px;
        padding-bottom: 38px;
    }

    .hero-inner {
        width: min(100% - 40px, 680px);
        min-height: calc(100svh - 122px);
        align-content: center;
    }

    .hero h1 {
        font-size: clamp(68px, 17vw, 118px);
        line-height: 0.9;
    }

    .hero h1 span {
        font-size: clamp(18px, 4.8vw, 30px);
        letter-spacing: 0.18em;
    }

    .hero-metrics {
        width: 100%;
        margin-top: clamp(38px, 8vh, 64px);
        grid-template-columns: 1fr;
        padding-top: 0;
    }

    .metric {
        min-height: 58px;
        padding: 13px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .metric:last-child {
        border-bottom: 0;
    }

    .featured-section > .section-header,
    .featured-section > .product-grid,
    .featured-section > .center-action,
    .related-section > .section-header,
    .related-section > .product-grid {
        width: calc(100% - 32px);
    }

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

    .product-media {
        min-height: 260px;
        height: 280px;
    }

    .product-media img {
        height: 258px;
        transform: translateZ(0) scale(1.18);
    }

    .product-card:hover .product-media img {
        transform: translate3d(0, -6px, 0) scale(1.22);
    }

    .catalogue-controls.search-panel {
        grid-template-columns: 1fr;
    }

    .filter-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

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

    .filter-chip {
        flex: 0 0 auto;
        min-height: 44px;
    }

    .product-page-shell {
        padding-inline: 0;
        padding-top: 84px;
    }

    .product-page-shell .product-detail {
        width: 100%;
        gap: 28px;
    }

    .product-back-link {
        margin-left: 18px;
    }

    .product-page-shell .detail-media {
        min-height: min(62vh, 540px);
        border-left: 0;
        border-right: 0;
    }

    .product-page-shell .detail-media img {
        width: min(92vw, 560px);
        transform: scale(1.02);
    }

    .product-page-shell .detail-info {
        max-width: none;
        padding-inline: clamp(18px, 5vw, 34px);
    }

    .product-page-shell .variant-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-page-shell .data-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px 0;
    }

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

    .basket-page {
        padding-inline: 18px;
    }

    .basket-top {
        gap: 18px;
    }

    .basket-top h1 {
        letter-spacing: 0.16em;
    }

    .basket-head {
        display: none;
    }

    .basket-item {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 20px 0;
    }

    .basket-item > strong,
    .basket-item .qty-control {
        justify-self: stretch;
        text-align: left;
    }

    .basket-item > strong::before,
    .basket-item .qty-control::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 8px;
        color: rgba(255, 255, 255, 0.52);
        text-transform: uppercase;
        letter-spacing: 0.16em;
        font-size: 10px;
    }

    .basket-item .qty-control {
        width: min(100%, 240px);
    }

    .basket-summary .button {
        min-height: 62px;
    }

    .checkout-flow .checkout-layout {
        gap: 24px;
    }

    .checkout-flow .checkout-card,
    .checkout-flow .checkout-layout > .checkout-card:last-child {
        padding: 24px 20px;
    }

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

    .checkout-flow .checkout-form h2,
    .checkout-flow .checkout-form p,
    .checkout-flow .field {
        grid-column: 1 / -1;
    }

    .checkout-flow .cart-item {
        grid-template-columns: 58px minmax(0, 1fr) 36px;
    }

    .faq-section {
        padding-top: 56px;
    }

    .faq-layout {
        gap: 30px;
    }

    .faq-side button {
        font-size: 12px;
        padding-inline: 18px;
    }

    .accordion-button {
        min-height: 70px;
        padding: 20px 0;
    }

    .accordion-content {
        font-size: 15px;
    }

    .support-page {
        width: min(100% - 36px, 760px);
        padding-block: 72px 84px;
    }

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

    .support-form-large .field.full {
        grid-column: 1;
    }

    .site-footer {
        grid-template-columns: 1fr;
    }

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

    .footer-grid > div {
        min-height: auto;
        padding-bottom: 28px;
    }
}

@media (max-width: 640px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
        padding-inline: 18px;
    }

    .brand span {
        letter-spacing: 0.28em;
    }

    .header-actions {
        gap: 8px;
    }

    .icon-button,
    .cart-link,
    .menu-button {
        width: 48px;
        height: 48px;
    }

    .hero-inner {
        width: min(100% - 32px, 520px);
        justify-items: start;
    }

    .hero-shop {
        width: 100%;
    }

    .featured-section {
        padding-top: 62px;
    }

    .featured-section .featured-header {
        justify-content: flex-start;
        text-align: left;
    }

    .featured-section .featured-header h2 {
        font-size: clamp(54px, 17vw, 82px);
    }

    .product-grid {
        grid-template-columns: 1fr;
        border-left: 0;
    }

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

    .product-media {
        min-height: 248px;
        height: 260px;
    }

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

    .product-body {
        min-height: 0;
        padding: 22px 20px 24px;
    }

    .catalogue-search input,
    .catalogue-sort select {
        min-height: 52px;
    }

    .product-page-shell .detail-media {
        min-height: 440px;
    }

    .product-price {
        font-size: clamp(34px, 12vw, 48px);
    }

    .qty-row .button,
    .product-purchase .button {
        min-height: 62px;
    }

    .trust-badge-row {
        grid-template-columns: 1fr;
    }

    .basket-product {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .basket-item img {
        width: 82px;
        height: 82px;
    }

    .basket-summary,
    .basket-items {
        padding: 20px 16px;
    }

    .checkout-flow .method-row,
    .checkout-flow .payment-method {
        grid-template-columns: auto minmax(0, 1fr);
        row-gap: 6px;
    }

    .checkout-flow .method-row small,
    .checkout-flow .payment-method small {
        grid-column: 2;
        justify-self: start;
    }

    .search-drawer {
        padding-top: 78px;
    }

    .search-shell {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
    }

    .search-results {
        max-height: 64vh;
    }

    .coa-item {
        min-height: 168px;
    }

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

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: left;
    }

    .footer-bottom strong,
    .footer-bottom span:first-child,
    .footer-bottom span:last-child {
        justify-self: start;
    }
}

@media (max-width: 430px) {
    .hero h1 {
        font-size: clamp(58px, 20vw, 78px);
    }

    .hero h1 span {
        font-size: 17px;
        letter-spacing: 0.18em;
    }

    .metric strong {
        font-size: 14px;
    }

    .product-page-shell .variant-options {
        gap: 8px;
    }

    .product-page-shell .variant-options a {
        min-height: 56px;
        padding: 10px 12px;
    }

    .product-page-shell .detail-info h1 {
        letter-spacing: 0.12em;
    }

    .product-page-shell .detail-media {
        min-height: 380px;
    }

    .product-page-shell .detail-media img {
        width: min(94vw, 430px);
    }

    .basket-top {
        align-items: start;
    }

    .basket-top .continue-link {
        margin-left: 0;
    }

    .checkout-flow .cart-item {
        grid-template-columns: 52px minmax(0, 1fr) 34px;
        gap: 10px;
    }

    .support-intro p:last-child {
        white-space: normal;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 390px) {
    .site-header {
        padding-inline: 14px;
    }

    .brand span {
        letter-spacing: 0.22em;
    }

    .icon-button,
    .cart-link,
    .menu-button {
        width: 46px;
        height: 46px;
    }

    .hero-inner {
        width: min(100% - 28px, 360px);
    }

    .hero h1 {
        font-size: clamp(52px, 19vw, 70px);
        letter-spacing: 0.14em;
    }

    .product-page-shell .detail-info {
        padding-inline: 16px;
    }

    .basket-page {
        padding-inline: 14px;
    }

    .basket-product {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .basket-item img {
        width: 76px;
        height: 76px;
    }

    .basket-summary,
    .basket-items {
        padding: 18px 14px;
    }

    .checkout-flow .checkout-card,
    .checkout-flow .checkout-layout > .checkout-card:last-child {
        padding: 20px 16px;
    }

    .checkout-flow .field input,
    .checkout-flow .field select,
    .checkout-flow .discount-row input,
    .support-form-large .field input,
    .support-form-large .field textarea {
        font-size: 16px;
    }
}

@media (pointer: coarse) {
    .button,
    .filter-chip,
    .variant-options a,
    .qty-control button,
    .drawer-remove-btn,
    .basket-item button:not(.qty-control button),
    .footer-grid a,
    .footer-social,
    .accordion-button {
        min-height: 48px;
    }

    .product-card:hover,
    .coa-item:hover,
    .search-result:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero::after {
        animation: none !important;
    }

    .product-card,
    .product-media img,
    .cart-drawer-panel,
    .accordion-content,
    .basket-item,
    .drawer-item,
    .search-result {
        transition: none !important;
        animation: none !important;
    }
}

/* Add-to-cart confirmation feedback */
.button.is-added,
.product-card .button.is-added,
.product-purchase .button.is-added,
.sticky-add-bar .button.is-added {
    background: #2a9461;
    color: #ffffff;
    border-color: #2a9461;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.22),
        0 10px 28px rgba(42, 148, 97, 0.22);
}

.button.is-added:hover,
.product-card .button.is-added:hover,
.product-purchase .button.is-added:hover,
.sticky-add-bar .button.is-added:hover {
    background: #2a9461;
    color: #ffffff;
}

/* Static prototype honesty pass */
.coa-status-label {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(10, 10, 10, 0.12);
    color: rgba(10, 10, 10, 0.62);
    background: rgba(10, 10, 10, 0.035);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.coa-status-label.is-coming-soon {
    color: rgba(10, 10, 10, 0.46);
    background: rgba(10, 10, 10, 0.055);
}

.checkout-note,
.checkout-static-note,
.checkout-summary-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.7;
}

.support-launch-card {
    width: min(100%, 980px);
    margin: 0 auto;
    padding: clamp(28px, 5vw, 54px);
    display: grid;
    gap: 18px;
    justify-items: center;
    text-align: center;
    border: 1px solid rgba(10, 10, 10, 0.16);
    background: rgba(255, 255, 255, 0.48);
}

.support-launch-card h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 48px);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.support-launch-card h2 a {
    color: var(--ink);
}

.support-launch-card p:not(.eyebrow) {
    max-width: 640px;
    margin: 0;
    color: rgba(10, 10, 10, 0.66);
    line-height: 1.7;
}

.support-form-large.is-static-disabled input,
.support-form-large.is-static-disabled textarea {
    opacity: 0.62;
    cursor: not-allowed;
}

.checkout-flow .checkout-note,
.checkout-flow .checkout-static-note,
.checkout-flow .checkout-summary-note {
    color: rgba(255, 255, 255, 0.58);
}

.checkout-flow .checkout-static-note {
    padding: 14px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-flow .checkout-summary-note {
    margin: 8px 0 14px;
}

/* Refined card outlines and static checkout polish */
.product-grid {
    border-top: 1px solid rgba(10, 10, 10, 0.08);
    border-left: 1px solid rgba(10, 10, 10, 0.08);
}

.product-card {
    border: 0;
    border-right: 1px solid rgba(10, 10, 10, 0.08);
    border-bottom: 1px solid rgba(10, 10, 10, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.product-card:hover {
    background: #fbfaf6;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 18px 42px rgba(10, 10, 10, 0.055);
}

.product-card.is-in-cart {
    box-shadow:
        inset 0 0 0 1px rgba(7, 22, 35, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.checkout-flow .payment-method {
    grid-template-columns: 20px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 4px;
}

.checkout-flow .payment-method > span {
    grid-row: 1 / span 2;
    align-self: center;
}

.checkout-flow .payment-method > strong {
    align-self: end;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
}

.checkout-flow .payment-method > small {
    grid-column: 2;
    justify-self: start;
}

.checkout-flow .checkout-region-note,
.checkout-flow .checkout-delivery-card {
    grid-column: 1 / -1;
    min-height: 70px;
    padding: 18px 20px;
    display: grid;
    gap: 7px;
    align-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.035);
}

.checkout-flow .checkout-region-note span,
.checkout-flow .checkout-delivery-card span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.checkout-flow .checkout-region-note strong,
.checkout-flow .checkout-delivery-card strong {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

.checkout-flow .checkout-delivery-card small {
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.6;
}

.checkout-flow .checkout-payment-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.checkout-flow .checkout-payment-panel h2,
.checkout-flow .checkout-payment-panel p,
.checkout-flow .checkout-payment-panel .payment-section,
.checkout-flow .checkout-payment-panel .checkout-back-button {
    grid-column: 1;
}

.checkout-flow .payment-section {
    display: grid;
    gap: 12px;
}

.checkout-flow .checkout-back-button {
    width: fit-content;
    min-width: 180px;
}

.checkout-flow .checkout-confirmation {
    min-height: 440px;
    display: grid;
    align-content: center;
    gap: 18px;
}

.checkout-flow .checkout-confirmation h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(46px, 8vw, 92px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.95;
}

.checkout-flow .checkout-confirmation p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
}

.checkout-flow .confirmation-meta {
    margin: 14px 0 4px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.checkout-flow .confirmation-meta div {
    min-height: 82px;
    padding: 16px;
    display: grid;
    align-content: center;
    gap: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.checkout-flow .confirmation-meta div:last-child {
    border-right: 0;
}

.checkout-flow .confirmation-meta span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.checkout-flow .confirmation-meta strong {
    color: var(--white);
    font-size: 16px;
}

/* Basket/search conversion polish */
.basket-addon {
    margin-top: 24px;
    padding: 24px;
    display: grid;
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(145deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
    color: var(--white);
}

.basket-addon h2 {
    margin: 6px 0 10px;
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.basket-addon p:not(.eyebrow) {
    margin: 0;
    max-width: 44ch;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.7;
}

.basket-addon-card {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.035);
}

.basket-addon-card img {
    width: 86px;
    height: 86px;
    object-fit: contain;
}

.basket-addon-card span {
    display: inline-block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.52);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 9px;
}

.basket-addon-card h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 500;
}

.basket-addon-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
}

.basket-addon-card .button {
    min-width: 148px;
}

.empty-state.dark-empty.basket-empty-live {
    display: grid;
    gap: 28px;
    align-items: start;
    padding: clamp(28px, 5vw, 56px);
    justify-items: center;
    text-align: center;
}

.empty-recommendations {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 1180px);
    max-width: 1180px;
    border-top: 1px solid rgba(10, 10, 10, 0.08);
    border-left: 1px solid rgba(10, 10, 10, 0.08);
    background: #f5f3ee;
    color: var(--ink);
}

.empty-recommendations .product-card {
    min-height: 100%;
}

.empty-recommendations .product-media {
    height: 210px;
    min-height: 210px;
}

.empty-recommendations .product-media img {
    height: 172px;
}

.empty-recommendations .product-body {
    min-height: 172px;
    padding: 18px 20px 20px;
    color: var(--ink);
    text-align: left;
}

.empty-recommendations .card-price,
.empty-recommendations .product-card p,
.empty-recommendations .product-card h3,
.empty-recommendations .product-card a {
    color: var(--ink);
}

.empty-recommendations .card-actions {
    justify-self: end;
    width: min(100%, 180px);
}

.basket-page .empty-recommendations {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.025);
    color: var(--white);
}

.basket-page .empty-recommendations .product-card {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--white);
}

.basket-page .empty-recommendations .product-media {
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.basket-page .empty-recommendations .product-body {
    color: var(--white);
    background: rgba(0, 0, 0, 0.16);
}

.basket-page .empty-recommendations .card-price,
.basket-page .empty-recommendations .product-card p,
.basket-page .empty-recommendations .product-card h3,
.basket-page .empty-recommendations .product-card a {
    color: var(--white);
}

.basket-page .empty-recommendations .product-card .tag {
    border-color: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.66);
}

.basket-page .empty-recommendations .button {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.basket-page .empty-recommendations .button.button-outline,
.basket-page .empty-recommendations .button.is-in-cart {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.38);
}

.search-result {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 14px;
}

.search-result-media {
    display: grid;
    place-items: center;
}

.search-result-body {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.search-result-body span {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 9px;
}

.search-result-body small {
    color: rgba(10, 10, 10, 0.62);
}

.search-result-actions {
    display: grid;
    gap: 8px;
    justify-items: end;
}

.search-result-actions a,
.search-result-actions button,
.search-result-actions span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(10, 10, 10, 0.16);
    background: transparent;
    color: var(--ink);
    padding: 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 9px;
    cursor: pointer;
}

.search-result-actions button {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.search-empty {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.search-empty h3 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 400;
}

.search-empty p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.68);
}

.empty-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 0 18px;
}

.empty-suggestions button {
    min-height: 34px;
    border: 1px solid rgba(10, 10, 10, 0.14);
    background: rgba(255, 255, 255, 0.62);
    padding: 0 12px;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 9px;
    cursor: pointer;
}

/* Mobile basket and document lightbox refinements */
.catalogue-controls.search-panel {
    grid-template-columns: minmax(0, 1fr) minmax(164px, 212px);
}

.image-lightbox.is-coa-document {
    overflow: auto;
    place-items: center;
    padding: 26px 16px;
}

.image-lightbox.is-coa-document figure {
    width: min(92vw, 820px);
    height: auto;
    max-height: calc(100svh - 52px);
    min-height: 0;
    place-items: center;
}

.image-lightbox.is-coa-document img {
    width: auto;
    max-width: 100%;
    max-height: calc(100svh - 64px);
}

.image-lightbox.is-coa-document .image-lightbox-close {
    position: fixed;
    top: 18px;
    right: 18px;
}

/* Focused responsive alignment pass */
@media (min-width: 821px) {
    .hero-inner {
        width: min(100% - 112px, 1320px);
        min-height: calc(100svh - 74px);
        align-content: center;
        padding-top: clamp(28px, 4vh, 54px);
    }

    .hero h1,
    .hero-actions,
    .hero-metrics {
        justify-self: stretch;
    }

    .hero h1 {
        max-width: 900px;
    }

    .hero-metrics {
        width: 100%;
        margin-top: clamp(72px, 10vh, 118px);
    }
}

.featured-section .featured-header h2 {
    line-height: 0.86;
}

.featured-section .featured-subtitle {
    margin-top: clamp(18px, 2.4vw, 30px);
}

@media (max-width: 820px) {
    .mobile-menu {
        z-index: 80;
        inset: 60px 0 auto;
        padding: 6px 20px 18px;
        background: rgba(4, 15, 25, 0.98);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
    }

    .mobile-menu a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        min-height: 54px;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        text-align: left;
    }

    .mobile-menu [data-mobile-cart-link] {
        justify-content: space-between;
    }

    .mobile-cart-count {
        margin-left: auto;
        flex: 0 0 auto;
    }

    .mobile-menu a:last-child {
        border-bottom: 0;
    }

    .hero-inner {
        align-content: center;
    }
}

@media (max-width: 640px) {
    .catalogue-controls.search-panel {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 16px;
    }

    .catalogue-search,
    .search-suggestions {
        grid-column: 1 / -1;
    }

    .catalogue-sort {
        justify-self: stretch;
        width: 100%;
    }

    .catalogue-sort select {
        min-height: 52px;
    }

    .hero-inner {
        justify-items: stretch;
    }

    .hero h1,
    .hero-actions,
    .hero-metrics {
        width: 100%;
    }

    .hero h1 {
        text-align: left;
    }

    .featured-section .featured-header {
        text-align: center;
        justify-content: center;
    }

    .featured-section .featured-subtitle {
        margin-top: 22px;
        margin-bottom: 30px;
        font-size: 11px;
        letter-spacing: 0.18em;
    }

    .basket-page {
        padding-inline: 16px;
        padding-top: 84px;
    }

    .basket-top {
        display: grid;
        gap: 18px;
        margin-bottom: 24px;
    }

    .basket-top h1 {
        font-size: clamp(42px, 14vw, 58px);
        letter-spacing: 0.18em;
    }

    .continue-link {
        justify-self: start;
        font-size: 13px;
        letter-spacing: 0.16em;
    }

    .basket-layout {
        gap: 18px;
    }

    .basket-items,
    .basket-summary {
        padding: 18px 16px;
        border-color: rgba(255, 255, 255, 0.2);
    }

    .basket-item {
        gap: 12px;
        padding: 22px 0;
    }

    .basket-product {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 16px;
        align-items: center;
    }

    .basket-item img {
        width: 78px;
        height: 78px;
    }

    .basket-item h3 {
        margin-bottom: 6px;
        font-size: 15px;
        line-height: 1.35;
        letter-spacing: 0.08em;
    }

    .basket-item p {
        margin-bottom: 8px;
        font-size: 14px;
    }

    .basket-item > strong {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 16px;
        text-align: right;
        font-size: 15px;
    }

    .basket-item > strong::before {
        margin-bottom: 0;
    }

    .basket-item .qty-control {
        width: 100%;
        max-width: none;
        grid-template-columns: 50px 1fr 50px;
    }

    .basket-item .qty-control::before {
        grid-column: 1 / -1;
    }

    .basket-item .qty-control button,
    .basket-item .qty-control output {
        min-height: 46px;
    }

    .basket-addon {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 20px 16px;
    }

    .basket-addon-card {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 14px;
    }

    .basket-addon-card img {
        width: 76px;
        height: 76px;
    }

    .basket-addon-card .button {
        grid-column: 1 / -1;
        width: 100%;
        min-height: 54px;
    }

    .empty-recommendations {
        grid-template-columns: 1fr;
    }

    .search-result {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .search-result-actions {
        grid-column: 1 / -1;
        grid-template-columns: 1fr 1fr;
        justify-items: stretch;
    }

    .search-result-actions a,
    .search-result-actions button,
    .search-result-actions span {
        min-height: 44px;
        width: 100%;
    }

    .checkout-flow .payment-method {
        grid-template-columns: 20px minmax(0, 1fr);
        min-height: 72px;
        padding: 16px;
    }

    .checkout-flow .checkout-form {
        gap: 16px;
    }
}

@media (max-width: 560px) {
    .filter-row {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        margin: 12px 0 18px;
        padding: 0 0 10px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

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

    .filter-chip {
        flex: 0 0 auto;
        width: auto;
        min-width: max-content;
        min-height: 44px;
        padding: 0 18px;
        white-space: nowrap;
        overflow-wrap: normal;
        scroll-snap-align: start;
    }

    .filter-chip.is-active {
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
    }
}

@media (max-width: 360px) {
    .catalogue-controls.search-panel {
        grid-template-columns: 1fr;
    }

    .basket-product {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 12px;
    }

    .basket-item img {
        width: 68px;
        height: 68px;
    }

    .basket-item h3 {
        font-size: 14px;
    }

    .search-result {
        grid-template-columns: 56px minmax(0, 1fr);
    }
}

/* Adaptive catalogue grid: stretches sparse sections, caps dense sections at four columns. */
.product-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, max(265px, 25%)), 1fr));
}

/* Basket, mobile navigation, and product mobile stabilisation */

/* WooCommerce catalogue bridge: keep /shop on the original KYRO card system. */
.shop-page .woocommerce-result-count,
.shop-page ul.products,
.shop-page .products {
    list-style: none;
}

.shop-page .catalogue-controls.search-panel {
    width: 100%;
}

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

.shop-page .filter-chip.is-disabled {
    opacity: 0.42;
    cursor: not-allowed;
}

.shop-page .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 265px), 1fr));
    align-items: stretch;
}

.shop-page .product-card {
    min-width: 0;
    overflow: hidden;
}

.shop-page .product-media {
    height: clamp(228px, 22vw, 292px);
    min-height: 0;
    padding: 18px;
    overflow: hidden;
}

.shop-page .product-media img {
    display: block;
    width: min(74%, 250px);
    max-width: 250px;
    height: min(232px, 84%);
    max-height: 232px;
    object-fit: contain;
    transform: translateZ(0);
}

.shop-page .product-card:hover .product-media img {
    transform: translate3d(0, -5px, 0) scale(1.06);
}

.shop-page .product-body {
    min-height: 192px;
}

.shop-page .card-actions {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .shop-page .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-page .product-media {
        height: 236px;
    }

    .shop-page .product-media img {
        width: min(82%, 220px);
        height: 204px;
    }
}

@media (max-width: 430px) {
    .shop-page .product-grid {
        grid-template-columns: 1fr;
    }

    .shop-page .product-media {
        height: 248px;
    }
}
.basket-recommendations {
    width: 100%;
    margin: 32px 0 0;
    color: var(--white);
}

.basket-recommendations .section-header {
    margin-bottom: 16px;
}

.basket-recommendations h2 {
    margin: 0;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: clamp(16px, 1.6vw, 22px);
    font-weight: 500;
}

.basket-recommendations .empty-recommendations {
    width: 100%;
}

.basket-recommendations .basket-recommendation-grid {
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    background: transparent;
}

.basket-recommendations .basket-recommendation-grid .product-card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 0;
}

.basket-recommendations .basket-recommendation-grid .product-media {
    height: clamp(190px, 15vw, 232px);
    min-height: clamp(190px, 15vw, 232px);
}

.basket-recommendations .basket-recommendation-grid .product-media img {
    width: auto;
    height: clamp(148px, 11.5vw, 178px);
    max-width: 72%;
    object-fit: contain;
}

.basket-recommendations .basket-recommendation-grid .product-body {
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    gap: 9px;
    min-height: 184px;
    padding: 20px 22px 22px;
}

.basket-recommendations .basket-recommendation-grid .product-category {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: flex-start;
}

.basket-recommendations .basket-recommendation-grid .card-price {
    margin: 0;
}

.basket-recommendations .basket-recommendation-grid .card-actions {
    width: 100%;
    justify-self: stretch;
    align-self: end;
}

.basket-recommendations .basket-recommendation-grid .product-card .button {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.basket-recommendations .basket-recommendation-grid .product-card .button.is-added {
    background: #1f8f58;
    border-color: #1f8f58;
    color: var(--white);
}

.basket-recommendations .basket-recommendation-grid .product-card .button.button-outline,
.basket-recommendations .basket-recommendation-grid .product-card .button.is-in-cart {
    color: var(--white);
}

@media (max-width: 820px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .mobile-menu {
        background: #050505;
        color: var(--white);
        border-top-color: rgba(255, 255, 255, 0.08);
        border-bottom-color: rgba(255, 255, 255, 0.16);
        box-shadow: 0 24px 42px rgba(0, 0, 0, 0.42);
    }

    .mobile-menu .mobile-search {
        color: var(--white);
    }

    .mobile-cart-count {
        width: 28px;
        height: 28px;
        background: #f4f2ed;
        color: #050505;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
    }

    .product-page-shell {
        overflow-x: hidden;
        padding-left: 0;
        padding-right: 0;
    }

    .product-page-shell .product-detail {
        width: 100%;
        max-width: 100%;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 28px;
        overflow: visible;
    }

    .product-page-shell .detail-media,
    .product-page-shell .detail-info {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .product-page-shell .detail-media {
        min-height: clamp(340px, 72vw, 520px);
        padding: 28px 18px;
        overflow: hidden;
    }

    .detail-media-button {
        min-height: clamp(300px, 66vw, 460px);
    }

    .product-page-shell .detail-media img {
        width: min(88vw, 440px);
        max-height: clamp(280px, 62vw, 430px);
        transform: none;
    }

    .product-page-shell .detail-info {
        padding: 0 clamp(18px, 5vw, 34px) 34px;
    }

    .product-page-shell .detail-info h1,
    .product-page-shell .detail-info h1.is-long-name,
    .product-page-shell .detail-info h1.is-extra-long-name {
        white-space: normal;
        overflow-wrap: normal;
        word-break: normal;
        text-wrap: balance;
        letter-spacing: 0.08em;
        font-size: clamp(34px, 10vw, 52px);
        line-height: 1.05;
    }
}

@media (max-width: 640px) {
    .basket-item .qty-control {
        display: grid;
        width: 100%;
        height: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: auto 48px;
        border-color: rgba(255, 255, 255, 0.28);
        align-items: stretch;
    }

    .basket-item .qty-control::before {
        grid-column: 1 / -1;
        padding: 0 0 10px;
        margin: 0;
        line-height: 1;
    }

    .basket-item .qty-control button,
    .basket-item .qty-control output {
        min-width: 0;
        min-height: 48px;
        height: 48px;
        display: grid;
        place-items: center;
        font-size: 16px;
    }

    .basket-item .qty-control output {
        border-left: 1px solid rgba(255, 255, 255, 0.28);
        border-right: 1px solid rgba(255, 255, 255, 0.28);
    }

    .basket-recommendations {
        margin-top: 24px;
    }

    .basket-recommendations .empty-recommendations,
    .empty-recommendations {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    .product-page-shell .detail-info h1,
    .product-page-shell .detail-info h1.is-long-name,
    .product-page-shell .detail-info h1.is-extra-long-name {
        font-size: clamp(30px, 11vw, 42px);
        letter-spacing: 0.07em;
    }

    .product-page-shell .variant-options {
        grid-template-columns: 1fr;
    }
}
