:root {
    --bg: #f6f6f6;
    --surface: #ffffff;
    --text: #131313;
    --muted: #666666;
    --brand: #131313;
    --brand-soft: #f0f0f0;
    --accent: #f4c524;
    --danger: #c8102e;
    --line: #e5e7eb;
    --radius: 14px;
    --shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", "Trebuchet MS", sans-serif;
    color: var(--text);
    background: var(--bg);
}

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

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

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

.container {
    width: min(1180px, 92vw);
    margin-left: auto;
    margin-right: auto;
}

.promo-bar {
    background: #111;
    color: #fff;
    font-size: 0.86rem;
}

.promo-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.promo-inner p {
    margin: 0;
}

.promo-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.promo-links a {
    color: var(--accent);
    font-weight: 700;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
}

.nav-row {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    height: 82px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    display: block;
    height: 64px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

.search {
    flex: 1;
    display: flex;
    gap: 10px;
    position: relative;
}

.search input {
    flex: 1;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 16px;
    background: #fff;
    font-size: 0.95rem;
}

.search-btn {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    padding: 0;
    background: var(--accent);
    color: #111;
}

.search-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.search-suggest {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.search-suggest a {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.92rem;
}

.search-suggest a:hover {
    background: var(--brand-soft);
}

.search-suggest .suggest-all {
    font-weight: 800;
}

button,
.btn {
    border: none;
    background: #111;
    color: #fff;
    border-radius: 10px;
    padding: 11px 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

button:hover,
.btn:hover {
    opacity: 0.92;
}

button.ghost,
.btn.ghost,
.ghost {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--line);
}

button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

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

.icon-btn {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    position: relative;
}

.icon-btn svg {
    width: 24px;
    height: 24px;
}

.bubble {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    background: var(--accent);
    color: #111;
    font-size: 0.72rem;
    font-weight: 900;
    display: grid;
    place-items: center;
    padding: 0 6px;
    border: 2px solid #fff;
}

.mini-panel {
    position: relative;
}

.mini-panel summary {
    list-style: none;
}

.mini-panel summary::-webkit-details-marker {
    display: none;
}

.mini-panel[open] .panel-body {
    display: block;
}

.panel-body {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: min(340px, 86vw);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    overflow: hidden;
    z-index: 40;
}

.panel-head {
    padding: 14px;
    border-bottom: 1px solid var(--line);
}

.panel-head h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.panel-head p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

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

.panel-list {
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 310px;
    overflow: auto;
}

.panel-list li a {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--line);
}

.panel-list li a:hover {
    background: var(--brand-soft);
}

.panel-list img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: var(--brand-soft);
}

.panel-list strong {
    display: block;
    font-size: 0.9rem;
}

.panel-list small {
    color: var(--muted);
}

.panel-foot {
    padding: 12px 14px;
    display: grid;
    gap: 10px;
}

.panel-foot.split {
    grid-template-columns: 1fr 1fr;
}

.panel-foot .btn {
    width: 100%;
}

.subnav {
    border-top: 1px solid var(--line);
    background: #fff;
}

.subnav-inner {
    display: flex;
    gap: 10px;
    overflow: auto;
    padding: 12px 0;
    scrollbar-width: none;
}

.subnav-inner::-webkit-scrollbar {
    display: none;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--line);
    padding: 8px 14px;
    background: #fff;
    font-weight: 800;
    font-size: 0.86rem;
    white-space: nowrap;
}

.pill.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: #111;
}

.hero {
    margin-top: 16px;
    margin-bottom: 24px;
}

.hero-content {
    background-image:
        linear-gradient(120deg, rgba(17,17,17,0.92) 0%, rgba(42,42,42,0.82) 55%, rgba(17,17,17,0.92) 100%),
        url('/assets/img/hero-bg.webp');
    background-size: cover;
    background-position: center 40%;
    color: #fff;
    border-radius: calc(var(--radius) + 6px);
    padding: clamp(22px, 5vw, 46px);
    box-shadow: var(--shadow);
}

.kicker {
    text-transform: uppercase;
    letter-spacing: 0.13em;
    margin: 0 0 8px;
    opacity: 0.92;
    font-size: 0.8rem;
    color: var(--accent);
}

.hero h1 {
    margin: 0 0 8px;
    font-size: clamp(1.4rem, 3.5vw, 2.3rem);
}

.hero p {
    margin: 0;
    opacity: 0.94;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.hero-actions .btn {
    background: var(--accent);
    color: #111;
}

.hero-actions .btn.ghost {
    background: #fff;
    color: #111;
}

.section {
    margin-top: 0;
    margin-bottom: 32px;
}

/* ── Welcome Strip ── */
.welcome-strip {
    background: linear-gradient(90deg, #111 0%, #1e1e1e 100%);
    color: #fff;
    padding: 0;
    border-bottom: 2px solid var(--accent);
}

.welcome-strip-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.welcome-strip-text {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0 10px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.welcome-strip-text strong {
    color: var(--accent);
    font-size: .92rem;
    white-space: nowrap;
}

.welcome-strip-text span {
    font-size: .82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
}

.welcome-strip-perks {
    display: flex;
    gap: 0;
    overflow: hidden;
}

.welcome-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px 12px 0;
    flex: 1;
    min-width: 0;
}

.welcome-perk + .welcome-perk {
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.welcome-perk svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--accent);
}

.welcome-perk span {
    font-size: .8rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.3;
}

@media (max-width: 860px) {
    .welcome-strip-perks { flex-wrap: wrap; gap: 0; }
    .welcome-perk { flex: 1 1 45%; }
    .welcome-perk + .welcome-perk { border-left: none; padding-left: 0; }
    .welcome-perk:nth-child(odd) { padding-right: 12px; }
}

@media (max-width: 540px) {
    .welcome-strip-perks { display: none; }
    .welcome-strip-text { padding-bottom: 14px; border-bottom: none; }
}

/* ── Promo Banner (Frasers-style) ── */
.promo-banner-section {
    margin-bottom: 32px;
    overflow: hidden;
}

.promo-banner {
    background: linear-gradient(120deg, #1a0533 0%, #2d0a5e 50%, #1a0533 100%);
    color: #fff;
    display: grid;
    grid-template-columns: 340px 1fr;
    min-height: 200px;
    overflow: hidden;
}

.promo-banner-left {
    padding: clamp(24px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.promo-banner-left::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.promo-banner-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.promo-banner-title {
    margin: 0;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.promo-banner-title span {
    color: #c084fc;
}

.promo-banner-sub {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
}

.promo-banner-discount {
    display: inline-flex;
    align-items: center;
    background: #a855f7;
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 8px;
    width: fit-content;
}

.promo-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.promo-banner-actions .btn {
    background: #fff;
    color: #1a0533;
    font-weight: 800;
}

.promo-banner-actions .btn.ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.promo-banner-right {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    position: relative;
}

.promo-banner-right::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to right, #1a0533, transparent);
    z-index: 1;
    pointer-events: none;
}

.promo-products {
    display: flex;
    gap: 2px;
    overflow: hidden;
    width: 100%;
}

.promo-product {
    flex: 1;
    background: rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: background 0.2s;
}

.promo-product:hover {
    background: rgba(255,255,255,0.1);
}

.promo-product-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
}

.promo-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.promo-product:hover .promo-product-img img {
    transform: scale(1.04);
}

.promo-product-info {
    padding: 10px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.promo-product-brand {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.promo-product-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.promo-product-badge {
    display: inline-flex;
    align-items: center;
    background: #a855f7;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.promo-product-price {
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.promo-product-old {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    text-decoration: line-through;
}

@media (max-width: 960px) {
    .promo-banner {
        grid-template-columns: 1fr;
    }

    .promo-banner-right {
        display: none;
    }
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}

.section-head h2 {
    margin: 0;
}

.slider-section {
    margin-bottom: 32px;
    overflow: hidden;
}

.slider-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 0 max(16px, calc((100vw - 1180px) / 2));
}

.slider-head h2 {
    margin: 0;
}

.slider-head-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-arrows {
    display: flex;
    gap: 6px;
}

.slider-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.15s, border-color 0.15s;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #111;
}

.slider-arrow svg {
    width: 18px;
    height: 18px;
}

.h-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    padding-left: max(16px, calc((100vw - 1180px) / 2));
    padding-right: max(16px, calc((100vw - 1180px) / 2));
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.h-scroll::-webkit-scrollbar {
    display: none;
}

.h-scroll > * {
    scroll-snap-align: start;
    flex: 0 0 280px;
}

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

.collection-card {
    display: grid;
    gap: 8px;
    padding: 24px;
    min-height: 160px;
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #f5f0dc;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.collection-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(244, 197, 36, 0.85) 0%, rgba(255, 248, 220, 0.65) 100%);
    z-index: 0;
    transition: opacity 140ms ease;
}

.collection-card > * {
    position: relative;
    z-index: 1;
}

.collection-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.12);
}

.collection-card strong {
    font-size: 1.15rem;
}

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

.collection-card .text-link {
    margin-top: auto;
}

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

.feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 8px;
    align-content: start;
}

.feature-card svg {
    width: 28px;
    height: 28px;
}

.feature-card strong {
    font-size: 1.05rem;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.filters,
.summary,
.card,
.empty-state,
.product-layout,
.basket-item,
.content-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.content-card {
    padding: 24px;
}

.content-card.inner {
    padding: 20px;
    box-shadow: none;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 24px 0;
}

.bullet {
    margin: 10px 0 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.notice {
    margin: 14px 0;
    padding: 12px;
    border-radius: 12px;
    background: rgba(244, 197, 36, 0.14);
    border: 1px solid rgba(244, 197, 36, 0.46);
}

.success-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.success-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.summary-lines {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: grid;
    gap: 8px;
}

.summary-lines li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--brand-soft);
}

.summary-lines small {
    color: var(--muted);
    font-size: 0.86em;
}

.success-totals {
    display: grid;
    gap: 8px;
    margin: 0;
}

.success-totals div {
    display: flex;
    justify-content: space-between;
}

.success-totals .grand {
    font-size: 1.1rem;
    font-weight: 800;
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

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

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

.field {
    display: grid;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--muted);
}

.span-2 {
    grid-column: span 2;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    background: #fff;
    font-size: 0.95rem;
}

textarea {
    resize: vertical;
}

.delivery-box {
    margin: 12px 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--brand-soft);
}

.delivery-box h3 {
    margin: 0 0 10px;
}

.radio {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.radio + .radio {
    margin-top: 10px;
}

.radio input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.radio span {
    display: grid;
    gap: 2px;
    color: var(--text);
}

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

.fine-print {
    color: var(--muted);
    font-size: 0.86rem;
}

.faq {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.faq details {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 10px 12px;
}

.faq summary {
    cursor: pointer;
    font-weight: 800;
    color: var(--text);
}

.faq p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.filters {
    align-self: start;
    padding: 16px;
    position: sticky;
    top: 94px;
}

.filters h2 {
    margin: 0 0 10px;
}

.filter-form {
    display: grid;
    gap: 10px;
}

.filter-form label {
    display: grid;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--muted);
}

select,
input[type="number"] {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    background: #fff;
}

.check {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 0.92rem;
}

.check input {
    width: 18px;
    height: 18px;
}

.text-link {
    color: #111;
    font-weight: 600;
}

.result-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
}

.result-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-form select {
    width: auto;
    min-width: 190px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}

.grid.compact {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

.card {
    overflow: hidden;
    transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
}

.card-media {
    position: relative;
}

.no-image-placeholder {
    aspect-ratio: 4 / 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-soft);
    color: var(--muted);
    font-size: 0.8rem;
    text-align: center;
    padding: 12px;
    box-sizing: border-box;
}

.no-image-placeholder svg {
    width: 40px;
    height: 40px;
    opacity: 0.3;
    display: block;
    margin: 0 auto 6px;
}

.thumb-link img,
.basket-thumb img {
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: cover;
    display: block;
    background: var(--brand-soft);
}

.thumb-link img {
    transition: transform 180ms ease;
}

.card:hover .thumb-link img {
    transform: scale(1.02);
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
}

.badge-deal {
    background: var(--accent);
    color: #111;
}

.badge-out {
    top: 12px;
    left: auto;
    right: 12px;
    background: var(--danger);
    color: #fff;
}

.card-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.meta {
    margin: 0 0 5px;
    color: var(--muted);
    font-size: 0.82rem;
}

.card h3,
.card h2 {
    margin: 0 0 8px;
    font-size: 1rem;
    flex: 1;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 10px;
}

.price-row strong {
    font-size: 1.1rem;
}

.price-row span {
    color: #9aa2b2;
    text-decoration: line-through;
}

.price-row.large strong {
    font-size: 1.6rem;
}

.card-actions,
.stack-actions,
.basket-controls,
.inline-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.card-actions form,
.stack-actions form {
    flex: 1;
}

.card-actions button,
.stack-actions button {
    width: 100%;
}

.page-space {
    padding: 26px 0 40px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 16px;
}

.thumbs {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.image-hint {
    color: var(--muted);
    font-size: 0.86rem;
}

.product-content h1 {
    margin: 8px 0;
}

.specs {
    display: grid;
    gap: 8px;
    margin: 12px 0;
}

.specs div {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    border: 1px dashed var(--line);
    border-radius: 8px;
}

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

.description {
    line-height: 1.5;
}

.related {
    margin-top: 20px;
}

.basket-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 14px;
}

.basket-item {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 12px;
    padding: 12px;
    margin-bottom: 12px;
}

.basket-item h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.line-total {
    font-weight: 700;
    align-self: center;
}

.summary {
    align-self: start;
    padding: 14px;
    position: sticky;
    top: 92px;
}

.summary h2 {
    margin-top: 0;
}

.summary dl {
    display: grid;
    gap: 8px;
    margin: 0 0 12px;
}

.summary dl div {
    display: flex;
    justify-content: space-between;
}

.summary .grand {
    font-size: 1.1rem;
    font-weight: 800;
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.full {
    width: 100%;
    margin-bottom: 8px;
}

.empty-state {
    padding: 30px;
    text-align: center;
}

/* ── Cookie Banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    color: #fff;
    z-index: 9999;
    border-top: 2px solid var(--accent);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cookie-banner-text strong {
    font-size: .95rem;
    color: var(--accent);
}

.cookie-banner-text span {
    font-size: .82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

.cookie-banner-text a {
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner-actions .btn {
    background: var(--accent);
    color: #111;
    font-size: .88rem;
    padding: 8px 18px;
    white-space: nowrap;
}

.cookie-banner-actions .btn.ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.35);
    font-size: .88rem;
    padding: 8px 18px;
}

@media (max-width: 600px) {
    .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .cookie-banner-actions { width: 100%; }
    .cookie-banner-actions .btn { flex: 1; text-align: center; }
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 18px 0 26px;
    color: var(--muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 18px;
    align-items: start;
}

.footer-brand strong {
    display: inline-block;
    margin-bottom: 6px;
    color: #111;
}

.footer-brand p {
    margin: 0;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links strong {
    display: block;
    color: #111;
    margin-bottom: 4px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 220px;
    height: 44px;
    border-radius: 999px;
}

.newsletter-form button {
    height: 44px;
    border-radius: 999px;
    padding: 0 18px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-fine {
    text-align: left;
}

.footer-fine p {
    margin: 0 0 8px;
}

.toast-host {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    gap: 10px;
    z-index: 99;
}

.toast {
    background: rgba(17, 17, 17, 0.92);
    color: #fff;
    padding: 12px 14px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    min-width: min(420px, 90vw);
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.toast strong {
    font-size: 0.95rem;
}

.toast.error {
    background: rgba(200, 16, 46, 0.94);
}

@media (max-width: 960px) {
    .layout,
    .product-layout,
    .basket-layout,
    .checkout-layout,
    .success-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .filters,
    .summary {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

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

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

    .h-scroll {
        padding-left: 16px;
        padding-right: 16px;
    }

    .slider-head {
        padding: 0 16px;
    }

    .h-scroll > * {
        flex: 0 0 72vw;
    }

    .footer-fine {
        text-align: left;
    }
}

@media (max-width: 720px) {
    .nav-row {
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .search {
        order: 3;
        width: 100%;
    }

    .header-actions {
        margin-left: auto;
    }

    .basket-item {
        grid-template-columns: 90px 1fr;
    }

    .line-total {
        grid-column: 2;
    }

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

    .span-2 {
        grid-column: auto;
    }

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