/* ========================================
   FONT FACES
   ======================================== */
@font-face {
    font-family: 'LD Alterra Cut';
    src: url('../fonts/LD_Alterra_Cut.woff2') format('woff2'),
         url('../fonts/LD_Alterra_Cut.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'LD Alterra';
    src: url('../fonts/LD_Alterra.woff2') format('woff2'),
         url('../fonts/LD_Alterra.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   DESIGN TOKENS
   ======================================== */
:root {
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-grey: #9D9D9D;
    --color-yellow: #FFFF00;
    --color-grey-dark: #333333;
    --color-grey-mid: #666666;
    --color-grey-light: #E5E5E5;
    --color-grey-lightest: #F5F5F5;
    --color-yellow-muted: #E6E600;
    --color-text-primary: #000000;
    --color-text-secondary: #666666;
    --color-text-inverse: #FFFFFF;
    --color-bg-primary: #FFFFFF;
    --color-bg-secondary: #F5F5F5;
    --color-border: #E5E5E5;
    --color-accent: #FFFF00;
    --color-success: #2E7D32;
    --color-error: #D32F2F;

    --font-display: 'LD Alterra Cut', 'Roboto Mono', monospace;  /* design elements only — use sparingly */
    --font-heading: 'Roboto Mono', monospace;                   /* headings: light, uppercase, +10 tracking */
    --font-body: 'Roboto', sans-serif;                          /* body: light */
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-8: 3rem;
    --space-10: 4rem;
    --space-12: 5rem;
    --space-16: 8rem;

    --container-max: 1400px;
    --border-radius: 4px;
    --border-radius-sm: 2px;
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    color: var(--color-text-primary);
    background: var(--color-bg-primary);
    line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: inherit;
}

/*
 * Mono Label Utility
 * Roboto Mono Light, uppercase, tracked — the single source of truth
 * for all small label / badge / caption / button text that uses the heading font.
 * Sizes: default (text-xs), --sm (0.625rem), --lg (text-sm)
 * Tracking: default (0.1em), --wide (0.15em), --tight (0.05em)
 */
.mono-label {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-light);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.mono-label--sm  { font-size: 0.625rem; }
.mono-label--xs  { font-size: 0.5625rem; }
.mono-label--lg  { font-size: var(--text-sm); }
.mono-label--wide { letter-spacing: 0.15em; }
.mono-label--tight { letter-spacing: 0.05em; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-5);
}

/* ========================================
   WORDPRESS UTILITIES
   ======================================== */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background: var(--color-white);
    clip: auto !important;
    clip-path: none;
    color: var(--color-black);
    display: block;
    font-size: var(--text-sm);
    height: auto;
    left: 5px;
    line-height: normal;
    padding: var(--space-3) var(--space-5);
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

.skip-link:focus {
    background: var(--color-yellow);
    color: var(--color-black);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: var(--space-3) var(--space-5);
    z-index: 100000;
}

/* WordPress nav menu list resets */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: var(--space-6);
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Powered by Zonkey */
.powered-by-zonkey {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    opacity: 0.5;
    transition: opacity var(--transition-fast);
}

.powered-by-zonkey:hover {
    opacity: 1;
}

.powered-by-zonkey__text {
    font-family: var(--font-heading);
    font-size: 0.5625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-grey-mid);
}

/* Widget styling */
.widget-title {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-yellow);
    margin-bottom: var(--space-4);
}

/* Breadcrumb bar */
.breadcrumb-bar {
    background: var(--color-grey-lightest);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-3) 0;
    margin: 0;
}
.breadcrumb-bar .breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-light);
    color: var(--color-grey);
    margin: 0;
    padding: 0;
}
.breadcrumb-bar .breadcrumb a {
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}
.breadcrumb-bar .breadcrumb a:hover {
    color: var(--color-black);
}
.breadcrumb-bar .breadcrumb__sep {
    color: var(--color-border);
    font-size: var(--text-xs);
}
.breadcrumb-bar .breadcrumb__current {
    color: var(--color-text-primary);
}
/* Override WC default .woocommerce .breadcrumb margin */
.woocommerce .breadcrumb-bar .breadcrumb {
    margin: 0;
}

/* WooCommerce overrides */
.woocommerce .site-main {
    padding-top: 0;
}

/* ========================================
   SINGLE PRODUCT
   ======================================== */
.single-product .product:not(.product-card) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "gallery summary"
        "tabs    tabs"
        "related related";
    column-gap: var(--space-12);
    row-gap: var(--space-6);
    align-items: start;
    padding: var(--space-10) 0 var(--space-12);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--space-5);
    padding-right: var(--space-5);
}

.single-product .woocommerce-product-gallery { grid-area: gallery; }
.single-product .summary.entry-summary       { grid-area: summary; }
.single-product .woocommerce-tabs             { grid-area: tabs; }
.single-product .related.products,
.single-product .upsells.products             { grid-area: related; }

/* Gallery — sticky on scroll */
/* Override WC default float/width — !important needed because WC + flexslider
   inject inline `style="width: 48%;"` directly on the .images element. */
.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images {
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    margin-bottom: 0 !important;
}
/* Must beat WC's (0,4,2) selector: .woocommerce div.product div.images.woocommerce-product-gallery */
.woocommerce div.product div.images.woocommerce-product-gallery {
    position: relative;
    margin: 0;
    padding: 0;
}

/* Reset WC flexslider defaults */
.single-product .woocommerce-product-gallery .flex-viewport {
    margin: 0;
    padding: 0;
}

.single-product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
    position: relative;
    width: 100% !important;
    max-width: none !important;
    background: var(--color-grey-lightest);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    padding: 0;
    margin: 0 !important;
    overflow: hidden;
}

/* Flexslider sometimes wraps the gallery in .flex-viewport with a fixed
   inline width; force it to fill the container. */
.single-product .woocommerce-product-gallery .flex-viewport,
.single-product .woocommerce-product-gallery .flex-viewport .slides,
.single-product .woocommerce-product-gallery__image,
.single-product .woocommerce-product-gallery__image a {
    width: 100% !important;
    max-width: none !important;
}

.single-product .woocommerce-product-gallery img {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    display: block;
    object-fit: contain;
    transition: transform 0.4s ease;
}

/* Prevent zoom overlay image from inflating the container height */
.single-product .woocommerce-product-gallery__image {
    line-height: 0;
}
.single-product .woocommerce-product-gallery__image a {
    display: block;
    line-height: 0;
}

.single-product .woocommerce-product-gallery:hover img {
    transform: scale(1.03);
}

/* Gallery thumbnails */
.single-product .flex-control-thumbs {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-3);
    list-style: none;
    padding: 0;
}

.single-product .flex-control-thumbs li {
    width: 72px;
    height: 72px;
    border-radius: var(--border-radius);
    border: 2px solid var(--color-border);
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--transition-fast);
    background: var(--color-grey-lightest);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-1);
}

.single-product .flex-control-thumbs li:hover,
.single-product .flex-control-thumbs li .flex-active {
    border-color: var(--color-black);
}

.single-product .flex-control-thumbs img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

/* Gallery zoom icon */
.single-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    z-index: 2;
    width: 36px;
    height: 36px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    font-size: 0;
}

/* Product info */
/* WooCommerce + flexslider inject inline `style="width: 47%;"` on these
   elements, so we need !important to win the cascade and let the .product
   grid (1fr 1fr) handle width. */
.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
    float: none !important;
    clear: none !important;
    width: auto !important;
    max-width: none !important;
}
.single-product .summary.entry-summary {
    padding-top: var(--space-1);
}

/* Brand (category) above title */
.single-product .product_meta {
    order: -1;
    margin-top: 0;
    margin-bottom: var(--space-2);
    padding-top: 0;
    border-top: none;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-grey);
}

.single-product .product_meta > span {
    display: inline;
    margin-right: var(--space-4);
    margin-bottom: 0;
}

.single-product .product_meta a {
    color: var(--color-grey);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.single-product .product_meta a:hover {
    color: var(--color-black);
}

/* Title */
.single-product .product_title {
    font-size: var(--text-2xl);
    line-height: 1.25;
    margin-bottom: var(--space-3);
    color: var(--color-black);
}

/* Short description */
.single-product .woocommerce-product-details__short-description {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-5);
}

/* Price box */
.single-product .price {
    background: var(--color-grey-lightest);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: var(--space-4) var(--space-5);
    margin-bottom: var(--space-5);
    display: flex;
    align-items: baseline;
    gap: var(--space-3);
}

.single-product .price .woocommerce-Price-amount {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.05em;
    color: var(--color-black);
}

/* Site-wide: bold pricing in product cards, cart, checkout, mini-basket. */
.woocommerce-Price-amount.amount {
    font-weight: var(--font-weight-bold);
}

.single-product .price del {
    color: var(--color-grey);
}

.single-product .price del .woocommerce-Price-amount {
    font-size: var(--text-base);
    color: var(--color-grey);
    text-decoration: line-through;
}

.single-product .price ins {
    text-decoration: none;
}

.price-vat-note {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    color: var(--color-grey);
    letter-spacing: 0;
    text-transform: none;
    margin-top: var(--space-2);
}

/* Stock status */
.single-product .stock {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-5);
}

.single-product .stock.in-stock {
    color: #166534;
}

.single-product .stock.in-stock::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16a34a;
}

.single-product .stock.out-of-stock {
    color: #991b1b;
}

.single-product .stock.out-of-stock::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dc2626;
}

/* Add to cart form */
.single-product form.cart {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.single-product .quantity .qty {
    width: 64px;
    height: 48px;
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: var(--text-base);
    text-align: center;
    transition: border-color var(--transition-fast);
}

.single-product .quantity .qty:focus {
    outline: none;
    border-color: var(--color-black);
}

.single-product .single_add_to_cart_button {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 var(--space-6);
    background: var(--color-yellow);
    color: var(--color-black);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 2px solid var(--color-yellow);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.single-product .single_add_to_cart_button:hover {
    background: var(--color-black);
    color: var(--color-yellow);
    border-color: var(--color-black);
}

/* Variations (variable products) */
.single-product .variations {
    width: 100%;
    margin-bottom: var(--space-4);
}

.single-product .variations td {
    display: block;
    padding: 0;
}

.single-product .variations .label {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-bottom: var(--space-1);
}

.single-product .variations select {
    width: 100%;
    padding: var(--space-3);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
}

/* Product tabs — break out of the 1200px max-width parent and span the
   full viewport width regardless of container size. The inner content
   (tab list + panel) is constrained back to the same content width and
   centred so it lines up with the gallery/summary above it. */
.single-product .woocommerce-tabs {
    background: var(--color-grey-lightest);
    border-top: 1px solid var(--color-border);
    padding: var(--space-10) var(--space-5);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.single-product .woocommerce-tabs > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
    gap: var(--space-1);
    list-style: none;
    padding: 0;
    margin: 0 auto var(--space-6);
    max-width: 1200px;
    border-bottom: 1px solid var(--color-border);
}

.single-product .woocommerce-tabs ul.tabs li {
    margin: 0;
}

.single-product .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: var(--space-3) var(--space-5);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-grey);
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
}

.single-product .woocommerce-tabs ul.tabs li a:hover {
    color: var(--color-black);
}

.single-product .woocommerce-tabs ul.tabs li.active a {
    color: var(--color-black);
    border-bottom-color: var(--color-yellow);
}

.woocommerce div.product .woocommerce-tabs .panel {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    line-height: 1.8;
    color: var(--color-text-secondary);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.single-product .woocommerce-tabs .panel h2 {
    font-size: var(--text-base);
    margin-bottom: var(--space-4);
    color: var(--color-black);
}

/* ── Product description components ── */
.pd-intro {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-grey-dark);
    max-width: 720px;
    margin-bottom: var(--space-8);
}

/* Spec table */
.pd-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-10);
    font-size: var(--text-sm);
}
.pd-spec-table caption {
    text-align: left;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-black);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--color-black);
}
.pd-spec-table tr {
    border-bottom: 1px solid var(--color-border);
}
.pd-spec-table tr:last-child {
    border-bottom: none;
}
.pd-spec-table th {
    text-align: left;
    font-weight: 600;
    color: var(--color-grey-mid);
    padding: var(--space-3) var(--space-4) var(--space-3) 0;
    width: 40%;
    vertical-align: top;
    font-size: var(--text-sm);
}
.pd-spec-table td {
    padding: var(--space-3) 0;
    color: var(--color-black);
    font-weight: var(--font-weight-medium);
}
.pd-spec-table .pd-highlight {
    font-weight: var(--font-weight-bold);
}

/* Compatibility grid */
.pd-compat {
    margin-bottom: var(--space-10);
}
.pd-compat__heading {
    font-size: var(--text-xs);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--color-black);
    margin-bottom: var(--space-4);
}
.pd-compat__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--space-3);
}
.pd-compat__item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: var(--color-grey-lightest);
    border-radius: var(--border-radius);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-black);
    border: 1px solid var(--color-border);
    transition: border-color var(--transition-fast);
}
.pd-compat__item:hover {
    border-color: var(--color-grey);
}
.pd-compat__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--color-success);
}
.pd-compat__note {
    grid-column: 1 / -1;
    font-size: var(--text-xs);
    color: var(--color-grey);
    padding-top: var(--space-2);
    font-style: italic;
}

/* Signs / when to replace */
.pd-signs {
    margin-bottom: var(--space-10);
}
.pd-signs__heading {
    font-size: var(--text-xs);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--color-black);
    margin-bottom: var(--space-4);
}
.pd-signs__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}
.pd-signs__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: #fffbeb;
    border-radius: var(--border-radius);
    font-size: var(--text-sm);
    line-height: 1.5;
    color: var(--color-grey-dark);
    border: 1px solid #fde68a;
}
.pd-signs__icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #f59e0b;
    margin-top: 2px;
}

/* Pro tip callout */
.pd-tip {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    background: var(--color-grey-lightest);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-yellow);
    border-radius: var(--border-radius);
    padding: var(--space-5) var(--space-6);
    margin-bottom: var(--space-10);
}
.pd-tip__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-yellow-muted);
    margin-top: 2px;
}
.pd-tip__content {
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--color-grey-dark);
}
.pd-tip__label {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-light);
    color: var(--color-black);
    display: block;
    margin-bottom: var(--space-1);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Product description responsive */
@media (max-width: 640px) {
    .pd-spec-table th { width: 45%; padding-right: var(--space-3); }
    .pd-compat__grid { grid-template-columns: 1fr; }
    .pd-signs__list { grid-template-columns: 1fr; }
}

/* Related / upsell products */
.single-product .related.products,
.single-product .upsells.products {
    padding-top: var(--space-8);
}

.single-product .related.products > h2,
.single-product .upsells.products > h2 {
    font-size: var(--text-base);
    margin-bottom: var(--space-6);
}

.single-product .related.products ul.products,
.single-product .upsells.products ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Ensure product card images fill container on single product page */
.single-product .product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* WC loop product cards — override float/width defaults */
.products-grid li.product,
.woocommerce ul.products li.product {
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
.products-grid li.product,
.woocommerce ul.products li.product {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-base);
}
.products-grid li.product:hover,
.woocommerce ul.products li.product:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.products-grid li.product a img,
.woocommerce ul.products li.product a img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    margin: 0;
    float: none;
}
.products-grid li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: var(--text-sm);
    padding: var(--space-3) var(--space-4) 0;
}
.products-grid li.product .price,
.woocommerce ul.products li.product .price {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-base);
    background: none;
    border: none;
    margin: 0;
}
.products-grid li.product .button,
.products-grid li.product .add_to_cart_button,
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
    margin: auto var(--space-4) var(--space-4);
    align-self: flex-start;
}

/* --- Compatibility Badges (after short description) --- */
.product-compat-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-2);
    margin: var(--space-4) 0;
    font-size: var(--text-sm);
    line-height: 1.4;
}
.product-compat-badges__label {
    font-weight: var(--font-weight-semibold);
    color: var(--neutral-700);
    margin-right: var(--space-1);
}
.product-compat-badges__item {
    display: inline-flex;
    align-items: center;
    background: var(--green-50, #f0fdf4);
    color: var(--green-700, #15803d);
    border: 1px solid var(--green-200, #bbf7d0);
    border-radius: var(--radius-full, 9999px);
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    white-space: nowrap;
}
.product-compat-badges__link {
    font-size: var(--text-xs);
    color: var(--primary-600);
    text-decoration: none;
    white-space: nowrap;
}
.product-compat-badges__link:hover {
    text-decoration: underline;
}

/* --- Feature Highlights (before Add to Cart) --- */
.product-features {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.product-features__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--neutral-700);
    line-height: 1.5;
}
.product-features__icon {
    flex-shrink: 0;
    color: var(--green-600, #16a34a);
    margin-top: 2px;
}

/* --- Pro Tip (after Add to Cart) --- */
.product-pro-tip {
    display: flex;
    gap: var(--space-3);
    background: var(--blue-50, #eff6ff);
    border: 1px solid var(--blue-200, #bfdbfe);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    margin: var(--space-4) 0;
}
.product-pro-tip__icon {
    flex-shrink: 0;
    color: var(--blue-500, #3b82f6);
}
.product-pro-tip__content {
    font-size: var(--text-sm);
    color: var(--neutral-700);
    line-height: 1.5;
}
.product-pro-tip__label {
    display: block;
    font-weight: var(--font-weight-semibold);
    color: var(--blue-700, #1d4ed8);
    margin-bottom: var(--space-1);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Trust Signals (after Pro Tip) --- */
.product-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin: var(--space-4) 0;
    padding: var(--space-4) 0;
    border-top: 1px solid var(--neutral-200);
}
.product-trust__item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    color: var(--neutral-600);
}
.product-trust__icon {
    flex-shrink: 0;
    color: var(--green-600, #16a34a);
    display: flex;
}
.product-trust__icon svg {
    width: 16px;
    height: 16px;
}

/* --- How to Order Box (after Trust Signals) --- */
.order-info {
    background: linear-gradient(135deg, rgba(255,255,0,0.04), rgba(0,0,0,0.02));
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: var(--space-5);
    margin: var(--space-5) 0;
}
.order-info__title {
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}
.order-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}
.order-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
}
.order-method__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    background: rgba(255,255,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-black);
}
.order-method__icon svg {
    width: 20px;
    height: 20px;
}
.order-method__title {
    font-size: var(--text-xs);
    margin-bottom: 2px;
}
.order-method__text {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    color: var(--color-grey);
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;
}
.order-info__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-4);
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border);
    font-size: var(--text-sm);
}
.order-info__phone {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    transition: color var(--transition-fast);
}
.order-info__phone:hover {
    color: var(--color-yellow);
}
.order-info__phone svg {
    color: var(--color-yellow);
}
.order-info__checker {
    font-size: var(--text-xs);
    color: var(--color-grey);
    transition: color var(--transition-fast);
}
.order-info__checker:hover {
    color: var(--color-black);
}

/* --- Fitting Guide Tab --- */
.fitting-video {
    margin-bottom: var(--space-6);
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.fitting-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.fitting-content {
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--neutral-700);
}
.fitting-content h3 {
    font-size: var(--text-lg);
    margin-top: var(--space-6);
    margin-bottom: var(--space-3);
}
.fitting-content ol,
.fitting-content ul {
    padding-left: var(--space-6);
    margin-bottom: var(--space-4);
}
.fitting-content li {
    margin-bottom: var(--space-2);
}

/* Single product mobile */
@media (max-width: 768px) {
    .single-product .product:not(.product-card) {
        grid-template-columns: 1fr;
        grid-template-areas:
            "gallery"
            "summary"
            "tabs"
            "related";
        gap: var(--space-6);
    }

    .single-product .woocommerce-product-gallery {
        position: static;
    }

    .single-product .woocommerce-tabs {
        margin-left: calc(-1 * var(--space-5));
        margin-right: calc(-1 * var(--space-5));
        padding-left: var(--space-5);
        padding-right: var(--space-5);
    }

    .product-compat-badges {
        gap: var(--space-1);
    }

    .product-trust {
        flex-direction: column;
        gap: var(--space-2);
    }

    .order-methods {
        grid-template-columns: 1fr;
    }
    .order-info__footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========================================
   MINI BASKET DRAWER
   ======================================== */
.mini-basket__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mini-basket__backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.mini-basket {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    max-width: 90vw;
    background: var(--color-white);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 300ms ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

.mini-basket.is-open {
    transform: translateX(0);
}

.mini-basket__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-5) var(--space-6);
    border-bottom: 1px solid var(--color-border);
    flex-shrink: 0;
}

.mini-basket__title {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
}

.mini-basket__close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-grey);
    padding: var(--space-1);
    transition: color var(--transition-fast);
}

.mini-basket__close:hover {
    color: var(--color-black);
}

.mini-basket__content {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-5) var(--space-6);
}

/* WooCommerce mini cart widget styling */
.mini-basket .woocommerce-mini-cart {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Item row: thumbnail | name + qty/price stacked | remove ×. Everything
   left-aligned, with comfortable spacing between rows. */
.mini-basket .woocommerce-mini-cart-item {
    display: grid;
    grid-template-columns: 56px 1fr 24px;
    column-gap: var(--space-4);
    row-gap: var(--space-1);
    align-items: center;
    text-align: left;
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--color-border);
}

.mini-basket .woocommerce-mini-cart-item:first-child {
    padding-top: 0;
}

.mini-basket .woocommerce-mini-cart-item:last-child {
    border-bottom: 0;
}

/* The product link wraps both the image and the name. Lay it out as the
   thumbnail in column 1 and the name in column 2 so they don't fight each
   other (WC default floats the image right — neutralise that). */
.mini-basket .woocommerce-mini-cart-item > a:not(.remove) {
    display: contents;
    color: var(--color-text-primary);
}

.mini-basket .woocommerce-mini-cart-item img {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-border);
    background: var(--color-grey-lightest);
    margin: 0;
    float: none;
}

/* Product name. The image+name link uses display:contents, so the bare text
   becomes the second flex/grid item — we can't class it. Style it via the
   parent link instead. */
.mini-basket .woocommerce-mini-cart-item > a:not(.remove) {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.05em;
    line-height: 1.4;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.mini-basket .woocommerce-mini-cart-item > a:not(.remove):hover {
    color: var(--color-grey-mid);
}

/* Quantity × price line, sits in column 2, row 2 (under the name). */
.mini-basket .woocommerce-mini-cart-item .quantity {
    grid-column: 2;
    grid-row: 2;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    color: var(--color-grey-mid);
    text-align: left;
    letter-spacing: 0;
}

.mini-basket .woocommerce-mini-cart-item .quantity .amount {
    font-family: var(--font-body);
    font-weight: var(--font-weight-regular);
    color: var(--color-text-primary);
    margin-left: var(--space-1);
}

/* Remove × — fixed-width column on the right. */
.mini-basket .woocommerce-mini-cart-item .remove {
    grid-column: 3;
    grid-row: 1 / span 2;
    justify-self: end;
    align-self: start;
    margin-top: -2px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 1;
    color: var(--color-grey);
    border-radius: 50%;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.mini-basket .woocommerce-mini-cart-item .remove::before {
    content: '\00d7';
    font-size: var(--text-xl);
    font-weight: var(--font-weight-light);
    line-height: 1;
}

.mini-basket .woocommerce-mini-cart-item .remove:hover {
    color: var(--color-white);
    background: var(--color-error);
}

.mini-basket .woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) 0;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-top: 2px solid var(--color-black);
    margin-top: var(--space-3);
}

.mini-basket .woocommerce-mini-cart__total .amount {
    font-size: var(--text-lg);
}

.mini-basket .woocommerce-mini-cart__buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    padding: 0;
    margin: 0;
    list-style: none;
}

.mini-basket .woocommerce-mini-cart__buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: var(--space-4) var(--space-6);
    border-radius: var(--border-radius-sm);
    min-height: 48px;
    transition: all var(--transition-base);
}

.mini-basket .woocommerce-mini-cart__buttons .button:first-child {
    background: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-black);
}

.mini-basket .woocommerce-mini-cart__buttons .button:first-child:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.mini-basket .woocommerce-mini-cart__buttons .button.checkout {
    background: var(--color-yellow);
    color: var(--color-black);
    border: 2px solid var(--color-yellow);
}

.mini-basket .woocommerce-mini-cart__buttons .button.checkout:hover {
    background: var(--color-yellow-muted);
    border-color: var(--color-yellow-muted);
}

/* Empty mini basket */
.mini-basket .woocommerce-mini-cart__empty-message {
    text-align: center;
    padding: var(--space-10) 0;
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    color: var(--color-grey);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: var(--space-4) var(--space-6);
    border: 2px solid transparent;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    min-height: 48px;
}

.btn--primary {
    background: var(--color-yellow);
    color: var(--color-black);
    border-color: var(--color-yellow);
}
.btn--primary:hover {
    background: var(--color-yellow-muted);
    border-color: var(--color-yellow-muted);
}

.btn--secondary {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}
.btn--secondary:hover {
    background: var(--color-grey-dark);
    border-color: var(--color-grey-dark);
}

.btn--outline {
    background: transparent;
    color: var(--color-black);
    border-color: var(--color-black);
}
.btn--outline:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.btn--outline-light {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}
.btn--outline-light:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.btn--ghost {
    background: transparent;
    color: var(--color-black);
    border-color: transparent;
    padding-left: 0;
    padding-right: 0;
}
.btn--ghost:hover { color: var(--color-grey-mid); }
.btn--ghost::after {
    content: '\2192';
    transition: transform var(--transition-fast);
}
.btn--ghost:hover::after { transform: translateX(4px); }

.btn--sm {
    font-size: 0.625rem;
    padding: var(--space-2) var(--space-4);
    min-height: 36px;
}
.btn--lg {
    font-size: var(--text-sm);
    padding: var(--space-5) var(--space-8);
    min-height: 56px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-black);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Top utility bar */
.header__topbar {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: var(--space-2) 0;
}

.header__topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__topbar-text {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-grey);
}

.header__topbar-text span {
    color: var(--color-yellow);
}

.header__topbar-social {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.header__topbar-social a {
    color: var(--color-grey);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
}

.header__topbar-social a:hover {
    color: var(--color-white);
}

/* Each link group is a flex row whose items (text links + inline social
   SVGs) need to share the same horizontal baseline — `align-items: center`
   keeps icons vertically centred against the slightly taller text height. */
.header__topbar-links {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

.header__topbar-links a {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-grey);
    transition: color var(--transition-fast);
    line-height: 1;
}

.header__topbar-links a svg {
    width: 18px;
    height: 18px;
    display: block;
}

.header__topbar-links a:hover {
    color: var(--color-white);
}

/* Topbar search button — sits among topbar links */
.header__topbar-search {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: none;
    border: 0;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-grey);
    padding: 0;
    line-height: 1;
    transition: color var(--transition-fast);
}

.header__topbar-search:hover {
    color: var(--color-white);
}

.header__topbar-search svg {
    flex-shrink: 0;
}

/* Main nav */
.header__main {
    padding: var(--space-6) 0;
    transition: padding var(--transition-base);
}

.header.is-scrolled .header__main {
    padding: var(--space-4) 0;
}

/* Menu open state — transparent nav when mobile overlay is active */
.header.menu-open {
    background: transparent;
    border-bottom-color: transparent;
}

.header__main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    position: relative;
    padding-left: 160px;
}

.header__logo,
.header .custom-logo-link {
    flex-shrink: 0;
    position: absolute;
    left: var(--space-5);
    top: 50%;
    transform: translateY(-50%);
}

.header__logo img,
.header .custom-logo {
    height: 114px;
    width: auto;
    transition: height var(--transition-base);
}

.header.is-scrolled .header__logo img,
.header.is-scrolled .custom-logo {
    height: 44px;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    flex: 1;
}

.header__nav-close {
    display: none;
}

.header__nav a,
.header__nav .nav-link {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-grey);
    transition: color var(--transition-fast);
    position: relative;
    padding: var(--space-2) 0;
}

.header__nav a:hover,
.header__nav a.active,
.header__nav .nav-link:hover,
.header__nav .nav-link.active,
.header__nav .current-menu-item > a {
    color: var(--color-white);
}

.header__nav a.active::after,
.header__nav .nav-link.active::after,
.header__nav .current-menu-item > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-yellow);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    flex-shrink: 0;
}

/* Header icon buttons (search, account) */
.header__icon-btn {
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--color-grey);
    padding: var(--space-1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
}
.header__icon-btn:hover,
.header__icon-btn.is-open {
    color: var(--color-white);
}

/* Search toggle (legacy class, kept for compatibility) */
.header__search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-grey);
    transition: color var(--transition-fast);
    padding: var(--space-1);
}
.header__search-btn:hover { color: var(--color-white); }

/* ─── Account panel ─── */
.account-panel-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.account-trigger {
    position: relative;
}

.account-trigger__dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-yellow);
    border: 1.5px solid var(--color-black);
}

.account-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: -8px;
    width: 320px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    border: 1px solid var(--color-border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 1000;
}

.account-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-panel__arrow {
    position: absolute;
    top: -7px;
    right: 16px;
    width: 14px;
    height: 14px;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    transform: rotate(45deg);
}

.account-panel__inner {
    position: relative;
    padding: var(--space-5);
}

.account-panel__overline {
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: var(--font-weight-regular);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-grey-mid);
    margin: 0 0 var(--space-1);
}

.account-panel__title {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-medium);
    color: var(--color-black);
    margin: 0 0 var(--space-1);
    text-transform: none;
    letter-spacing: 0;
}

.account-panel__subtitle {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-grey-mid);
    margin: 0 0 var(--space-4);
    line-height: 1.5;
}

.account-panel__header {
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-grey-light);
    margin-bottom: var(--space-4);
}

.account-panel__actions {
    display: flex;
    gap: var(--space-2);
}

.account-panel__actions .btn { flex: 1; }

.account-panel__stats {
    display: flex;
    gap: var(--space-2);
    padding: var(--space-3) 0;
    margin-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-grey-light);
}

.account-panel__stat {
    flex: 1;
    text-align: center;
    padding: var(--space-2);
    border-radius: var(--border-radius-sm);
    color: var(--color-black);
    transition: background var(--transition-fast);
}

.account-panel__stat:hover {
    background: var(--color-grey-lightest);
}

.account-panel__stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-weight-medium);
    color: var(--color-black);
    line-height: 1;
}

.account-panel__stat-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-grey-mid);
    margin-top: var(--space-1);
}

.account-panel__primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: var(--color-black);
    color: var(--color-white);
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--space-4);
    transition: background var(--transition-fast);
}

.account-panel__primary:hover {
    background: var(--color-grey-dark);
    color: var(--color-white);
}

.account-panel__primary-label {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.account-panel__primary-sub {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-grey-light);
    margin: 0;
}

.account-panel__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.account-panel__menu li { margin: 0; }

.account-panel__menu a {
    display: block;
    padding: var(--space-2) 0;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-grey-dark);
    border-bottom: 1px solid var(--color-grey-lightest);
    transition: color var(--transition-fast);
}

.account-panel__menu li:last-child a { border-bottom: 0; }

.account-panel__menu a:hover { color: var(--color-black); }

.account-panel__footer {
    padding-top: var(--space-3);
    margin-top: var(--space-3);
    border-top: 1px solid var(--color-grey-light);
}

.account-panel__logout {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-grey-mid);
    transition: color var(--transition-fast);
}

.account-panel__logout:hover { color: var(--color-black); }

@media (max-width: 1024px) {
    .account-panel-wrap { display: none; }
}

/* Basket icon */
.header__basket {
    position: relative;
    background: none;
    border: 0;
    padding: var(--space-1);
    cursor: pointer;
    color: var(--color-grey);
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    appearance: none;
    -webkit-appearance: none;
}

.header__basket:focus-visible {
    outline: 2px solid var(--color-yellow);
    outline-offset: 2px;
    border-radius: var(--border-radius-sm);
}

.header__basket > .icon {
    width: 2em;
    height: 2em;
}

.header__basket:hover {
    color: var(--color-white);
}

.header__basket-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--color-yellow);
    color: var(--color-black);
    font-family: var(--font-heading);
    font-size: 0.5rem;
    font-weight: var(--font-weight-light);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform 150ms ease;
}

.header__basket-count.is-bumping {
    animation: basket-bump 400ms ease;
}

@keyframes basket-bump {
    0% { transform: scale(1); }
    30% { transform: scale(1.5); }
    60% { transform: scale(0.85); }
    100% { transform: scale(1); }
}

@keyframes trust-bar-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Basket added toast */
.basket-toast {
    position: fixed;
    top: var(--space-5);
    right: var(--space-5);
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transform: translateX(calc(100% + var(--space-5)));
    transition: transform 300ms ease;
    border-left: 3px solid var(--color-yellow);
}

.basket-toast.is-visible {
    transform: translateX(0);
}

.basket-toast__icon {
    color: var(--color-yellow);
    display: flex;
}

.header__cta {
    min-height: 40px;
    padding: var(--space-2) var(--space-5);
}

/* Mobile menu */
.header__mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-white);
    padding: var(--space-2);
}

.header__mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    margin: 5px 0;
    transition: all var(--transition-fast);
}

/* ========================================
   HERO (full homepage hero)
   ======================================== */
.hero {
    position: relative;
    background: var(--color-black);
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.6) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__label {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-yellow);
    margin-bottom: var(--space-5);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.hero__label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--color-yellow);
}

.hero__title {
    font-family: var(--font-display);
    font-weight: var(--font-weight-light);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: var(--space-5);
}

.hero__title strong {
    font-weight: var(--font-weight-bold);
    color: var(--color-yellow);
}

.hero__desc {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-lg);
    color: var(--color-grey);
    line-height: 1.8;
    margin-bottom: var(--space-8);
    max-width: 540px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.hero__stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: var(--space-8);
    margin-top: var(--space-10);
    padding: var(--space-6) 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero__stat {
    text-align: left;
}

.hero__stat-value {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-light);
    font-size: var(--text-3xl);
    color: var(--color-white);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: var(--space-1);
}

.hero__stat-label {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-grey);
}

/* ========================================
   PAGE BANNER (inner page hero)
   ======================================== */
.page-banner {
    background: var(--color-black);
    padding: var(--space-10) 0 var(--space-8);
}

.page-banner__label {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-yellow);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.page-banner__label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--color-yellow);
}

.page-banner__title {
    font-family: var(--font-display);
    font-weight: var(--font-weight-light);
    font-size: clamp(1.5rem, 4vw, var(--text-4xl));
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: var(--space-3);
}

.page-banner__title strong {
    font-weight: var(--font-weight-bold);
    color: var(--color-yellow);
}

.page-banner__desc {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-base);
    color: var(--color-grey);
    max-width: 560px;
    line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-5);
}

.breadcrumb a {
    color: var(--color-grey);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--color-white);
}

.breadcrumb__sep {
    color: var(--color-grey-mid);
}

.breadcrumb__current {
    color: var(--color-white);
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
    background: var(--color-yellow);
    padding: var(--space-4) 0;
}

.trust-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-black);
}

.trust-bar__icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   SPACING UTILITIES
   ======================================== */
.pt-none { padding-top: 0; }
.pt-sm   { padding-top: var(--space-4); }
.pt-md   { padding-top: var(--space-8); }
.pt-lg   { padding-top: var(--space-12); }
.pt-xl   { padding-top: var(--space-16); }

.pb-none { padding-bottom: 0; }
.pb-sm   { padding-bottom: var(--space-4); }
.pb-md   { padding-bottom: var(--space-8); }
.pb-lg   { padding-bottom: var(--space-12); }
.pb-xl   { padding-bottom: var(--space-16); }

.mt-none { margin-top: 0; }
.mt-sm   { margin-top: var(--space-4); }
.mt-md   { margin-top: var(--space-8); }
.mt-lg   { margin-top: var(--space-12); }
.mt-xl   { margin-top: var(--space-16); }

.mb-none { margin-bottom: 0; }
.mb-sm   { margin-bottom: var(--space-4); }
.mb-md   { margin-bottom: var(--space-8); }
.mb-lg   { margin-bottom: var(--space-12); }
.mb-xl   { margin-bottom: var(--space-16); }

/* ========================================
   COLOUR SCHEMES
   ======================================== */
.scheme-light {
    background-color: var(--color-white);
    color: var(--color-text-primary);
}

.scheme-dark {
    background-color: var(--color-black);
    color: var(--color-white);
}

.scheme-dark .section__label {
    color: var(--color-yellow);
}

.scheme-dark .section__desc {
    color: var(--color-grey);
}

.scheme-brand {
    background-color: var(--color-yellow);
    color: var(--color-black);
}

.scheme-brand .section__label {
    color: var(--color-black);
}

/* ========================================
   SECTION HELPERS
   ======================================== */
.section {
    padding: var(--space-12) 0;
}

.section--dark {
    background: var(--color-black);
    color: var(--color-white);
}

.section--grey {
    background: var(--color-bg-secondary);
}

.section__header {
    margin-bottom: var(--space-8);
}

.section__label {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-grey);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.section--dark .section__label {
    color: var(--color-yellow);
}

.section__label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: currentColor;
}

.section__title {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-light);
    font-size: clamp(1.5rem, 3vw, var(--text-4xl));
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
}

.section__desc {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-top: var(--space-4);
    max-width: 600px;
}

.section--dark .section__desc {
    color: var(--color-grey);
}

.section__header--center {
    text-align: center;
}

.section__header--center .section__label {
    justify-content: center;
}

.section__header--center .section__label::before {
    display: none;
}

.section__header--center .section__desc {
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   SERVICES GRID
   ======================================== */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: var(--space-6);
    transition: all var(--transition-base);
    position: relative;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--color-yellow);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    background: var(--color-yellow);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    font-size: 1.25rem;
}

.service-card__title {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-medium);
    font-size: var(--text-sm);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-3);
}

.service-card__desc {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-5);
}

/* ========================================
   ABOUT / SPLIT SECTION
   ======================================== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.split__image {
    position: relative;
    overflow: hidden;
}

.split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-12) var(--space-10);
}

.split--dark .split__content {
    background: var(--color-black);
    color: var(--color-white);
}

.split__text {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    line-height: 1.8;
}

.split__text p + p {
    margin-top: var(--space-4);
}

.split__tagline {
    font-family: var(--font-display);
    font-weight: var(--font-weight-light);
    font-size: var(--text-2xl);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.4;
    margin-top: var(--space-5);
    padding-top: var(--space-5);
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--color-grey);
}

.split__tagline strong {
    color: var(--color-yellow);
    font-weight: var(--font-weight-medium);
}

/* ========================================
   BRANDS SECTION
   ======================================== */
.brands {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.brand-tag {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: var(--space-2) var(--space-4);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    color: var(--color-grey-mid);
    transition: all var(--transition-fast);
}

.brand-tag:hover {
    border-color: var(--color-yellow);
    color: var(--color-text-primary);
    background: rgba(255,255,0,0.05);
}

/* ========================================
   PRODUCTS GRID
   ======================================== */
/* Shop header */
.shop-header {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--space-12) 0 var(--space-10);
    text-align: center;
}

.shop-header__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.shop-header__desc {
    margin-top: var(--space-3);
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    color: var(--color-grey);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Shop / Blog layout with optional sidebar */
.shop-layout,
.blog-layout {
    padding-top: var(--space-8);
    padding-bottom: var(--space-10);
}

.shop-layout--sidebar,
.blog-layout--sidebar {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: var(--space-8);
    align-items: start;
}

.shop-layout__sidebar,
.blog-layout__sidebar {
    position: sticky;
    top: 120px;
}

.shop-layout__sidebar .widget,
.blog-layout__sidebar .widget {
    margin-bottom: var(--space-6);
}

.shop-layout__sidebar .widget-title,
.blog-layout__sidebar .widget-title {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-3);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid var(--color-border);
}

.shop-layout__sidebar ul,
.blog-layout__sidebar ul {
    list-style: none;
    padding: 0;
}

.shop-layout__sidebar ul li,
.blog-layout__sidebar ul li {
    margin-bottom: var(--space-1);
}

.shop-layout__sidebar ul li a,
.blog-layout__sidebar ul li a {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.shop-layout__sidebar ul li a:hover,
.blog-layout__sidebar ul li a:hover {
    color: var(--color-black);
}

@media (max-width: 1024px) {
    .shop-layout--sidebar,
    .blog-layout--sidebar {
        grid-template-columns: 1fr;
    }

    .shop-layout__sidebar,
    .blog-layout__sidebar {
        position: static;
    }
}

/* Blog layout — reduce to 2 cols when sidebar is on */
.blog-layout--sidebar .posts-grid {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .blog-layout--sidebar .posts-grid {
        grid-template-columns: 1fr;
    }
}

/* Shop controls (result count + ordering) */
/* Shop filter bar */
.shop-filter-bar-top {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    padding: var(--space-4);
    background: var(--color-grey-lightest);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
}
.shop-filter-bar-top__search {
    position: relative;
    flex: 1;
    min-width: 200px;
}
.shop-filter-bar-top__search-icon {
    position: absolute;
    left: var(--space-3);
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-grey);
    pointer-events: none;
}
.shop-filter-bar-top__input {
    width: 100%;
    padding: var(--space-2) var(--space-3) var(--space-2) 40px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-light);
    color: var(--color-text-primary);
    transition: border-color var(--transition-fast);
}
.shop-filter-bar-top__input:focus {
    outline: none;
    border-color: var(--color-black);
}
.shop-filter-bar-top__input::placeholder {
    color: var(--color-grey);
}
.shop-filter-bar-top__select select {
    appearance: none;
    padding: var(--space-2) var(--space-8) var(--space-2) var(--space-3);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    background: var(--color-white) url("data:image/svg+xml,%3Csvg fill='none' stroke='%23666' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 8px center / 16px no-repeat;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-light);
    color: var(--color-text-primary);
    cursor: pointer;
    white-space: nowrap;
    transition: border-color var(--transition-fast);
}
.shop-filter-bar-top__select select:focus {
    outline: none;
    border-color: var(--color-black);
}
.shop-filter-bar-top__meta {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-left: auto;
    white-space: nowrap;
    flex-shrink: 0;
}
.shop-filter-bar-top__meta .woocommerce-result-count {
    font-size: var(--text-xs);
    color: var(--color-grey);
    margin: 0;
}
.woocommerce .shop-filter-bar-top__meta .woocommerce-ordering {
    margin: 0;
}
.shop-filter-bar-top__meta .woocommerce-ordering select {
    appearance: none;
    padding: var(--space-2) var(--space-8) var(--space-2) var(--space-3);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    background: var(--color-white) url("data:image/svg+xml,%3Csvg fill='none' stroke='%23666' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 8px center / 16px no-repeat;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-light);
    color: var(--color-text-primary);
    cursor: pointer;
}

/* Search autocomplete dropdown */
.shop-search-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}
.shop-search-results.is-visible {
    display: block;
}
.shop-search-results__item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    transition: background var(--transition-fast);
}
.shop-search-results__item:hover {
    background: var(--color-grey-lightest);
}
.shop-search-results__item + .shop-search-results__item {
    border-top: 1px solid var(--color-border);
}
.shop-search-results__img {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-sm);
    background: var(--color-grey-lightest);
    overflow: hidden;
    flex-shrink: 0;
}
.shop-search-results__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shop-search-results__placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-grey-light);
}
.shop-search-results__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.shop-search-results__title {
    font-size: var(--text-sm);
    color: var(--color-text-primary);
}
.shop-search-results__price {
    font-size: var(--text-xs);
    color: var(--color-grey);
}
.shop-search-results__empty {
    padding: var(--space-4);
    text-align: center;
    font-size: var(--text-sm);
    color: var(--color-grey);
}

@media (max-width: 768px) {
    .shop-filter-bar-top {
        flex-direction: column;
        align-items: stretch;
    }
    .shop-filter-bar-top__meta {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
    }
}

.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-border);
}

.woocommerce-result-count {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin: 0;
}

.woocommerce-ordering {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin: 0;
}

.woocommerce-ordering select {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    background: var(--color-white);
    cursor: pointer;
}

.woocommerce-notices-wrapper {
    margin-bottom: var(--space-4);
}

/* WC pagination */
.woocommerce-pagination {
    margin-top: var(--space-8);
    text-align: center;
}

.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    list-style: none;
    padding: 0;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.woocommerce-pagination ul li a:hover {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.woocommerce-pagination ul li span.current {
    background: var(--color-black);
    color: var(--color-yellow);
    border-color: var(--color-black);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

.products-grid--3col {
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-base);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.product-card__image {
    aspect-ratio: 1;
    background: var(--color-grey-lightest);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.product-card:hover .product-card__image img {
    transform: scale(1.03);
}

.product-card__badge {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    font-family: var(--font-heading);
    font-size: 0.5625rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--border-radius-sm);
    z-index: 2;
}

.product-card__badge--new {
    background: var(--color-yellow);
    color: var(--color-black);
}

.product-card__badge--sale {
    background: var(--color-black);
    color: var(--color-white);
}

.product-card__body {
    padding: var(--space-4);
}

.product-card__brand {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-grey);
    margin-bottom: var(--space-1);
}

.product-card__title {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-medium);
    font-size: var(--text-sm);
    letter-spacing: 0.03em;
    line-height: 1.4;
    margin-bottom: var(--space-3);
    min-height: 2.8em;
}

.product-card__title a {
    transition: color var(--transition-fast);
}
.product-card__title a:hover {
    color: var(--color-grey-mid);
}

.product-card__price {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-light);
    font-size: var(--text-lg);
    letter-spacing: 0.03em;
    margin-bottom: var(--space-3);
}

.product-card__price .was {
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    color: var(--color-grey);
    text-decoration: line-through;
    margin-right: var(--space-2);
}

.product-card__action .btn {
    width: 100%;
}

.product-card__image-placeholder {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-grey);
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
    position: relative;
    overflow: hidden;
    padding: var(--space-16) 0;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
}

.cta-banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.cta-banner__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 100%);
}

.cta-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-banner__title {
    font-family: var(--font-display);
    font-weight: var(--font-weight-light);
    font-size: clamp(1.5rem, 4vw, var(--text-4xl));
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.cta-banner__title strong {
    color: var(--color-yellow);
    font-weight: var(--font-weight-bold);
}

.cta-banner__desc {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-base);
    color: var(--color-grey);
    max-width: 560px;
    margin: 0 auto var(--space-6);
    line-height: 1.8;
}

.cta-banner__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
    counter-reset: step;
}

.step {
    position: relative;
    counter-increment: step;
}

.step__number {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-light);
    font-size: var(--text-5xl);
    color: var(--color-yellow);
    line-height: 1;
    margin-bottom: var(--space-3);
}

.step__title {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-medium);
    font-size: var(--text-sm);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.step__desc {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    color: var(--color-grey);
    line-height: 1.8;
}

/* Connector line between steps */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -12px;
    width: calc(var(--space-5));
    height: 1px;
    background: rgba(255,255,255,0.15);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.testimonial {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: var(--space-6);
}

.testimonial__stars {
    color: var(--color-yellow);
    font-size: var(--text-base);
    margin-bottom: var(--space-4);
    letter-spacing: 0.1em;
}

.testimonial__text {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-5);
    font-style: italic;
}

.testimonial__author {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonial__source {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    color: var(--color-grey);
    letter-spacing: 0.05em;
}

/* ========================================
   FAQ
   ======================================== */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-10);
    align-items: start;
}

.faq-layout__sidebar {
    position: sticky;
    top: calc(var(--space-20) + var(--space-4));
}

@media (max-width: 768px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    .faq-layout__sidebar {
        position: static;
    }
}

.faq-list {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-list--full {
    max-width: none;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-5);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.05em;
    text-align: left;
    color: var(--color-text-primary);
    transition: background var(--transition-fast);
}

.faq-item__trigger:hover {
    background: var(--color-grey-lightest);
}

.faq-item__trigger::after {
    content: '+';
    font-size: var(--text-xl);
    font-weight: var(--font-weight-light);
    color: var(--color-grey);
    flex-shrink: 0;
    margin-left: var(--space-4);
    transition: transform var(--transition-fast);
}

.faq-item.is-open .faq-item__trigger::after {
    content: '\2212';
}

.faq-item__content {
    display: none;
    padding: 0 var(--space-5) var(--space-5);
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.faq-item.is-open .faq-item__content {
    display: block;
}

.faq-category__heading {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
    margin-top: var(--space-6);
    color: var(--color-text-primary);
}

.faq-category {
    margin-top: var(--space-8);
}

.faq-category:first-child {
    margin-top: 0;
}

.faq-category__heading:first-child {
    margin-top: 0;
}

/* FAQ page sidebar nav */
.faq-nav {
    position: sticky;
    top: 120px;
}

.faq-nav__link {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-grey-mid);
    padding: var(--space-2) var(--space-4);
    border-left: 2px solid var(--color-border);
    transition: all var(--transition-fast);
    margin-bottom: var(--space-1);
}

.faq-nav__link:hover,
.faq-nav__link.active {
    color: var(--color-text-primary);
    border-left-color: var(--color-yellow);
}

/* ========================================
   CONTAINER BLOCK
   ======================================== */
.block-container {
    position: relative;
    /* No overflow:hidden here — it would clip native <select> dropdowns
       and other popovers escaping the container. The bg image is clipped
       by .block-container__bg's own overflow rule below. */
}

.block-container--full {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.block-container--contained .block-container__inner {
    max-width: var(--container-max, 1400px);
    margin: 0 auto;
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

.block-container--narrow .block-container__inner {
    max-width: 800px;
    margin: 0 auto;
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

.block-container__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.block-container__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-container__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.block-container__inner {
    position: relative;
    z-index: 1;
}

/* ========================================
   PAGE/POST CARDS BLOCK
   ======================================== */
.block-cards {
    padding: var(--space-12) 0;
}

.block-cards .container {
    max-width: var(--container-max, 1400px);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.block-cards__grid {
    display: grid;
    gap: var(--space-6);
}

.block-cards__grid--2 { grid-template-columns: repeat(2, 1fr); }
.block-cards__grid--3 { grid-template-columns: repeat(3, 1fr); }
.block-cards__grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .block-cards__grid--3,
    .block-cards__grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .block-cards__grid--2,
    .block-cards__grid--3,
    .block-cards__grid--4 {
        grid-template-columns: 1fr;
    }
}

.post-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow var(--transition-fast);
}

.post-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.post-card__image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.post-card:hover .post-card__image img {
    transform: scale(1.03);
}

.post-card__body {
    padding: var(--space-5);
}

.post-card__meta {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-grey);
    margin-bottom: var(--space-2);
}

.post-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: var(--space-2);
    color: inherit;
}

.post-card__title a {
    color: inherit;
    text-decoration: none;
}

.post-card__title a:hover {
    color: var(--color-yellow);
}

.post-card__excerpt {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-light);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.post-card__link {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--color-yellow);
    padding-bottom: 2px;
    transition: color var(--transition-fast);
}

.post-card__link:hover {
    color: var(--color-yellow);
}

.scheme-dark .post-card {
    background: var(--color-grey-dark);
    border-color: var(--color-grey-mid);
}

.scheme-dark .post-card__title {
    color: var(--color-white);
}

.scheme-dark .post-card__excerpt {
    color: var(--color-grey);
}

.scheme-dark .post-card__link {
    color: var(--color-white);
}

/* Compact card variant */
.post-card--compact .post-card__body {
    padding: var(--space-4);
}

.post-card--compact .post-card__image {
    aspect-ratio: 3 / 2;
}

/* Horizontal card variant */
.post-card--horizontal {
    display: grid;
    grid-template-columns: 200px 1fr;
}

.post-card--horizontal .post-card__image {
    aspect-ratio: auto;
    height: 100%;
}

@media (max-width: 600px) {
    .post-card--horizontal {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   STATS BAR BLOCK
   ======================================== */
.block-stats {
    padding: var(--space-10) 0;
}

.block-stats .container {
    max-width: var(--container-max, 1400px);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.block-stats__grid {
    display: flex;
    justify-content: center;
    gap: var(--space-10);
    flex-wrap: wrap;
}

.block-stats__item {
    text-align: center;
}

.block-stats__value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, var(--text-5xl));
    font-weight: var(--font-weight-light);
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--color-yellow);
    margin-bottom: var(--space-2);
}

.block-stats__label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-grey);
}

.scheme-dark .block-stats__label {
    color: var(--color-grey);
}

.scheme-light .block-stats__value {
    color: var(--color-black);
}

/* Stacked layout */
.block-stats--stacked .block-stats__grid {
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
}

@media (max-width: 600px) {
    .block-stats__grid {
        gap: var(--space-6);
    }

    .block-stats__item {
        flex: 0 0 calc(50% - var(--space-3));
    }
}

/* ========================================
   SHOP PAGE
   ======================================== */
.shop-sidebar {
    position: sticky;
    top: 120px;
}

.shop-sidebar__section {
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--color-border);
}

.shop-sidebar__section:last-child {
    border-bottom: none;
}

.shop-sidebar__heading {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

.shop-sidebar__list li {
    margin-bottom: var(--space-2);
}

.shop-sidebar__list a {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-sidebar__list a:hover,
.shop-sidebar__list a.active {
    color: var(--color-text-primary);
}

.shop-sidebar__count {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    color: var(--color-grey);
    background: var(--color-grey-lightest);
    padding: 0 var(--space-2);
    border-radius: var(--border-radius-sm);
}

/* Shop toolbar */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-border);
}

.shop-toolbar__count {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-grey-mid);
}

.shop-toolbar__sort {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.shop-toolbar__sort label {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-grey-mid);
}

.shop-toolbar__sort select {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    background: var(--color-white);
    color: var(--color-text-primary);
    cursor: pointer;
}

/* Price filter */
.price-range {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.price-range input {
    width: 70px;
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    text-align: center;
}

.price-range__sep {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    color: var(--color-grey);
}

/* Filter toggle + bar (hidden on desktop, shown on mobile) */
.shop-filter-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    background: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    padding: var(--space-3) var(--space-5);
    border-radius: var(--border-radius);
    width: 100%;
    margin-bottom: var(--space-5);
}

.shop-filter-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: var(--space-4) var(--space-5);
    z-index: 9999;
    gap: var(--space-3);
}

.shop-filter-bar .btn {
    flex: 1;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-8);
    padding-top: var(--space-5);
    border-top: 1px solid var(--color-border);
}

.pagination__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.05em;
    padding: var(--space-2) var(--space-3);
    min-width: 40px;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.pagination__link:hover {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.pagination__link--active {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.pagination__link--disabled {
    color: var(--color-grey);
    border-color: var(--color-border);
    cursor: default;
    pointer-events: none;
}

/* ========================================
   BOOKING PAGE
   ======================================== */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-8);
    align-items: start;
}

/* Progress indicator */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

.booking-progress__step {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    opacity: 0.35;
    transition: opacity var(--transition-base);
}

.booking-progress__step.is-active,
.booking-progress__step.is-completed {
    opacity: 1;
}

.booking-progress__number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--color-grey-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    color: var(--color-grey);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.booking-progress__step.is-active .booking-progress__number {
    border-color: var(--color-yellow);
    background: var(--color-yellow);
    color: var(--color-black);
}

.booking-progress__step.is-completed .booking-progress__number {
    border-color: var(--color-success);
    background: var(--color-success);
    color: var(--color-white);
}

.booking-progress__label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.booking-progress__connector {
    width: 40px;
    height: 2px;
    background: var(--color-grey-light);
    margin: 0 var(--space-2);
    flex-shrink: 0;
    transition: background var(--transition-base);
}

.booking-progress__connector.is-filled {
    background: var(--color-success);
}

/* Service cards */
.booking-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: var(--space-5);
    transition: all var(--transition-base);
    cursor: pointer;
    margin-bottom: var(--space-4);
}

.booking-card:hover {
    border-color: var(--color-yellow);
    box-shadow: var(--shadow-md);
}

.booking-card.is-selected {
    border-color: var(--color-yellow);
    box-shadow: 0 0 0 2px var(--color-yellow);
}

.booking-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-3);
}

.booking-card__brand {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-grey);
    margin-bottom: var(--space-1);
}

.booking-card__title {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-medium);
    font-size: var(--text-sm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.booking-card__price-block {
    text-align: right;
    flex-shrink: 0;
}

.booking-card__price-from {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-grey);
}

.booking-card__price {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-light);
    font-size: var(--text-2xl);
    color: var(--color-text-primary);
    white-space: nowrap;
}

.booking-card__desc {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

/* Checklist of included items */
.booking-card__checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2) var(--space-4);
    margin-bottom: var(--space-4);
}

.booking-card__check-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.booking-card__check-item .icon {
    stroke: var(--color-success);
    flex-shrink: 0;
}

/* Optional extras */
.booking-card__addons {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-xs);
    color: var(--color-grey);
    padding: var(--space-3) var(--space-4);
    background: var(--color-grey-lightest);
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

.booking-card__addons-label {
    font-weight: var(--font-weight-medium);
    color: var(--color-text-secondary);
}

/* Card footer */
.booking-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border);
}

.booking-card__includes {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.booking-card__tag {
    font-family: var(--font-heading);
    font-size: 0.5625rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: var(--space-1) var(--space-3);
    background: var(--color-grey-lightest);
    border-radius: var(--border-radius-sm);
    color: var(--color-grey-mid);
}

.booking-card__select-btn {
    flex-shrink: 0;
}

.booking-card.is-selected .booking-card__select-btn {
    background: var(--color-black);
    color: var(--color-white);
}

.booking-card.is-selected .booking-card__select-btn::after {
    content: ' \2713';
}

/* Booking sidebar summary */
.booking-summary {
    background: var(--color-grey-lightest);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: var(--space-6);
    position: sticky;
    top: 120px;
}

.booking-summary__heading {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-border);
}

.booking-summary__empty {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    color: var(--color-grey);
    text-align: center;
    padding: var(--space-6) 0;
}

.booking-summary__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border);
}

.booking-summary__item-name {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.booking-summary__item-price {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-light);
    font-size: var(--text-base);
}

.booking-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-4);
    margin-top: var(--space-2);
}

.booking-summary__total-label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.booking-summary__total-price {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-light);
    font-size: var(--text-2xl);
    color: var(--color-text-primary);
}

.booking-summary .btn {
    width: 100%;
    margin-top: var(--space-5);
}

.booking-summary__note {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-xs);
    color: var(--color-grey);
    text-align: center;
    margin-top: var(--space-3);
    line-height: 1.6;
}

/* Sidebar details list (step 2) */
.booking-summary__details {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border);
}

.booking-summary__detail-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2);
}

.booking-summary__detail-item .icon {
    stroke: var(--color-grey);
    flex-shrink: 0;
}

/* Booking form (step 2) */
.booking-form-wrapper {
    max-width: 100%;
}

.booking-form__back {
    margin-bottom: var(--space-5);
}

.booking-form__selected-service {
    margin-bottom: var(--space-6);
}

.booking-form__service-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) var(--space-5);
    background: var(--color-yellow);
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.booking-form__service-badge span {
    font-weight: var(--font-weight-bold);
}

.booking-form__section {
    padding: var(--space-6);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-5);
}

.booking-form__section:first-child {
    margin-top: 0;
}

.booking-form__section .form-group:last-child {
    margin-bottom: 0;
}

.booking-form__section-title {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--color-border);
    margin-top: 0;
}

/* Symptom checkboxes */
.booking-form__symptoms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}

.booking-form__checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    color: var(--color-text-primary);
    cursor: pointer;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.booking-form__checkbox:hover {
    border-color: var(--color-yellow);
}

.booking-form__checkbox input[type="checkbox"] {
    display: none;
}

.booking-form__checkbox-mark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-grey-light);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.booking-form__checkbox input[type="checkbox"]:checked ~ .booking-form__checkbox-mark {
    background: var(--color-yellow);
    border-color: var(--color-yellow);
}

.booking-form__checkbox input[type="checkbox"]:checked ~ .booking-form__checkbox-mark::after {
    content: '\2713';
    font-size: 12px;
    font-weight: bold;
    color: var(--color-black);
}

.booking-form__checkbox input[type="checkbox"]:checked ~ span:last-child {
    font-weight: var(--font-weight-regular);
}

/* Radio buttons (shipping method) */
.booking-form__radios {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-3);
    margin-top: var(--space-3);
}

.booking-form__radio {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    color: var(--color-text-primary);
    cursor: pointer;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.booking-form__radio:hover {
    border-color: var(--color-yellow);
}

.booking-form__radio input[type="radio"] {
    display: none;
}

.booking-form__radio-mark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-grey-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
    position: relative;
}

.booking-form__radio input[type="radio"]:checked ~ .booking-form__radio-mark {
    background: var(--color-yellow);
    border-color: var(--color-yellow);
}

.booking-form__radio input[type="radio"]:checked ~ .booking-form__radio-mark::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-black);
    border-radius: 50%;
}

.booking-form__radio input[type="radio"]:checked ~ span:last-child {
    font-weight: var(--font-weight-regular);
}

.booking-form__shipping-note {
    margin-top: var(--space-4);
    padding: var(--space-4);
    background: var(--color-grey-lightest);
    border-radius: var(--border-radius);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.booking-form__shipping-note p + p {
    margin-top: var(--space-3);
}

.booking-form__submit {
    margin-top: var(--space-5);
}

/* Confirmation (step 3) */
.booking-confirmation {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-10) 0;
}

.booking-confirmation__icon {
    margin-bottom: var(--space-5);
}

.booking-confirmation__title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

.booking-confirmation__desc {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.booking-confirmation__next-steps {
    text-align: left;
    background: var(--color-grey-lightest);
    border-radius: var(--border-radius);
    padding: var(--space-6);
    margin-bottom: var(--space-8);
}

.booking-confirmation__subtitle {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

.booking-confirmation__step {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border);
}

.booking-confirmation__step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.booking-confirmation__step strong {
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
}

/* ========================================
   CHECKOUT PAGE
   ======================================== */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: var(--space-8);
    align-items: start;
}

.checkout-notice {
    background: var(--color-grey-lightest);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: var(--space-4) var(--space-5);
    font-size: var(--text-sm);
    margin-bottom: var(--space-5);
}

.checkout-notice a {
    color: var(--color-text-primary);
    font-weight: var(--font-weight-medium);
    text-decoration: underline;
}

.checkout-coupon {
    background: var(--color-grey-lightest);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: var(--space-5);
    margin-bottom: var(--space-5);
}

.checkout-coupon p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
}

.checkout-coupon__row {
    display: flex;
    gap: var(--space-3);
}

.checkout-coupon__row .form-input {
    flex: 1;
}

.checkout-section {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: var(--space-6);
    margin-bottom: var(--space-5);
}

.checkout-section__title {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--color-border);
    margin-top: 0;
}

.checkout-section .form-group:last-child {
    margin-bottom: 0;
}

/* Ship to different address checkbox */
.checkout-ship-toggle {
    margin-bottom: var(--space-5);
}

.checkout-checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    line-height: 1.5;
}

.checkout-checkbox input[type="checkbox"] {
    display: none;
}

.checkout-checkbox__mark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    flex-shrink: 0;
    position: relative;
    transition: all var(--transition-fast);
}

.checkout-checkbox input[type="checkbox"]:checked ~ .checkout-checkbox__mark {
    background: var(--color-yellow);
    border-color: var(--color-yellow);
}

.checkout-checkbox input[type="checkbox"]:checked ~ .checkout-checkbox__mark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid var(--color-black);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkout-checkbox a {
    text-decoration: underline;
    font-weight: var(--font-weight-medium);
}

/* Order summary sidebar */
.checkout-order__inner {
    background: var(--color-grey-lightest);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: var(--space-6);
    position: sticky;
    top: 120px;
}

.checkout-order__title {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 2px solid var(--color-black);
    margin-top: 0;
}

/* Order table */
.checkout-order__table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-sm);
}

.checkout-order__table th {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: left;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-secondary);
}

.checkout-order__table th:last-child {
    text-align: right;
}

.checkout-order__table tbody td {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border);
    vertical-align: top;
}

.checkout-order__product {
    font-family: var(--font-body);
    font-weight: var(--font-weight-regular);
}

.checkout-order__product-row {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.checkout-order__thumb {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--color-grey-lightest);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    color: var(--color-grey);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    overflow: hidden;
}

.checkout-order__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-order__qty {
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-regular);
}

.checkout-order__price {
    text-align: right;
    font-family: var(--font-heading);
    font-weight: var(--font-weight-medium);
}

.checkout-order__table tfoot td {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border);
}

.checkout-order__table tfoot td:last-child {
    text-align: right;
    font-family: var(--font-heading);
    font-weight: var(--font-weight-medium);
}

.checkout-order__subtotal td {
    font-weight: var(--font-weight-regular);
}

.checkout-order__shipping td:first-child {
    vertical-align: top;
}

.checkout-order__shipping-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.checkout-order__shipping-radio {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    cursor: pointer;
    font-size: var(--text-sm);
}

.checkout-order__shipping-radio input[type="radio"] {
    accent-color: var(--color-black);
}

.checkout-order__total td {
    padding-top: var(--space-4);
    border-bottom: none;
    font-size: var(--text-lg);
}

.checkout-order__total td:last-child {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-bold);
}

/* Payment methods */
.checkout-payment {
    margin-top: var(--space-5);
    padding-top: var(--space-5);
    border-top: 1px solid var(--color-border);
}

.checkout-payment__method {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    cursor: pointer;
    margin-bottom: var(--space-2);
    transition: border-color var(--transition-fast);
}

.checkout-payment__method:hover {
    border-color: var(--color-grey);
}

.checkout-payment__method input[type="radio"] {
    accent-color: var(--color-black);
    flex-shrink: 0;
}

.checkout-payment__method input[type="radio"]:checked ~ .checkout-payment__method-label {
    font-weight: var(--font-weight-medium);
}

.checkout-payment__method-label {
    font-family: var(--font-body);
    font-size: var(--text-sm);
}

.checkout-payment__detail {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-top: none;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    padding: var(--space-5);
    margin-top: calc(var(--space-2) * -1);
    margin-bottom: var(--space-2);
}

.checkout-payment__detail p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.checkout-payment__card-fields .form-group:last-child {
    margin-bottom: 0;
}

/* Place order */
.checkout-place-order {
    margin-top: var(--space-5);
    padding-top: var(--space-5);
    border-top: 1px solid var(--color-border);
}

.checkout-place-order .checkout-checkbox {
    margin-bottom: var(--space-5);
}

.checkout-place-order__btn {
    width: 100%;
}

/* ========================================
   CONTACT / FORMS
   ======================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-8);
    align-items: start;
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-2);
    color: var(--color-text-primary);
}

.form-group label .required {
    color: var(--color-error);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-base);
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    background: var(--color-white);
    color: var(--color-text-primary);
    transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-yellow);
    box-shadow: 0 0 0 3px rgba(255,255,0,0.15);
}

.form-textarea {
    min-height: 160px;
    resize: vertical;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%239D9D9D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-4) center;
    padding-right: var(--space-8);
}

/* Contact info cards */
.contact-info-card {
    background: var(--color-grey-lightest);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: var(--space-5);
    margin-bottom: var(--space-4);
}

.contact-info-card__icon {
    width: 40px;
    height: 40px;
    background: var(--color-yellow);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-3);
}

.contact-info-card__heading {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--space-2);
}

.contact-info-card__text {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.contact-info-card__text a {
    color: var(--color-text-primary);
    transition: color var(--transition-fast);
}

.contact-info-card__text a:hover {
    color: var(--color-yellow-muted);
}




/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--space-12) 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-8);
}

.footer__brand-desc {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    color: var(--color-grey-light);
    margin-top: var(--space-4);
    line-height: 1.7;
    max-width: 320px;
}

.footer__heading {
    font-family: var(--font-heading) !important;
    font-size: var(--text-xs) !important;
    font-weight: var(--font-weight-bold) !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: var(--color-yellow) !important;
    margin-bottom: var(--space-4) !important;
}

/* Headings can wrap their text in an <a> when the parent menu item points
   somewhere — make sure the link inherits the heading's typography rather
   than the generic `.footer a` styles below. */
.footer__heading a {
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
    text-transform: inherit !important;
    color: var(--color-yellow) !important;
}

.footer__heading a:hover {
    color: var(--color-white) !important;
}

.footer li {
    margin-bottom: var(--space-2);
}

.footer a {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    color: var(--color-grey-light);
    transition: color var(--transition-fast);
}

.footer a:hover {
    color: var(--color-white);
}

.footer__newsletter {
    margin-top: var(--space-5);
}

.footer__newsletter-label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-grey-light);
    margin-bottom: var(--space-2);
}

.footer__newsletter-form {
    display: flex;
    gap: 0;
    margin-top: var(--space-3);
}

.footer__newsletter-input {
    flex: 1;
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    padding: var(--space-3) var(--space-4);
    border: 1px solid rgba(255,255,255,0.2);
    border-right: none;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    background: rgba(255,255,255,0.05);
    color: var(--color-white);
}

.footer__newsletter-input::placeholder {
    color: var(--color-grey);
}

.footer__newsletter-input:focus {
    outline: none;
    border-color: var(--color-yellow);
}

.footer__newsletter-btn {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--color-yellow);
    color: var(--color-black);
    border: none;
    padding: var(--space-3) var(--space-4);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.footer__newsletter-btn:hover {
    background: var(--color-yellow-muted);
}

.footer__bottom {
    margin-top: var(--space-10);
    padding: var(--space-5) 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copy {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: var(--font-weight-regular);
    color: var(--color-grey-light);
    letter-spacing: 0.08em;
}

.footer__legal {
    display: flex;
    gap: var(--space-5);
}

.footer__legal a {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: var(--font-weight-regular);
    letter-spacing: 0.08em;
    color: var(--color-white);
}

.footer__legal a:hover {
    color: var(--color-yellow);
}

/* ========================================
   SVG ICONS (inline)
   ======================================== */
.icon {
    width: 1.25em;
    height: 1.25em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
}

.icon--sm {
    width: 1em;
    height: 1em;
}

.icon--xs {
    width: 0.875em;
    height: 0.875em;
}

.icon--lg {
    width: 1.5em;
    height: 1.5em;
}

/* ========================================
   SINGLE PRODUCT PAGE
   ======================================== */
.product-breadcrumb {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-grey);
    margin-bottom: var(--space-6);
}

.product-breadcrumb a {
    color: var(--color-grey);
    transition: color var(--transition-fast);
}

.product-breadcrumb a:hover {
    color: var(--color-text-primary);
}

.product-breadcrumb__sep {
    margin: 0 var(--space-2);
    color: var(--color-grey-light);
}

.product-breadcrumb span:last-child {
    color: var(--color-text-primary);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: start;
}

/* Product gallery */
.product-gallery {
    position: sticky;
    top: 120px;
}

.product-gallery__main {
    aspect-ratio: 1;
    background: var(--color-grey-lightest);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: var(--space-3);
}

.product-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery__main-placeholder {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-grey);
}

.product-gallery__thumbs {
    display: flex;
    gap: var(--space-3);
}

.product-gallery__thumb {
    width: 80px;
    height: 80px;
    background: var(--color-grey-lightest);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color var(--transition-fast);
    overflow: hidden;
}

.product-gallery__thumb:hover,
.product-gallery__thumb.is-active {
    border-color: var(--color-yellow);
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product info */
.product-info {
    padding-top: var(--space-2);
}

.product-info__brand {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-grey);
    margin-bottom: var(--space-2);
}

.product-info__title {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-medium);
    font-size: var(--text-2xl);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: var(--space-4);
}

.product-info__rating {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
}

.product-info__stars {
    color: var(--color-yellow);
    font-size: var(--text-base);
    letter-spacing: 0.05em;
}

.product-info__review-count {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-grey);
}

.product-info__price {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-light);
    font-size: var(--text-3xl);
    letter-spacing: 0.02em;
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
}

.product-info__price .was {
    font-weight: var(--font-weight-light);
    font-size: var(--text-lg);
    color: var(--color-grey);
    text-decoration: line-through;
    margin-right: var(--space-2);
}

.product-info__tax {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-xs);
    color: var(--color-grey);
    margin-bottom: var(--space-5);
}

.product-info__stock {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--space-5);
}

.product-info__stock--in-stock {
    background: rgba(46,125,50,0.08);
    color: var(--color-success);
}

.product-info__stock--low {
    background: rgba(255,152,0,0.08);
    color: #F57C00;
}

.product-info__stock--out {
    background: rgba(211,47,47,0.08);
    color: var(--color-error);
}

.product-info__desc {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--color-border);
}

/* Quantity + add to basket row */
.product-info__actions {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--color-border);
}

.product-info__qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.product-info__qty-btn {
    width: 44px;
    height: 48px;
    background: var(--color-grey-lightest);
    border: none;
    cursor: pointer;
    font-size: var(--text-lg);
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

.product-info__qty-btn:hover {
    background: var(--color-grey-light);
}

.product-info__qty-input {
    width: 48px;
    height: 48px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
}

.product-info__qty-input:focus {
    outline: none;
}

.product-info__add-btn {
    flex: 1;
}

/* Product meta (SKU, categories, tags) */
.product-meta {
    margin-bottom: var(--space-6);
}

.product-meta__row {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--color-grey-lightest);
    font-size: var(--text-sm);
}

.product-meta__label {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-grey);
    min-width: 100px;
    padding-top: 2px;
}

.product-meta__value {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    color: var(--color-text-secondary);
}

.product-meta__value a {
    color: var(--color-text-primary);
    transition: color var(--transition-fast);
}

.product-meta__value a:hover {
    color: var(--color-yellow-muted);
}

/* Delivery info box */
.product-delivery {
    background: var(--color-grey-lightest);
    border-radius: var(--border-radius);
    padding: var(--space-5);
}

.product-delivery__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.product-delivery__item:last-child {
    margin-bottom: 0;
}

.product-delivery__item .icon {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--color-grey);
}

.product-delivery__text {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.product-delivery__text strong {
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
}

/* Product tabs */
.product-tabs {
    margin-top: var(--space-10);
}

.product-tabs__nav {
    display: flex;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--space-6);
    gap: 0;
}

.product-tabs__tab {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: var(--space-4) var(--space-5);
    border: none;
    background: none;
    cursor: pointer;
    color: var(--color-grey);
    position: relative;
    transition: color var(--transition-fast);
}

.product-tabs__tab:hover {
    color: var(--color-text-primary);
}

.product-tabs__tab.is-active {
    color: var(--color-text-primary);
}

.product-tabs__tab.is-active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-yellow);
}

.product-tabs__panel {
    display: none;
}

.product-tabs__panel.is-active {
    display: block;
}

.product-tabs__content {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.product-tabs__content h3 {
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
    margin-top: var(--space-5);
}

.product-tabs__content h3:first-child {
    margin-top: 0;
}

.product-tabs__content ul {
    list-style: disc;
    padding-left: var(--space-5);
    margin-bottom: var(--space-4);
}

.product-tabs__content li {
    margin-bottom: var(--space-2);
}

.product-tabs__content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-4);
}

.product-tabs__content th,
.product-tabs__content td {
    text-align: left;
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--color-border);
    font-size: var(--text-sm);
}

.product-tabs__content th {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-grey);
    background: var(--color-grey-lightest);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ content top padding fix */
.faq-item__content {
    padding-top: var(--space-3);
}

/* Footer logo sizing */
.footer .footer__grid > div:first-child img {
    height: 70px;
    width: auto;
}

/* Footer list items styling */
.footer li {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    color: var(--color-grey);
}

/* ========================================
   BLOG — ARCHIVE
   ======================================== */
.archive-header {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--space-12) 0 var(--space-10);
    text-align: center;
    margin-bottom: var(--space-10);
}

.archive-header__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.archive-header__desc {
    margin-top: var(--space-3);
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    color: var(--color-grey);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}

@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

/* Post card */
.post-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: box-shadow var(--transition-fast);
}

.post-card:hover {
    box-shadow: var(--shadow-md);
}

.post-card__image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.post-card:hover .post-card__image img {
    transform: scale(1.03);
}

.post-card__body {
    padding: var(--space-5);
}

.post-card__cat {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-yellow);
    background: var(--color-black);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--space-3);
    line-height: 1;
}

.post-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.03em;
    line-height: 1.4;
    margin-bottom: var(--space-3);
}

.post-card__title a {
    color: var(--color-text-primary);
    text-decoration: none;
}

.post-card__title a:hover {
    color: var(--color-yellow);
}

.post-card__excerpt {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-3);
}

.post-card__meta {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--color-grey);
}

/* ========================================
   BLOG — SINGLE POST
   ======================================== */
.container--narrow {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-5);
    padding-right: var(--space-5);
}

.single-post__header {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--space-12) 0 var(--space-10);
    text-align: center;
}

.single-post__cats {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.single-post__cat {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-yellow);
    text-decoration: none;
}

.single-post__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: var(--space-4);
}

.single-post__meta {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-grey);
}

.single-post__meta-sep {
    margin: 0 var(--space-2);
}

.single-post__featured {
    max-height: 500px;
    overflow: hidden;
}

.single-post__featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post__content {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.single-post__content h2,
.single-post__content h3,
.single-post__content h4 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
}

.single-post__content h2 {
    font-size: var(--text-xl);
    letter-spacing: 0.05em;
}

.single-post__content h3 {
    font-size: var(--text-lg);
}

.single-post__content p {
    margin-bottom: var(--space-5);
}

.single-post__content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: var(--space-6) 0;
}

.single-post__content blockquote {
    border-left: 3px solid var(--color-yellow);
    padding: var(--space-4) var(--space-6);
    margin: var(--space-6) 0;
    font-style: italic;
    color: var(--color-text-primary);
}

.single-post__content ul,
.single-post__content ol {
    padding-left: var(--space-6);
    margin-bottom: var(--space-5);
}

.single-post__content li {
    margin-bottom: var(--space-2);
}

/* Post footer */
.single-post__footer {
    padding-bottom: var(--space-10);
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-6);
}

.single-post__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.single-post__tag {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: var(--space-1) var(--space-3);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.single-post__tag:hover {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

/* Post navigation */
.single-post__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
}

.single-post__nav-link {
    text-decoration: none;
    padding: var(--space-4);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    transition: border-color var(--transition-fast);
}

.single-post__nav-link:hover {
    border-color: var(--color-black);
}

.single-post__nav-link--next {
    text-align: right;
}

.single-post__nav-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-grey);
    margin-bottom: var(--space-1);
}

.single-post__nav-title {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
}

@media (max-width: 640px) {
    .single-post__title {
        font-size: var(--text-2xl);
    }
    .single-post__nav {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   WOOCOMMERCE — CART / CHECKOUT / ACCOUNT
   ======================================== */

/* Cart page */
.woocommerce-cart .site-main {
    padding: var(--space-10) 0;
}

.woocommerce-cart .site-main > * {
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-5);
    padding-right: var(--space-5);
}

.woocommerce table.shop_table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: var(--text-sm);
}

.woocommerce table.shop_table th {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: var(--space-3) var(--space-4);
    border-bottom: 2px solid var(--color-black);
    text-align: left;
}

.woocommerce table.shop_table td {
    padding: var(--space-4);
    border-bottom: 1px solid var(--color-border);
    vertical-align: middle;
}

.woocommerce table.shop_table img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.woocommerce table.shop_table .product-name a {
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
}

.woocommerce table.shop_table .product-name a:hover {
    color: var(--color-yellow);
}

.woocommerce table.shop_table .product-remove a {
    color: var(--color-grey);
    font-size: var(--text-lg);
    text-decoration: none;
}

.woocommerce table.shop_table .product-remove a:hover {
    color: var(--color-black);
}

.woocommerce .quantity .qty {
    width: 60px;
    padding: var(--space-2);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    text-align: center;
    font-family: var(--font-body);
    font-size: var(--text-sm);
}

.woocommerce .cart_totals {
    max-width: 400px;
    margin-left: auto;
    margin-top: var(--space-6);
}

.woocommerce .cart_totals h2 {
    font-size: var(--text-base);
    margin-bottom: var(--space-4);
}

.woocommerce .wc-proceed-to-checkout .checkout-button,
.woocommerce .button.alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--space-3) var(--space-6);
    background: var(--color-yellow);
    color: var(--color-black);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 2px solid var(--color-yellow);
    border-radius: var(--border-radius);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.woocommerce .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce .button.alt:hover {
    background: var(--color-black);
    color: var(--color-yellow);
    border-color: var(--color-black);
}

.woocommerce .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2) var(--space-4);
    background: var(--color-grey-lightest);
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.woocommerce .button:hover {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

/* Checkout page */
.woocommerce-checkout .site-main {
    padding: var(--space-10) 0;
}

.woocommerce-checkout .site-main > * {
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-5);
    padding-right: var(--space-5);
}

.woocommerce form .form-row {
    margin-bottom: var(--space-4);
}

.woocommerce form .form-row label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-1);
    color: var(--color-text-primary);
}

.woocommerce form .form-row .input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
    width: 100%;
    padding: var(--space-3);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    transition: border-color var(--transition-fast);
}

.woocommerce form .form-row .input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
    outline: none;
    border-color: var(--color-black);
}

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3 {
    font-size: var(--text-base);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--color-border);
}

#order_review_heading {
    font-size: var(--text-base);
    margin-bottom: var(--space-5);
}

/* My Account page */
.woocommerce-account .site-main {
    padding: var(--space-10) 0;
}

.woocommerce-account .site-main > * {
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-5);
    padding-right: var(--space-5);
}

/* ─── Login + Register columns (logged-out My Account page) ─── */
#customer_login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    max-width: 960px;
    margin: 0 auto;
}

/* Reset WC's default float-based column widths and stretch cards to equal height */
#customer_login .u-column1,
#customer_login .u-column2,
#customer_login .col-1,
#customer_login .col-2 {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
}

#customer_login .woocommerce-form-login,
#customer_login .woocommerce-form-register {
    flex: 1;
}

#customer_login::before,
#customer_login::after {
    content: none;
}

#customer_login h2 {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--color-black);
}

/* The login/register form cards */
.woocommerce-form-login,
.woocommerce-form-register {
    background: var(--color-grey-lightest);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: var(--space-6);
}

/* Reset WC float-based form rows so labels stack above inputs */
.woocommerce form.woocommerce-form-login .form-row,
.woocommerce form.woocommerce-form-register .form-row,
.woocommerce form.woocommerce-EditAccountForm .form-row,
.woocommerce form.woocommerce-address-fields .form-row,
.woocommerce form.lost_reset_password .form-row {
    display: block;
    float: none;
    width: 100%;
    margin-bottom: var(--space-4);
}

/* Password field with show/hide eye icon */
.woocommerce form .form-row .password-input {
    display: block;
    position: relative;
    width: 100%;
}

.woocommerce form .form-row .show-password-input {
    position: absolute;
    right: var(--space-3);
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--color-grey-mid);
    padding: 0;
    line-height: 0;
}

.woocommerce form .form-row .show-password-input:hover {
    color: var(--color-black);
}

/* Login button */
.woocommerce form .button[name="login"],
.woocommerce form .button[name="register"],
.woocommerce form .woocommerce-form-login__submit,
.woocommerce form .woocommerce-form-register__submit {
    display: inline-block;
    padding: var(--space-3) var(--space-6);
    background: var(--color-black);
    color: var(--color-white);
    border: 0;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.woocommerce form .button[name="login"]:hover,
.woocommerce form .button[name="register"]:hover {
    background: var(--color-grey-dark);
}

/* Remember me + lost password row */
.woocommerce-form-login .woocommerce-form-login__rememberme,
.woocommerce-form__label-for-checkbox {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin: 0 0 var(--space-3);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
}

.woocommerce-form-login .woocommerce-form-login__rememberme input,
.woocommerce-form__label-for-checkbox input {
    margin: 0;
    width: auto;
}

.woocommerce-LostPassword,
.lost_password {
    margin-top: var(--space-3);
}

.woocommerce-LostPassword a,
.lost_password a {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    text-decoration: underline;
}

.woocommerce-LostPassword a:hover {
    color: var(--color-black);
}

/* Required asterisk */
.woocommerce form .required {
    color: var(--color-red, #d63638);
    text-decoration: none;
}

/* Privacy policy text below register form */
.woocommerce-privacy-policy-text {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-top: var(--space-3);
    line-height: 1.6;
}

@media (max-width: 768px) {
    #customer_login {
        grid-template-columns: 1fr;
    }
}

.woocommerce-MyAccount-navigation {
    float: left;
    width: 200px;
    margin-right: var(--space-8);
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
}

.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 0;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: var(--space-3) var(--space-4);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.05em;
    text-decoration: none;
    color: var(--color-text-secondary);
    border-left: 2px solid transparent;
    transition: all var(--transition-fast);
}

.woocommerce-MyAccount-navigation ul li a:hover {
    color: var(--color-text-primary);
    border-left-color: var(--color-grey);
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard.is-active a {
    color: var(--color-black);
    border-left-color: var(--color-yellow);
    font-weight: var(--font-weight-bold);
}

.woocommerce-MyAccount-content {
    overflow: hidden;
}

@media (max-width: 768px) {
    .woocommerce-MyAccount-navigation {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: var(--space-6);
    }

    .woocommerce-MyAccount-navigation ul {
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-1);
    }

    .woocommerce-MyAccount-navigation ul li a {
        border-left: none;
        border-bottom: 2px solid transparent;
        padding: var(--space-2) var(--space-3);
    }
}

/* WC notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: var(--space-4) var(--space-5);
    margin-bottom: var(--space-5);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    border: 1px solid var(--color-border);
}

.woocommerce-message {
    background: #f0fdf4;
    border-color: #86efac;
    color: #166534;
}

.woocommerce-info {
    background: #eff6ff;
    border-color: #93c5fd;
    color: #1e40af;
}

.woocommerce-error {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #991b1b;
    list-style: none;
    padding-left: var(--space-5);
}

.woocommerce-message a,
.woocommerce-info a {
    float: right;
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* 404 page */
.error-404 {
    text-align: center;
    padding: var(--space-16) 0;
}

.error-404__title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-yellow);
    line-height: 1;
    margin-bottom: var(--space-4);
}

.error-404__subtitle {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

.error-404__desc {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Search results page (.search-page wrapper avoids body class collision) */
.search-page {
    padding: var(--space-10) 0;
}

.search-page__header {
    margin-bottom: var(--space-6);
}

.search-page__overline {
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-grey-mid);
    margin: 0 0 var(--space-2);
}

.search-page__title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-black);
    margin: 0 0 var(--space-2);
}

.search-page__term {
    color: var(--color-black);
    background: var(--color-yellow);
    padding: 0 var(--space-2);
    margin-left: var(--space-2);
    font-style: normal;
    display: inline-block;
}

.search-page__count {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-grey-mid);
    margin: 0;
}

/* Toolbar: tabs + sort */
.search-page__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    flex-wrap: wrap;
    padding: var(--space-3) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--space-6);
}

.search-page__tabs {
    display: flex;
    gap: var(--space-1);
    flex-wrap: wrap;
}

.search-page__tab {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-grey-mid);
    border-radius: 100px;
    transition: all var(--transition-fast);
}

.search-page__tab:hover {
    color: var(--color-black);
    background: var(--color-grey-lightest);
}

.search-page__tab.is-active {
    background: var(--color-black);
    color: var(--color-white);
}

.search-page__tab-count {
    font-size: 0.625rem;
    background: rgba(0, 0, 0, 0.08);
    padding: 1px 6px;
    border-radius: 100px;
    font-weight: var(--font-weight-regular);
}

.search-page__tab.is-active .search-page__tab-count {
    background: rgba(255, 255, 255, 0.18);
    color: var(--color-white);
}

.search-page__sort {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-size: var(--text-sm);
}

.search-page__sort label {
    color: var(--color-grey-mid);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.search-page__sort select {
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    cursor: pointer;
}

/* Result list */
.search-page__results {
    display: flex;
    flex-direction: column;
}

.search-result-card {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-5) 0;
    border-bottom: 1px solid var(--color-border);
}

.search-result-card__thumb {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    background: var(--color-grey-lightest);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.search-result-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-card__body {
    flex: 1;
    min-width: 0;
}

.search-result-card__type {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-grey-mid);
    margin: 0 0 var(--space-1);
}

.search-result-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.03em;
    margin: 0 0 var(--space-2);
    text-transform: uppercase;
}

.search-result-card__title a {
    color: var(--color-black);
    transition: color var(--transition-fast);
}

.search-result-card__title a:hover {
    color: var(--color-grey-dark);
}

.search-result-card__excerpt {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.search-result-card__excerpt p { margin: 0 0 var(--space-2); }

.search-result-card__price {
    display: inline-block;
    margin-top: var(--space-2);
    font-family: var(--font-heading);
    color: var(--color-black);
    font-weight: var(--font-weight-medium);
}

.search-page__empty {
    padding: var(--space-10) 0;
    text-align: center;
    color: var(--color-grey-mid);
}

@media (max-width: 768px) {
    .search-result-card { flex-direction: column; gap: var(--space-3); }
    .search-result-card__thumb { width: 100%; height: 200px; }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid--3col {
        grid-template-columns: repeat(2, 1fr);
    }
    .services {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .step:not(:last-child)::after {
        display: none;
    }
    .testimonials {
        grid-template-columns: 1fr;
    }
    .split {
        grid-template-columns: 1fr;
    }
    .split__image {
        min-height: 400px;
    }
    .split__content {
        padding: var(--space-8) var(--space-5);
    }
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .booking-layout {
        grid-template-columns: 1fr;
    }
    .booking-summary {
        position: static;
    }
    .booking-card__checklist {
        grid-template-columns: 1fr;
    }
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    .checkout-order__inner {
        position: static;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .product-layout {
        grid-template-columns: 1fr;
    }
    .product-gallery {
        position: static;
    }
}

@media (max-width: 1024px) {
    /* --- MOBILE HEADER --- */
    .header__topbar {
        display: none;
    }

    .header__logo,
    .header .custom-logo-link {
        position: static;
        transform: none;
    }

    .header__logo img,
    .header .custom-logo {
        height: 44px !important;
    }

    .header__main .container {
        padding-left: var(--space-5);
        padding-right: var(--space-5);
    }

    .header.is-scrolled .header__main .container {
        padding-left: var(--space-5);
    }

    .header__main {
        padding: var(--space-3) 0;
    }

    .header.is-scrolled .header__main {
        padding: var(--space-3) 0;
    }

    /* Desktop nav hidden on mobile (uses mobile-menu drawer instead) */
    .header__nav {
        display: none;
    }

    /* Mobile actions: search + basket + hamburger (no CTA, no account icon) */
    .header__actions {
        gap: var(--space-3);
    }

    /* Hide desktop-only items on mobile */
    .header__cta,
    .account-panel-wrap {
        display: none;
    }

    .header__mobile-toggle {
        display: block;
        order: 3;
    }

    /* --- GENERAL MOBILE --- */
    .hero {
        min-height: 70vh;
    }
    .hero__stats {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-6);
        text-align: center;
        padding-top: var(--space-8);
        padding-bottom: var(--space-8);
    }
    .hero__stat-value {
        font-size: var(--text-2xl);
    }
    .trust-bar .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-4) var(--space-6);
        width: auto;
        animation: none;
    }
    .trust-bar__item {
        font-size: var(--text-xs);
    }

    /* Mobile nav links — stack vertically */
    .header__nav .nav-links {
        flex-direction: column;
        gap: var(--space-6);
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }
    .products-grid--3col {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }
    .services {
        grid-template-columns: 1fr;
    }
    .steps {
        grid-template-columns: 1fr;
    }
    .trust-bar {
        overflow: hidden;
    }
    .trust-bar .container {
        display: flex;
        flex-wrap: nowrap;
        gap: var(--space-8);
        animation: trust-bar-scroll 16s linear infinite;
        width: max-content;
        padding: 0 var(--space-5);
    }
    .trust-bar__item {
        flex-shrink: 0;
        white-space: nowrap;
    }
    .footer__grid {
        grid-template-columns: 1fr;
    }
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-3);
        text-align: center;
    }
    .section {
        padding: var(--space-8) 0;
    }

    /* --- MOBILE SHOP FILTER --- */
    .shop-sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-white);
        z-index: 9998;
        overflow-y: auto;
        padding: var(--space-6) var(--space-5);
        padding-bottom: 80px;
    }
    .shop-sidebar.is-open {
        display: block;
    }

    .shop-filter-toggle {
        display: flex;
    }

    .shop-filter-bar {
        display: flex;
    }

    .booking-progress__label {
        display: none;
    }
    .booking-progress__connector {
        width: 24px;
    }
    .booking-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }
    .booking-card__select-btn {
        width: 100%;
    }
    .booking-form__symptoms {
        grid-template-columns: 1fr;
    }
    .booking-form__radios {
        grid-template-columns: 1fr;
    }
    .booking-form__service-badge {
        flex-direction: column;
        gap: var(--space-2);
        text-align: center;
    }
    .product-info__actions {
        flex-direction: column;
    }
    .product-tabs__nav {
        overflow-x: auto;
    }
    .product-gallery__thumbs {
        gap: var(--space-2);
    }
    .product-gallery__thumb {
        width: 60px;
        height: 60px;
    }
}

/* ========================================
   PRODUCT COMPATIBILITY CHECK WIDGET
   ======================================== */

.compat-check {
    margin-top: var(--space-6);
    padding: var(--space-5);
    background: var(--color-grey-lightest);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}

.compat-check__title {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-light);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 var(--space-4);
    color: var(--color-text-primary);
}

.compat-check__selects {
    display: flex;
    gap: var(--space-3);
}

.compat-check__selects select {
    flex: 1;
    padding: var(--space-2) var(--space-3);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    color: var(--color-text-primary);
    cursor: pointer;
}

.compat-check__selects select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.compat-check__result {
    margin-top: var(--space-4);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-regular);
}

.compat-check__result svg {
    flex-shrink: 0;
}

.compat-check__result--yes {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.compat-check__result--no {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.compat-check__result--no a {
    color: inherit;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .compat-check__selects {
        flex-direction: column;
    }
}

/* ========================================
   COMPATIBILITY CHECKER
   ======================================== */

.compat-checker {
    padding: var(--space-12) 0 var(--space-16);
}

.compat-checker__header {
    text-align: center;
    margin-bottom: var(--space-10);
}

.compat-checker__title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-3);
}

.compat-checker__intro {
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    max-width: 520px;
    margin: 0 auto;
}

/* ── Progress steps ── */

.compat-checker__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: var(--space-10);
}

.compat-step {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    opacity: 0.35;
    transition: opacity var(--transition-base);
}

.compat-step.is-active,
.compat-step.is-done {
    opacity: 1;
}

.compat-step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--color-black);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-base);
}

.compat-step.is-active .compat-step__number {
    background: var(--color-black);
    color: var(--color-white);
}

.compat-step.is-done .compat-step__number {
    background: var(--color-yellow);
    border-color: var(--color-yellow);
    color: var(--color-black);
}

.compat-step__label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.compat-step__line {
    width: 40px;
    height: 2px;
    background: var(--color-border);
    margin: 0 var(--space-3);
}

.compat-step.is-done + .compat-step__line {
    background: var(--color-yellow);
}

/* ── Panels ── */

.compat-panel {
    display: none;
    animation: compatFadeIn 0.3s ease;
}

.compat-panel.is-active {
    display: block;
}

@keyframes compatFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.compat-panel__heading {
    font-size: var(--text-lg);
    margin-bottom: var(--space-6);
    text-align: center;
}

/* ── Option buttons ── */

.compat-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-4);
    max-width: 800px;
    margin: 0 auto;
}

.compat-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-5) var(--space-4);
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.compat-option:hover {
    border-color: var(--color-black);
    background: var(--color-grey-lightest);
}

.compat-option:active {
    background: var(--color-yellow);
    border-color: var(--color-yellow);
}

.compat-options__empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--color-text-secondary);
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
}

/* ── Loading state ── */

.compat-loading {
    text-align: center;
    padding: var(--space-8);
    color: var(--color-text-secondary);
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
}

/* ── Results grid ── */

.compat-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--space-5);
    max-width: 1000px;
    margin: 0 auto;
}

.compat-results__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-10);
    color: var(--color-text-secondary);
    font-family: var(--font-body);
    font-weight: var(--font-weight-light);
}

.compat-results__empty a {
    color: var(--color-black);
    text-decoration: underline;
}

.compat-product {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.compat-product:hover {
    border-color: var(--color-black);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.compat-product__img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-grey-lightest);
}

.compat-product__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compat-product__placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-grey-light);
}

.compat-product__info {
    padding: var(--space-4);
}

.compat-product__title {
    font-size: var(--text-sm);
    margin-bottom: var(--space-2);
}

.compat-product__price {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.05em;
}

/* ── Breadcrumb trail ── */

.compat-checker__trail {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-8);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-light);
}

.compat-trail__btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--color-text-secondary);
    text-decoration: underline;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    transition: color var(--transition-fast);
}

.compat-trail__btn:hover {
    color: var(--color-black);
}

.compat-trail__sep {
    color: var(--color-grey);
}

.compat-trail__current {
    color: var(--color-black);
    font-weight: var(--font-weight-regular);
}

/* ── Compatibility checker mobile ── */

@media (max-width: 768px) {
    .compat-checker {
        padding: var(--space-8) 0 var(--space-10);
    }

    .compat-checker__title {
        font-size: var(--text-2xl);
    }

    .compat-step__label {
        display: none;
    }

    .compat-step__line {
        width: 24px;
    }

    .compat-options {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3);
    }

    .compat-results {
        grid-template-columns: 1fr 1fr;
    }

    .compat-option {
        padding: var(--space-4) var(--space-3);
        font-size: var(--text-xs);
    }
}

/* ========================================
   SEARCH OVERLAY
   ======================================== */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    visibility: hidden;
}

.search-overlay.is-open {
    pointer-events: auto;
    visibility: visible;
}

.search-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.search-overlay.is-open .search-overlay__backdrop {
    opacity: 1;
}

.search-overlay__panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--space-5) 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.search-overlay.is-open .search-overlay__panel {
    transform: translateY(0);
}

.search-overlay__form {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-5);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Scope toggle (segmented pill) */
.search-overlay__scope {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 3px;
    flex-shrink: 0;
}

.search-overlay__scope-option {
    position: relative;
    cursor: pointer;
}

.search-overlay__scope-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.search-overlay__scope-option span {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-grey);
    border-radius: 100px;
    transition: all var(--transition-fast);
}

.search-overlay__scope-option input:checked + span {
    background: var(--color-yellow);
    color: var(--color-black);
}

/* Input area */
.search-overlay__input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: var(--space-2);
    min-width: 240px;
}

.search-overlay__icon {
    color: var(--color-grey);
    flex-shrink: 0;
}

.search-overlay__input {
    flex: 1;
    background: transparent;
    border: 0;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-style: italic;
    font-weight: var(--font-weight-light);
    padding: var(--space-2) 0;
    outline: 0;
}

.search-overlay__input::placeholder {
    color: var(--color-grey);
    font-style: italic;
}

.search-overlay__clear {
    background: none;
    border: 0;
    color: var(--color-grey);
    cursor: pointer;
    padding: var(--space-1);
    display: inline-flex;
}

.search-overlay__clear:hover { color: var(--color-white); }

.search-overlay__submit {
    flex-shrink: 0;
}

.search-overlay__close {
    background: none;
    border: 0;
    color: var(--color-grey);
    cursor: pointer;
    padding: var(--space-2);
    display: inline-flex;
    flex-shrink: 0;
}

.search-overlay__close:hover { color: var(--color-white); }

/* Suggest list */
.search-overlay__suggest {
    max-width: 1400px;
    margin: var(--space-5) auto 0;
    padding: 0 var(--space-5);
}

.search-overlay__suggest-label {
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-grey);
    margin: 0 0 var(--space-3);
}

.search-overlay__suggest-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-2);
}

.search-overlay__suggest-empty {
    color: var(--color-grey);
    font-family: var(--font-body);
    font-size: var(--text-sm);
}

.search-overlay__suggest-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2);
    border-radius: var(--border-radius-sm);
    color: var(--color-white);
    transition: background var(--transition-fast);
}

.search-overlay__suggest-link:hover,
.search-overlay__suggest-link.is-active {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
}

.search-overlay__suggest-thumb {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-overlay__suggest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-overlay__suggest-meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.search-overlay__suggest-title {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-white);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-overlay__suggest-price {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--color-yellow);
}

.search-overlay__suggest-all {
    margin: var(--space-4) 0 0;
    text-align: center;
}

.search-overlay__suggest-all a {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-yellow);
}

body.search-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .search-overlay__form {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-3);
    }

    .search-overlay__scope {
        align-self: flex-start;
    }

    .search-overlay__close {
        position: absolute;
        top: var(--space-3);
        right: var(--space-3);
    }

    .search-overlay__suggest-list {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   MOBILE MENU (slide-out)
   ======================================== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu.is-open {
    pointer-events: auto;
    visibility: visible;
}

.mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.is-open .mobile-menu__backdrop {
    opacity: 1;
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 90vw);
    background: var(--color-black);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.mobile-menu__logo img {
    max-height: 32px;
    width: auto;
}

.mobile-menu__close {
    background: none;
    border: 0;
    color: var(--color-white);
    padding: var(--space-1);
    cursor: pointer;
    display: inline-flex;
}

.mobile-menu__scroll {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-4) var(--space-5) var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

/* Account card */
.mobile-menu__account-card {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 0, 0.08);
    border: 1px solid rgba(255, 255, 0, 0.3);
    border-radius: var(--border-radius);
    color: var(--color-white);
    transition: background var(--transition-fast);
}

.mobile-menu__account-card:hover {
    background: rgba(255, 255, 0, 0.12);
    color: var(--color-white);
}

.mobile-menu__account-card--guest {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

.mobile-menu__account-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-yellow);
    flex-shrink: 0;
}

.mobile-menu__account-info {
    flex: 1;
    min-width: 0;
}

.mobile-menu__account-overline {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-grey);
    margin: 0 0 2px;
}

.mobile-menu__account-name {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--font-weight-medium);
    color: var(--color-white);
    margin: 0;
}

.mobile-menu__account-prompt {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-grey-light);
    margin: 0;
}

.mobile-menu__account-actions {
    display: flex;
    gap: var(--space-2);
}

.mobile-menu__account-actions .btn { flex: 1; }

.mobile-menu__chevron {
    color: var(--color-grey);
    flex-shrink: 0;
}

/* Search trigger button */
.mobile-menu__search-trigger {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius);
    color: var(--color-grey);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    text-align: left;
    cursor: pointer;
    width: 100%;
    transition: background var(--transition-fast);
}

.mobile-menu__search-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
}

.mobile-menu__search-trigger svg {
    flex-shrink: 0;
}

/* Nav */
.mobile-menu__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mobile-menu__nav-list li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__nav-list a {
    display: block;
    padding: var(--space-3) 0;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.mobile-menu__nav-list a:hover,
.mobile-menu__nav-list .current-menu-item > a {
    color: var(--color-yellow);
}

/* Topbar links */
.mobile-menu__topbar {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3) var(--space-4);
    padding-top: var(--space-2);
}

.mobile-menu__topbar a {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-grey-light);
}

.mobile-menu__topbar a:hover { color: var(--color-yellow); }

/* CTAs */
.mobile-menu__ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    padding-top: var(--space-3);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__ctas .btn { width: 100%; }

/* Contact */
.mobile-menu__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.mobile-menu__contact-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-grey-light);
}

.mobile-menu__contact-link:hover { color: var(--color-yellow); }

/* Social */
.mobile-menu__social {
    display: flex;
    gap: var(--space-3);
}

.mobile-menu__social a {
    color: var(--color-grey);
    transition: color var(--transition-fast);
}

.mobile-menu__social a:hover { color: var(--color-yellow); }

.mobile-menu__logout {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-grey);
    margin-top: var(--space-3);
    padding-top: var(--space-3);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__logout:hover { color: var(--color-yellow); }

/* btn--outline-light variant for dark backgrounds */
.btn--outline-light {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-white);
}

