:root {
    --bg: #f8fafc;
    --bg-white: #ffffff;
    --bg-muted: #f1f5f9;
    --navy: #0b1120;
    --navy-soft: #151d32;
    --text: #111827;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --primary: #2563eb;
    --accent: #e32a26;
    --accent-hover: #c92420;
    --offer-tag: #c2410c;
    --success: #059669;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
    --container: min(1180px, 96%);
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --header-height: 64px;
}

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

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: var(--container); margin: 0 auto; }
.site-main{
    min-height: calc(100vh - 64px);
}

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 1100;
    background: #fff; border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 64px;
}
.brand {
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-logo__icon {
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}
.brand-logo__word {
    display: inline-flex; align-items: baseline;
    font-weight: 800; font-size: 1.125rem; letter-spacing: 0.06em; line-height: 1;
}
.brand-logo__x { color: var(--primary); }
.brand-logo__rest { color: var(--text); }
.brand--footer .brand-logo__icon { color: #60a5fa; }
.brand--footer .brand-logo__x { color: #93c5fd; }
.brand--footer .brand-logo__rest { color: #fff; }
.header-nav { display: flex; gap: 28px; }
.header-nav a {
    color: var(--text-muted); font-weight: 500; font-size: 15px; text-decoration: none;
}
.header-nav a:hover, .header-nav a.is-active { color: var(--text); text-decoration: none; }
.header-nav a.is-active { font-weight: 600; }
.header-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    background: transparent;
    cursor: pointer;
    color: var(--text);
    flex-shrink: 0;
}
.header-menu-toggle:hover { background: var(--bg-muted); }
.header-menu-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.2s, opacity 0.2s;
}
.site-header.is-menu-open .header-menu-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.site-header.is-menu-open .header-menu-toggle__bar:nth-child(2) { opacity: 0; }
.site-header.is-menu-open .header-menu-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Breadcrumb */
.breadcrumb-bar { background: var(--bg-muted); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 8px; font-size: 14px; color: var(--text-muted);
}
.breadcrumb-list li:not(:last-child)::after { content: '/'; margin-left: 8px; color: #cbd5e1; }

/* Hero */
.hero--home {
    background: linear-gradient(135deg, #0b1120 0%, #1e1b4b 55%, #312e81 100%);
    color: #fff; padding: 72px 0 80px; text-align: center;
}
.hero-home { max-width: 760px; margin: 0 auto; }
.hero-eyebrow {
    margin: 0 0 16px; font-size: 14px; color: rgba(255,255,255,.72);
}
.hero--home h1 {
    margin: 0 0 16px; font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.15;
    background: linear-gradient(90deg, #fff 0%, #c4b5fd 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { margin: 0 0 28px; color: rgba(255,255,255,.75); font-size: 1.05rem; }
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    border: 0; border-radius: 999px; font: inherit; font-weight: 600; cursor: pointer;
    text-decoration: none; transition: background .15s, transform .15s;
}
.btn:hover { text-decoration: none; }
.btn-hero {
    background: #fff; color: var(--text); padding: 14px 28px; font-size: 15px;
}
.btn-hero:hover { background: #f8fafc; color: var(--text); transform: translateY(-1px); }

/* Sections */
.section { padding: 40px 0; }
.section-muted { background: var(--bg-muted); }
.section-brands { padding-top: 28px; }
.section-head { margin-bottom: 20px; }
.section-head h2 { margin: 0; font-size: 1.35rem; font-weight: 700; }
.section-head--inline {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.section-link { font-size: 14px; font-weight: 600; color: var(--primary); text-decoration: none; }
.section-link:hover { text-decoration: underline; }

/* Featured brands row */
.brand-row {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
.brand-tile {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 18px 12px; background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); text-decoration: none; color: var(--text);
    transition: box-shadow .2s, transform .2s;
}
.brand-tile:hover { box-shadow: var(--shadow); transform: translateY(-2px); text-decoration: none; }
.brand-tile__name { font-size: 13px; font-weight: 600; color: var(--text-muted); }

/* Home layout */
.home-layout {
    display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 24px; align-items: start;
}
.sidebar-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 24px 20px;
}
.sidebar-card h3 { margin: 0 0 16px; font-size: 1.05rem; }
.sidebar-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.sidebar-list li {
    display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted);
}
.sidebar-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; border-radius: 50%; background: #ecfdf5; color: var(--success);
    font-size: 12px; font-weight: 700;
}

/* Offer cards */
.offer-list { display: grid; gap: 12px; }
.offer-card {
    display: grid; grid-template-columns: 72px minmax(0, 1fr) auto; gap: 16px; align-items: flex-start;
    padding: 16px 20px; background: #fff; border: 1px solid #e5e7eb;
    border-radius: 12px; box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.offer-card__logo { padding-top: 2px; }
.offer-card__actions { align-self: center; }
.offer-card__discount-line { margin: 0 0 4px; }
.offer-tag {
    font-size: 13px; font-weight: 800; letter-spacing: 0.02em; color: var(--offer-tag);
}
.offer-card__title { margin: 0; font-size: 15px; font-weight: 600; line-height: 1.45; color: #1f2937; }
.offer-card__region-line {
    display: flex; align-items: center; gap: 6px;
    margin: 8px 0 0;
    font-size: 12px; line-height: 1.4;
}
.offer-card__meta-label {
    color: #9ca3af; font-weight: 500;
}
.offer-card__region {
    font-weight: 600; color: #10b981;
}
.offer-card__rating-line {
    margin-top: 6px;
}
.offer-stars {
    display: inline-flex; align-items: center; gap: 2px;
}
.offer-stars__star {
    display: inline-flex; width: 18px; height: 18px;
}
.offer-stars__star svg { width: 100%; height: 100%; display: block; }
.offer-stars__shape { fill: #fbbf24; stroke: #fbbf24; stroke-width: 1.2; stroke-linejoin: round; }
.offer-stars__star--empty .offer-stars__shape { fill: transparent; }
.btn-offer {
    display: inline-flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 8px !important;
    overflow: hidden;
    background: #e32a26;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    white-space: nowrap;
    min-width: 152px;
    min-height: 48px;
    box-shadow: none;
    position: relative;
    text-transform: uppercase;
}
.btn-offer:hover {
    background: #c92420;
    color: #fff;
    transform: none;
    box-shadow: none;
}
.btn-offer__stub {
    flex-shrink: 0;
    width: 30px;
    background: rgba(0, 0, 0, 0.1);
    border-right: 2px dashed rgb(213 180 180 / 90%);
}
.btn-offer__main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding: 0 18px 0 14px;
}
.btn-offer__scissors {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* Merchant logo — dark plate so white/light logos remain visible */
.merchant-logo {
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: #3d4556;
    border: 1px solid #2f3542;
    flex-shrink: 0;
}
.merchant-logo img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 14%;
}
.merchant-logo__fallback {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
    font-weight: 700; color: #fff;
    background: #3d4556;
}
.merchant-logo--sm { width: 56px; height: 56px; font-size: 14px; border-radius: var(--radius); }
.merchant-logo--md { width: 56px; height: 56px; font-size: 16px; border-radius: var(--radius); }
.merchant-logo--lg { width: 80px; height: 80px; font-size: 24px; border-radius: var(--radius-lg); }
.merchant-logo--square { border-radius: var(--radius); }
.merchant-logo--tile { width: 56px; height: 56px; border-radius: var(--radius); border: 0; }
.merchant-logo--avatar { width: 48px; height: 48px; border-radius: 50%; }
.merchant-logo--modal { width: 64px; height: 64px; border-radius: 50%; }
.brand-tile .merchant-logo { width: 64px; height: 64px; }
.store-card__avatar .merchant-logo { width: 52px; height: 52px; border-radius: 50%; }

/* All Stores page */
.section-stores-page { padding-top: 32px; }
.stores-page-head {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 20px; flex-wrap: wrap; margin-bottom: 28px;
}
.stores-page-head h1 { margin: 0 0 6px; font-size: 2rem; font-weight: 800; }
.stores-page-sub { margin: 0; color: var(--text-muted); }
.stores-toolbar { display: flex; gap: 10px; align-items: center; }
.stores-toolbar select,
.stores-search input {
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 10px 12px; font: inherit; background: #fff;
}
.stores-search {
    display: flex; align-items: center; gap: 8px;
    border: 1px solid var(--border); border-radius: var(--radius); padding: 0 12px; background: #fff;
}
.stores-search input { border: 0; padding: 10px 0; outline: none; min-width: 200px; }
.stores-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px;
}
.store-card {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 22px 14px 18px; background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); text-align: center; color: var(--text);
    transition: box-shadow .2s, transform .2s; text-decoration: none;
}
.store-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); text-decoration: none; }
.store-card__avatar { margin-bottom: 4px; }
.store-card__name { font-weight: 700; font-size: 15px; }
.store-card__cat { font-size: 13px; color: var(--text-muted); }
.stores-empty { color: var(--text-muted); text-align: center; padding: 40px 0; }

/* Store hero */
.store-hero {
    background: #fff; border-bottom: 1px solid var(--border); padding: 32px 0;
}
.store-hero-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.store-hero-text h1 { margin: 0 0 6px; font-size: clamp(1.5rem, 3vw, 2rem); }
.store-hero-meta, .store-hero-rating { margin: 0; color: var(--text-muted); font-size: 14px; }
.store-links { display: flex; flex-wrap: wrap; gap: 10px 16px; }
.store-links a { font-weight: 500; }

/* Popup page */
.popup-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.popup-layout .site-footer { margin-top: 0; }
.popup-page {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 16px 48px;
    background: var(--bg);
}
.popup-page__panel {
    width: min(768px, 100%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.coupon-popup__dialog {
    width: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}
.coupon-popup__header {
    padding: 32px 32px 24px;
    text-align: center;
    background: #f9fafb;
    border-bottom: 1px solid #f3f4f6;
}
.coupon-popup__body {
    padding: 28px 32px 32px;
    text-align: center;
    background: #fff;
}
.coupon-popup__logo-wrap {
    display: flex; justify-content: center;
}
.coupon-popup__dialog .merchant-logo--modal {
    width: 64px; height: 64px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: none;
}
.coupon-popup__dialog .merchant-logo--modal:has(img) {
    background: #3d4556;
    border-color: #3d4556;
}
.coupon-popup__dialog .merchant-logo--modal img { padding: 12%; }
.coupon-popup__dialog .merchant-logo--modal .merchant-logo__fallback {
    background: #fff;
    color: #111827;
    font-size: 1rem;
    font-weight: 700;
}
.coupon-popup__brand {
    margin: 12px 0 0;
    font-size: 1.125rem; font-weight: 700; color: #111827;
}
.coupon-popup__exclusive {
    margin: 4px 0 0;
    font-size: 13px; font-weight: 400; color: #9ca3af;
}
.coupon-popup__title {
    margin: 0;
    font-size: 1.375rem; font-weight: 700; line-height: 1.35; color: #111827;
}
.coupon-popup__dialog--deal .coupon-popup__title {
    margin-bottom: 24px;
}
.coupon-popup__dialog--code .coupon-popup__title {
    margin-bottom: 20px;
}
.coupon-popup__copy-label {
    margin: 0 0 10px;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.08em; color: #9ca3af;
}
.coupon-popup__code-box {
    display: flex; align-items: stretch;
    margin-bottom: 20px;
    border: 1.5px dashed #d1d5db;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fafc;
}
.coupon-popup__code-input {
    flex: 1; min-width: 0; border: 0;
    padding: 16px 12px;
    font: inherit; font-size: 1.25rem; font-weight: 700;
    text-align: center; letter-spacing: 0.04em;
    background: transparent; color: #2563eb; outline: none;
}
.coupon-popup__copy {
    flex-shrink: 0; border: 0;
    border-left: 1.5px dashed #d1d5db;
    padding: 0 16px; background: #f8fafc;
    color: #9ca3af; cursor: pointer;
}
.coupon-popup__copy:hover { color: #6b7280; }
.coupon-popup__copy.is-copied { color: #059669; }
.coupon-popup__go {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    width: min(400px, 72%);
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--primary); color: #fff !important;
    font-size: 15px; font-weight: 600;
    text-decoration: none !important;
    transition: background 0.15s;
}
.coupon-popup__go:hover {
    background: #1d4ed8; color: #fff !important; text-decoration: none !important;
}
.coupon-popup__footer {
    padding: 14px 32px 16px;
    border-top: 1px solid #f3f4f6;
    background: #f9fafb;
}
.coupon-popup__feedback {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; flex-wrap: wrap;
}
.coupon-popup__feedback-text {
    font-size: 13px; color: #9ca3af;
}
.coupon-popup__votes {
    display: flex; align-items: center; gap: 16px;
}
.coupon-popup__vote {
    display: inline-flex; align-items: center; gap: 6px;
    border: 0; background: transparent; padding: 0;
    font: inherit; font-size: 13px; font-weight: 500;
    color: #9ca3af; cursor: pointer;
}
.coupon-popup__vote:hover {
    color: #6b7280;
}
.coupon-popup__terms {
    margin: 14px 0 0;
    font-size: 11px; line-height: 1.6; color: #9ca3af; text-align: center;
}

/* FAQ / prose */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    background: #fff; padding: 0 16px;
}
.faq-item summary {
    padding: 14px 0; font-weight: 600; cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0 0 14px; color: var(--text-muted); font-size: 14px; }
.prose h1, .prose h2 { margin-top: 0; }
.prose p { color: var(--text-muted); }

/* Legal pages */
.section-legal { padding-top: 32px; padding-bottom: 48px; }
.legal-page__title {
    margin: 0 0 24px;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--text);
}
.legal-page__content {
    max-width: 760px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: var(--shadow);
}
.legal-page__content h2 {
    margin: 28px 0 12px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
}
.legal-page__content h2:first-child { margin-top: 0; }
.legal-page__content h3 {
    margin: 20px 0 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}
.legal-page__content p,
.legal-page__content li {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}
.legal-page__content ul,
.legal-page__content ol {
    margin: 0 0 16px;
    padding-left: 1.25rem;
}
.legal-page__content a { color: var(--primary); }
.legal-highlight {
    margin: 0 0 20px;
    padding: 16px 18px;
    background: var(--bg-muted);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.legal-highlight p:last-child { margin-bottom: 0; }
.legal-contact-email { font-weight: 600; }

/* Pagination */
.pagination {
    display: flex; flex-wrap: wrap; gap: 6px; list-style: none;
    padding: 24px 0 0; margin: 0; justify-content: center;
}
.page-item .page-link {
    display: block; padding: 8px 14px; border: 1px solid var(--border);
    border-radius: var(--radius); color: var(--text); text-decoration: none;
}
.page-item.active .page-link { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Footer */
.site-footer { background: var(--navy); color: #cbd5e1; padding: 48px 0 0; margin-top: 24px; }
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding-bottom: 32px;
}
.footer-brand p { margin: 14px 0 0; font-size: 14px; line-height: 1.6; color: #94a3b8; max-width: 320px; }
.footer-col h3 {
    margin: 0 0 14px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
    color: #64748b; text-transform: uppercase;
}
.footer-col { display: grid; gap: 10px; align-content: start; }
.footer-col a { color: #e2e8f0; font-size: 14px; text-decoration: none; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    flex-wrap: wrap; padding: 18px 0 24px; border-top: 1px solid rgba(255,255,255,.08);
    font-size: 13px; color: #94a3b8;
}
.footer-note { margin: 0; }

/* Cookie consent banner */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1300;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.18);
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px 28px;
    flex-wrap: wrap;
    padding: 18px 16px;
}
.cookie-banner__text {
    margin: 0;
    flex: 1 1 320px;
    max-width: 760px;
    font-size: 14px;
    line-height: 1.6;
    color: #e2e8f0;
}
.cookie-banner__text a {
    color: #93c5fd;
    font-weight: 600;
    text-decoration: underline;
}
.cookie-banner__text a:hover { color: #bfdbfe; }
.cookie-banner__text--mobile { display: none; }
.cookie-banner__btn-label--mobile { display: none; }
.cookie-banner__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: nowrap;
    flex-shrink: 0;
}
.cookie-banner__btn {
    border: 0;
    border-radius: 999px;
    padding: 11px 20px;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.cookie-banner__btn--primary {
    background: var(--primary);
    color: #fff;
}
.cookie-banner__btn--primary:hover {
    background: #1d4ed8;
}
.cookie-banner__btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
}
.cookie-banner__btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.06);
}

.error-page { text-align: center; padding: 48px 0; }

@media (max-width: 960px) {
    .home-layout { grid-template-columns: 1fr; }
    .brand-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .hero--home{
        padding: 35px 0 35px;
    }
    .header-menu-toggle { display: inline-flex; }
    .brand {
        flex: 1 1 auto;
        min-width: 0;
    }
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    }
    .site-header.is-menu-open .header-nav { display: flex; }
    .header-nav a {
        padding: 12px 16px;
        font-size: 15px;
        border-top: 1px solid var(--border);
    }
    .header-nav a:first-child { border-top: 0; }
    .offer-card { grid-template-columns: 56px 1fr; }
    .offer-card__actions { grid-column: 1 / -1; }
    .offer-card__actions .btn-offer { width: 100%; }
    .brand-row { grid-template-columns: repeat(2, 1fr); }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }
    .footer-brand { grid-column: 1 / -1; }
    .stores-page-head { flex-direction: column; }
    .stores-toolbar {
        width: 100%;
        flex-wrap: nowrap;
    }
    .stores-toolbar select {
        flex: 0 0 auto;
        min-width: 72px;
        max-width: 38%;
    }
    .stores-search {
        flex: 1 1 auto;
        min-width: 0;
    }
    .stores-search input {
        min-width: 0;
        width: 100%;
    }
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px 16px;
    }
    .cookie-banner__text--desktop { display: none; }
    .cookie-banner__text--mobile {
        display: block;
        flex: none;
        max-width: none;
        font-size: 13px;
        line-height: 1.45;
    }
    .cookie-banner__btn-label--desktop { display: none; }
    .cookie-banner__btn-label--mobile { display: inline; }
    .cookie-banner__actions {
        width: 100%;
        flex: none;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
    }
    .cookie-banner__btn {
        width: auto;
        flex: 0 0 auto;
        padding: 9px 14px;
        font-size: 12px;
    }
}
