/* ============================================
   ELEGANCE OUTLET — REDESIGN
   Mood: editorial outlet, cinema de cartier
   Stack: vanilla CSS, no preprocessor
   ============================================ */

:root {
  --ink: #0F0F0F;
  --ink-soft: #1F1F1F;
  --cream: #F8F4ED;
  --cream-deep: #EFE8DC;
  --paper: #FFFFFF;
  --line: #E5DFD3;
  --muted: #6E6A62;
  --gold: #B89455;
  --gold-soft: #D4B785;
  --red: #C13B3B;

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1280px;
  --gutter: 24px;
  --radius-chip: 999px;
  --radius-card: 12px;
  --radius-md: 16px;

  --shadow-soft: 0 1px 2px rgba(15, 15, 15, 0.04), 0 4px 16px rgba(15, 15, 15, 0.04);
  --shadow-lift: 0 12px 40px rgba(15, 15, 15, 0.10);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--cream);
  font-feature-settings: 'tnum' on, 'lnum' on;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ===== TYPOGRAPHY ===== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}

.display-1 {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.04;
}

.display-2 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.display-1 em,
.display-2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.85);
}

.section-lead {
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 14px 0 0;
}

/* ===== ANNOUNCEMENT BAR ===== */

.announcement-bar {
  background-color: var(--ink);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.announce-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.announce-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--gold);
  box-shadow: 0 0 8px rgba(184, 148, 85, 0.6);
}

.announce-text {
  flex: 1 1 auto;
  text-align: center;
  color: rgba(248, 244, 237, 0.78);
}

.announce-link {
  color: var(--gold-soft);
  font-weight: 600;
}

.announce-link:hover { color: var(--cream); }

/* ===== HEADER ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(248, 244, 237, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(15, 15, 15, 0.06);
  transition: box-shadow 0.2s ease, padding 0.2s ease;
}

.site-header.scrolled {
  box-shadow: 0 1px 0 rgba(15, 15, 15, 0.06), 0 8px 28px rgba(15, 15, 15, 0.06);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* Brand image (header & footer) — replaces old text mark */
.brand-img {
  display: block;
  width: auto;
  height: 48px;
  max-width: 200px;
  flex-shrink: 0;
}

.brand-img-footer {
  height: 60px;
  max-width: 200px;
}

/* ============================================
   OutletMAG wordmark (text-based logo)
   ============================================ */

.logo-outletmag {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}

.logo-outletmag .logo-prefix {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.005em;
}

.logo-outletmag .logo-main {
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-left: -1px;
}

.logo-outletmag .logo-tld {
  font-size: 0.5em;
  font-weight: 500;
  color: var(--muted);
  margin-left: 3px;
  letter-spacing: 0.04em;
}

.logo-outletmag .logo-b2b {
  display: inline-block;
  background-color: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.34em;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 3px 7px 3px 8px;
  margin-left: 6px;
  align-self: center;
  line-height: 1;
}

.logo-outletmag.size-sm { font-size: 16px; }
.logo-outletmag.size-md { font-size: 22px; }
.logo-outletmag.size-lg { font-size: 32px; }

.logo-outletmag.light { color: var(--cream); }
.logo-outletmag.light .logo-tld { color: rgba(248, 244, 237, 0.55); }

/* Brand family — used in footer + can be reused */

.brand-family {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(248, 244, 237, 0.1);
}

.brand-family-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12px;
  font-weight: 400;
  color: rgba(248, 244, 237, 0.55);
  display: block;
  margin: 0 0 10px;
  letter-spacing: 0.005em;
  text-align: center;
}

.brand-family-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.brand-family-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 4px 8px 2px;
  text-decoration: none;
  opacity: 0.78;
  border-left: 1px solid rgba(248, 244, 237, 0.1);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.brand-family-item:first-child {
  border-left: none;
  padding-left: 0;
}

.brand-family-item:last-child {
  padding-right: 0;
}

.brand-family-item:hover,
.brand-family-item:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
  outline: none;
}

.brand-family-img {
  display: block;
  height: 30px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Pentru logo-urile negre din asset (Outletmag, B2B) — invert ca sa devina albe pe footer-ul intunecat */
.brand-family-img.is-inverted {
  filter: invert(1);
}

.brand-family-caption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 10.5px;
  color: rgba(248, 244, 237, 0.5);
  letter-spacing: 0.005em;
  text-align: center;
  line-height: 1.2;
  transition: color 0.22s ease;
}

.brand-family-item:hover .brand-family-caption,
.brand-family-item:focus-visible .brand-family-caption {
  color: var(--gold-soft);
}

/* Footer brand layout — match header pattern but larger */

.brand-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 14px;
  width: fit-content;
}

/* Logo block in channel cards */

.channel-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.channel-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-height: 78px;
  max-width: 80%;
}

.main-nav {
  display: none;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.18s ease;
}

.main-nav a:hover { color: var(--gold); }

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.header-link {
  display: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.header-link:hover { color: var(--gold); }

.header-cta {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  background-color: var(--ink);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 0.18s ease;
}

.header-cta:hover { background-color: var(--gold); }

/* ===== BUTTONS ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  border: 1px solid transparent;
}

.btn.primary {
  background-color: var(--ink);
  color: var(--cream);
}

.btn.primary:hover { background-color: var(--gold); color: var(--ink); }

.btn.ghost-light {
  background-color: transparent;
  color: var(--cream);
  border-color: rgba(248, 244, 237, 0.4);
}

.btn.ghost-light:hover { background-color: var(--cream); color: var(--ink); border-color: var(--cream); }

.btn.light {
  background-color: var(--cream);
  color: var(--ink);
}

.btn.light:hover { background-color: var(--gold); color: var(--ink); }

/* ===== HERO ===== */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 84vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6) contrast(1.04) saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,15,15,0.15) 0%, rgba(15,15,15,0.45) 100%),
    radial-gradient(80% 60% at 30% 50%, rgba(15,15,15,0.6), rgba(15,15,15,0.3) 60%, rgba(15,15,15,0.05) 100%);
  z-index: -1;
}

.hero-inner { padding: 100px 0 80px; }

.hero-copy { max-width: 780px; }

.hero-text {
  margin: 24px 0 32px;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.65;
  color: rgba(248, 244, 237, 0.86);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 0;
  margin: 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(248, 244, 237, 0.18);
  max-width: 720px;
}

.hero-stats .stat-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 22px;
  position: relative;
}

.hero-stats .stat-item:first-child { padding-left: 0; }

.hero-stats dt {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13.5px;
  letter-spacing: 0.005em;
  text-transform: none;
  color: rgba(248, 244, 237, 0.62);
  font-weight: 400;
  margin: 0;
}

.hero-stats dd { margin: 0; line-height: 1; }

.star { color: var(--gold); font-size: 0.9em; }

/* Stat link — editorial italic, fără chip rectangle */
.hero-stats .stat-link {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.55rem, 2.1vw, 1.95rem);
  letter-spacing: -0.005em;
  line-height: 1.05;
  color: var(--cream);
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.2s ease;
}

.hero-stats .stat-link::before {
  content: '';
  position: absolute;
  left: 0;
  right: 18px;
  bottom: 0;
  height: 1px;
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s ease;
}

.hero-stats .stat-link::after {
  content: '↗';
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.5em;
  font-weight: 400;
  margin-left: 10px;
  color: rgba(248, 244, 237, 0.5);
  transition: color 0.2s ease, transform 0.2s ease;
  align-self: center;
}

.hero-stats .stat-link-internal::after {
  content: '↓';
}

.hero-stats .stat-link:hover,
.hero-stats .stat-link:focus-visible {
  color: var(--gold-soft);
  outline: none;
}

.hero-stats .stat-link:hover::before,
.hero-stats .stat-link:focus-visible::before {
  transform: scaleX(1);
}

.hero-stats .stat-link:hover::after,
.hero-stats .stat-link:focus-visible::after {
  color: var(--gold-soft);
  transform: translate(2px, -2px);
}

.hero-stats .stat-link-internal:hover::after,
.hero-stats .stat-link-internal:focus-visible::after {
  transform: translateY(2px);
}

.hero-stats .stat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15em;
  color: var(--cream);
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}

.hero-stats .stat-link:hover .stat-num,
.hero-stats .stat-link:focus-visible .stat-num {
  color: var(--gold-soft);
}

.hero-stats .stat-suffix {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.6em;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(248, 244, 237, 0.72);
  text-transform: lowercase;
  margin-left: 6px;
  align-self: center;
}

.hero-stats .stat-domain em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
  margin-left: 1px;
}

.hero-stats .stat-star {
  color: var(--gold);
  font-style: normal;
  font-size: 0.7em;
  margin-left: 8px;
  align-self: center;
  letter-spacing: 0;
}

/* ===== TRUST STRIP ===== */

.trust-strip {
  background-color: var(--ink);
  color: var(--cream);
  padding: 28px 0;
  border-bottom: 1px solid rgba(248, 244, 237, 0.06);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 32px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.trust-item span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 244, 237, 0.6);
  font-weight: 600;
}

.star-mini { color: var(--gold); font-size: 0.85em; font-style: normal; }

/* ===== SECTION ===== */

.section { padding: 96px 0; }

.section-head { margin-bottom: 56px; max-width: 720px; }

/* ===== CITY FILTER ===== */

.city-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.chip {
  appearance: none;
  border: 1px solid var(--line);
  background-color: var(--paper);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: var(--radius-chip);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.18s ease;
}

.chip span { color: var(--muted); font-weight: 500; }

.chip:hover { border-color: var(--ink); }

.chip.active {
  background-color: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.chip.active span { color: rgba(248, 244, 237, 0.65); }

/* ===== STORE GRID ===== */

.store-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Reordonare vizuala Bacau 1 → 2 → 3 → 4 → Roman → Barlad
   Cardurile in HTML sunt: 1=Bacau1, 2=Bacau4, 3=Bacau2, 4=Bacau3, 5=Roman, 6=Barlad */
.store-grid .store-card:nth-child(1) { order: 1; }
.store-grid .store-card:nth-child(2) { order: 4; }
.store-grid .store-card:nth-child(3) { order: 2; }
.store-grid .store-card:nth-child(4) { order: 3; }
.store-grid .store-card:nth-child(5) { order: 5; }
.store-grid .store-card:nth-child(6) { order: 6; }

.store-card {
  background-color: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--ink);
}

.store-card.hidden { display: none; }

.store-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--cream-deep);
}

.store-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.store-card:hover .store-photo img { transform: scale(1.04); }

.store-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--cream);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
}

.store-tag.star {
  background-color: var(--gold);
  color: var(--ink);
}

.store-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.store-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.store-city {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}

.rating-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 5px 10px;
  background-color: var(--cream-deep);
  border-radius: var(--radius-chip);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.rating-chip em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
  margin-left: 2px;
}

.rating-chip.best {
  background-color: var(--gold);
  color: var(--ink);
}

.rating-chip.best em { color: rgba(15, 15, 15, 0.7); }

.store-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 4px 0 0;
}

.store-address {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.store-quote {
  margin: 4px 0 0;
  padding-left: 12px;
  border-left: 2px solid var(--gold);
  font-size: 13px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.6;
}

.store-reviews {
  list-style: none;
  margin: 4px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store-reviews li {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "stars author"
    "text  text";
  gap: 4px 8px;
  padding-left: 12px;
  border-left: 2px solid var(--gold);
  min-height: 60px;
}

.store-reviews .mini-stars {
  grid-area: stars;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--gold);
  white-space: nowrap;
}

.store-reviews p {
  grid-area: text;
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-reviews .mini-author {
  grid-area: author;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.store-schedule {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.01em;
  margin: auto 0 0;
}

.store-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.store-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  padding: 0 16px;
  background-color: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' on, 'lnum' on;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.store-cta::before {
  content: '';
  width: 16px;
  height: 16px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6.6 10.8a15 15 0 0 0 6.6 6.6l2.2-2.2a1 1 0 0 1 1-.25 11.4 11.4 0 0 0 3.6.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1 11.4 11.4 0 0 0 .57 3.6 1 1 0 0 1-.25 1Z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6.6 10.8a15 15 0 0 0 6.6 6.6l2.2-2.2a1 1 0 0 1 1-.25 11.4 11.4 0 0 0 3.6.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1 11.4 11.4 0 0 0 .57 3.6 1 1 0 0 1-.25 1Z'/></svg>") center / contain no-repeat;
  flex-shrink: 0;
}

.store-cta:hover {
  background-color: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}

.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.store-link:hover { border-color: var(--ink); background-color: var(--cream-deep); }

.store-socials {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.store-socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background-color: var(--cream-deep);
  color: var(--ink);
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.store-socials a:hover {
  background-color: var(--ink);
  color: var(--cream);
  transform: translateY(-1px);
}

.store-socials svg {
  width: 16px;
  height: 16px;
}

/* ===== CHANNELS — three ways to shop ===== */

.channels-section {
  background-color: var(--cream);
}

.channels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.channel-card {
  position: relative;
  background-color: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.channel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--ink);
}

.channel-card.featured {
  border: 1px solid var(--gold);
  box-shadow: 0 8px 32px rgba(184, 148, 85, 0.12);
}

.channel-card.featured:hover {
  border-color: var(--gold);
  box-shadow: 0 14px 44px rgba(184, 148, 85, 0.22);
}

.channel-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: var(--cream-deep);
}

.channel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.channel-card:hover .channel-image img { transform: scale(1.05); }

.channel-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0) 50%, rgba(15, 15, 15, 0.55) 100%);
}

.channel-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
}

.channel-body {
  padding: 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.channel-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.channel-card.channel-online .channel-eyebrow,
.channel-card.featured .channel-eyebrow {
  color: var(--gold);
}

.channel-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}

.channel-title em {
  font-style: italic;
  color: var(--gold);
}

.channel-tag {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.channel-features {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.channel-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}

.check {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background-color: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}

.channel-actions {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn.block {
  width: 100%;
  padding: 16px 22px;
}

.channel-app-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.channel-app-row .app-badge {
  flex: 1;
  min-width: 130px;
  height: 48px;
  padding: 0 14px 0 12px;
  gap: 9px;
}

.channel-app-row .app-badge-icon { width: 22px; height: 22px; }
.channel-app-row .app-badge-pre { font-size: 9px; margin-bottom: 1px; }
.channel-app-row .app-badge-store { font-size: 14px; }

.app-pill {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  background-color: var(--cream-deep);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.app-pill:hover {
  background-color: var(--ink);
  color: var(--cream);
}

.channel-foot {
  margin: 16px 0 0;
  padding-top: 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

/* ===== REVIEWS ===== */

.reviews-section {
  background-color: var(--cream-deep);
  position: relative;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.review-card {
  background-color: var(--paper);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid transparent;
  transition: border-color 0.18s ease, transform 0.18s ease;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  pointer-events: none;
}

.review-card:hover { border-color: var(--ink); transform: translateY(-2px); }

.review-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.06em;
}

.review-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.reviewer { display: flex; align-items: center; gap: 12px; }

.reviewer-avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background-color: var(--ink);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
}

.reviewer-name {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.reviewer-context {
  margin: 2px 0 0;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.review-store {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: right;
}

/* Statistic-card variant (per-location aggregate) */
.review-card-stat {
  background-color: var(--cream);
  border-color: var(--line);
  gap: 14px;
}

.review-card-stat::before { content: none; }

.review-card-stat .stat-label {
  margin: 0;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.review-card-stat .stat-value {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  line-height: 1;
}

.review-card-stat .stat-value strong {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.review-card-stat .stat-value span {
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.review-card-stat .stat-value em {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

.review-card-stat .stat-meta {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  flex: 1;
}

.review-card-stat .review-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.18s ease;
}

.review-card-stat .review-card-link:hover { color: var(--gold); }

.review-card-stat.best {
  background-color: var(--ink);
  border-color: var(--ink);
}
.review-card-stat.best .stat-label { color: var(--gold-soft); }
.review-card-stat.best .stat-value strong { color: var(--cream); }
.review-card-stat.best .stat-value span { color: rgba(248, 244, 237, 0.7); }
.review-card-stat.best .stat-meta { color: rgba(248, 244, 237, 0.78); }
.review-card-stat.best .review-card-link {
  color: var(--cream);
  border-top-color: rgba(248, 244, 237, 0.18);
}
.review-card-stat.best .review-card-link:hover { color: var(--gold); }

.review-card-stat.online {
  background-color: var(--cream-deep);
  border-color: var(--gold);
}

.reviews-disclaimer {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

.reviews-disclaimer a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ===== BRANDS ===== */

.brands-section {
  background-color: var(--ink);
  color: var(--cream);
}

.brands-section .section-lead { color: rgba(248, 244, 237, 0.68); }
.brands-section .eyebrow { color: var(--gold-soft); }

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(248, 244, 237, 0.1);
  border-left: 1px solid rgba(248, 244, 237, 0.1);
}

.brand-tile {
  border-bottom: 1px solid rgba(248, 244, 237, 0.1);
  border-right: 1px solid rgba(248, 244, 237, 0.1);
  display: grid;
  place-items: center;
  height: 110px;
  transition: background-color 0.18s ease;
}

.brand-tile span {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(248, 244, 237, 0.82);
  text-transform: uppercase;
  text-align: center;
  padding: 0 12px;
  transition: color 0.18s ease, transform 0.18s ease;
}

.brand-tile:hover {
  background-color: rgba(248, 244, 237, 0.04);
}

.brand-tile:hover span { color: var(--cream); transform: scale(1.03); }

.brand-tile.more span {
  color: var(--gold);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}

/* Per-brand wordmark typography */
.brand-mark-text {
  display: inline-block;
  line-height: 1;
}

.brand-mark-text.style-zara {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.32em;
  font-size: clamp(20px, 2.4vw, 28px);
}

.brand-mark-text.style-bershka {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: clamp(15px, 1.8vw, 20px);
}

.brand-mark-text.style-pullbear {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: clamp(13px, 1.5vw, 16px);
}

.brand-mark-text.style-stradivarius {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: none;
  font-size: clamp(17px, 2.2vw, 24px);
}

.brand-mark-text.style-massimo {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.18em;
  font-size: clamp(13px, 1.5vw, 16px);
}

.brand-mark-text.style-tommy {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: clamp(14px, 1.7vw, 18px);
  text-transform: none;
}
.brand-mark-text.style-tommy em {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

.brand-mark-text.style-ck {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: clamp(13px, 1.6vw, 17px);
}

.brand-mark-text.style-guess {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: clamp(20px, 2.5vw, 28px);
  text-transform: uppercase;
}
.brand-mark-text.style-guess small {
  font-size: 0.6em;
  color: var(--gold);
  vertical-align: super;
  margin-left: 1px;
}

.brand-mark-text.style-polo {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: clamp(13px, 1.6vw, 16px);
  text-transform: uppercase;
}
.brand-mark-text.style-polo em {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.8em;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 4px;
  color: var(--gold);
}

.brand-mark-text.style-bestseller {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.28em;
  font-size: clamp(12px, 1.4vw, 15px);
}

.brand-mark-text.style-veromoda {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.22em;
  font-size: clamp(13px, 1.6vw, 17px);
}

/* ===== CATEGORIES ===== */

.categories-section { background-color: var(--cream); }

.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.category-card {
  display: grid;
  grid-template-columns: 1fr;
  background-color: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.category-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--cream-deep);
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-image img { transform: scale(1.05); }

.category-body {
  padding: 32px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 600;
}

.category-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.category-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ===== APP SECTION ===== */

.app-section {
  background-color: var(--cream-deep);
  position: relative;
  overflow: hidden;
}

.app-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.app-features {
  display: grid;
  gap: 14px;
  margin: 24px 0 28px;
}

.app-feature {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}

.app-feature-num {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  background-color: var(--ink);
  color: var(--cream);
}

.app-feature p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}

.app-feature strong {
  font-weight: 600;
  letter-spacing: -0.005em;
}

.app-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.app-actions .btn {
  background-color: var(--ink);
  color: var(--cream);
  padding: 14px 22px;
}

.app-actions .btn:hover { background-color: var(--gold); color: var(--ink); }

.store-icon {
  font-style: normal;
  display: inline-block;
  margin-right: 4px;
  font-size: 14px;
}

/* Official App Store / Google Play badges */
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 20px 0 16px;
  background-color: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.18s ease, border-color 0.2s ease;
  font-family: var(--font-body);
}

.app-badge:hover {
  background-color: #1f1f1f;
  transform: translateY(-2px);
  border-color: var(--gold);
}

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

.app-badge-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.app-badge-ios .app-badge-icon { fill: var(--cream); }

.app-badge-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}

.app-badge-pre {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(248, 244, 237, 0.72);
  margin-bottom: 2px;
}

.app-badge-store {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--cream);
}

/* Phone mockup */

.app-visual {
  display: grid;
  place-items: center;
}

.phone-mockup {
  width: 260px;
  background-color: var(--ink);
  border-radius: 44px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(15, 15, 15, 0.28), 0 0 0 1px rgba(184, 148, 85, 0.15) inset;
  position: relative;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background-color: rgba(248, 244, 237, 0.18);
  border-radius: 999px;
  z-index: 2;
  pointer-events: none;
}

.phone-screen-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 34px;
  background-color: var(--cream);
  object-fit: cover;
  aspect-ratio: 9 / 19.5;
}

/* ===== CTA BAND ===== */

.cta-band {
  background-color: var(--ink);
  color: var(--cream);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 80% 50%, rgba(184, 148, 85, 0.18), rgba(15,15,15,0) 70%);
  pointer-events: none;
}

.cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}

.cta-copy { max-width: 640px; }

.cta-band p { color: rgba(248, 244, 237, 0.78); margin-top: 12px; }

.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ===== FOOTER ===== */

.footer {
  background-color: var(--ink);
  color: rgba(248, 244, 237, 0.72);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(248, 244, 237, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(248, 244, 237, 0.08);
}

.footer-brand { text-align: center; }

.footer-brand .brand-name-large {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin: 16px 0 8px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: rgba(248, 244, 237, 0.72);
  margin: 10px 0 8px;
  letter-spacing: 0.005em;
  line-height: 1.45;
}

.footer-tagline a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.22s ease, border-color 0.22s ease;
}

.footer-tagline a:hover,
.footer-tagline a:focus-visible {
  color: var(--gold-soft);
  border-bottom-color: var(--gold-soft);
  outline: none;
}

.footer-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-soft);
}

.footer-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 244, 237, 0.5);
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(248, 244, 237, 0.78);
  transition: color 0.18s ease;
  font-variant-numeric: tabular-nums;
}

.footer-socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-socials li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-social-city {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(248, 244, 237, 0.85);
}

.footer-social-icons {
  display: inline-flex;
  gap: 6px;
}

.footer-social-icons a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background-color: rgba(248, 244, 237, 0.12);
  color: var(--cream);
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.footer-social-icons a:hover {
  background-color: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}

.footer-social-icons svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: currentColor;
}

.footer-social-icons svg path,
.footer-social-icons svg circle:not([stroke]),
.footer-social-icons svg rect:not([stroke]) {
  fill: currentColor;
}

/* Stroke-only icons (Instagram outline) get fill=none from inline attr,
   currentColor flows from parent via stroke. */
.store-socials svg,
.store-socials svg path,
.store-socials svg circle:not([stroke]),
.store-socials svg rect:not([stroke]) {
  fill: currentColor;
}

.footer-col a:hover { color: var(--gold-soft); }

.footer-bottom {
  padding-top: 28px;
  display: grid;
  gap: 14px;
}

.legal {
  font-size: 11px;
  line-height: 1.7;
  color: rgba(248, 244, 237, 0.55);
  max-width: 78ch;
  margin: 0;
}

.legal strong {
  color: rgba(248, 244, 237, 0.9);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.copyright {
  font-size: 12px;
  color: rgba(248, 244, 237, 0.5);
  margin: 0;
  letter-spacing: 0.02em;
}

/* ===== SECTION SPLITS ===== */

.section.split { padding: 96px 0; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (min-width: 640px) {
  .trust-row { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .hero-stats .stat-item + .stat-item { border-left: 1px solid rgba(248, 244, 237, 0.14); }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: 1fr; }
  .store-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.break-desktop { display: none; }
.break-mobile { display: inline; }

@media (min-width: 768px) {
  .break-desktop { display: inline; }
  .break-mobile { display: none; }
  .trust-row { grid-template-columns: repeat(5, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr 1fr; }
  .footer-bottom { grid-template-columns: 1fr auto; align-items: center; }
  .copyright { text-align: right; }
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
  .channels-grid .channel-card.featured { grid-column: span 2; }
  .app-row { grid-template-columns: 1.1fr 0.9fr; }
  .cta-row { grid-template-columns: 1.4fr auto; align-items: center; }
}

@media (min-width: 1024px) {
  .main-nav { display: flex; margin-left: auto; }
  .header-actions { margin-left: 0; }
  .header-link { display: inline-flex; }
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .channels-grid { grid-template-columns: repeat(3, 1fr); }
  .channels-grid .channel-card.featured { grid-column: auto; transform: translateY(-12px); }
  .channels-grid .channel-card.featured:hover { transform: translateY(-18px); }
  .section { padding: 120px 0; }
  .cta-band { padding: 120px 0; }
  .store-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1280px) {
  .brand-grid { grid-template-columns: repeat(6, 1fr); }
  .brand-tile { height: 130px; }
}

/* ============================================
   WHEEL FAB · Floating spin button
   ============================================ */

.wheel-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 18px 0 14px;
  border: none;
  border-radius: 999px;
  background-color: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(184, 148, 85, 0.45), 0 0 0 1px rgba(15, 15, 15, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.wheel-fab:hover {
  background-color: var(--ink);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15, 15, 15, 0.35);
}

.wheel-fab-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  animation: wheelFabSpin 8s linear infinite;
}

.wheel-fab:hover .wheel-fab-icon { animation-duration: 2s; }

@keyframes wheelFabSpin {
  to { transform: rotate(360deg); }
}

.wheel-fab-text { white-space: nowrap; }

.wheel-fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid var(--gold);
  pointer-events: none;
  animation: wheelFabPulse 2.4s ease-out infinite;
}

@keyframes wheelFabPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

.wheel-fab.hidden { display: none; }

/* ============================================
   MOBILE STICKY CTA BAR
   ============================================ */

.mobile-bar {
  display: none;
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 55;
  gap: 4px;
  padding: 5px;
  background-color: rgba(15, 15, 15, 0.96);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(15, 15, 15, 0.36), 0 0 0 1px rgba(184, 148, 85, 0.22);
  transition: transform 0.28s ease, opacity 0.2s ease;
  will-change: transform;
}

.mobile-bar.hidden-on-scroll {
  transform: translateY(calc(100% + 24px));
  opacity: 0;
  pointer-events: none;
}

.mobile-bar-link {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 58px;
  padding: 8px 6px 7px;
  border: none;
  border-radius: 12px;
  background-color: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.15s ease;
}

.mobile-bar-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

.mobile-bar-link span {
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}

.mobile-bar-link em {
  font-style: normal;
  color: var(--gold-soft);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.mobile-bar-link:active {
  background-color: rgba(248, 244, 237, 0.1);
  transform: scale(0.96);
}

.mobile-bar-link.primary {
  background-color: var(--gold);
  color: var(--ink);
}

.mobile-bar-link.primary em { color: rgba(15, 15, 15, 0.7); }
.mobile-bar-link.primary:active { background-color: #cda665; }

.mobile-bar-link.mobile-bar-spin svg {
  animation: wheelFabSpin 12s linear infinite;
}

/* Pulse marker pe colțul slotului Ruleta — micșorat și mutat ca să nu acopere conținutul */
.mobile-bar-link.mobile-bar-spin::before {
  content: '';
  position: absolute;
  top: 5px;
  right: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--gold);
  animation: mobileSpinPulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes mobileSpinPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(184, 148, 85, 0.5);
    opacity: 1;
  }
  70% {
    box-shadow: 0 0 0 6px rgba(184, 148, 85, 0);
    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 84px; }
  .wheel-fab { display: none; }
}

/* ============================================
   WHEEL MODAL
   ============================================ */

.wheel-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  overflow-y: auto;
}

.wheel-modal[hidden] { display: none; }

.wheel-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 15, 15, 0.78);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.wheel-modal-panel {
  position: relative;
  background-color: var(--cream);
  width: 100%;
  max-width: 540px;
  padding: 36px 28px 32px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(15, 15, 15, 0.4);
  animation: wheelModalIn 0.3s ease-out;
}

@keyframes wheelModalIn {
  from { transform: translateY(20px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.wheel-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background-color: transparent;
  color: var(--ink);
  font-size: 24px;
  font-weight: 300;
  cursor: pointer;
  border-radius: 999px;
  transition: background-color 0.18s ease;
  display: grid;
  place-items: center;
  line-height: 1;
}

.wheel-modal-close:hover { background-color: var(--cream-deep); }

.wheel-state[hidden] { display: none; }

.wheel-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.wheel-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 12px 0 0;
}

.wheel-title em {
  font-style: italic;
  color: var(--gold);
}

.wheel-lead {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.wheel-lead strong { color: var(--ink); }

/* ============================================
   WHEEL itself
   ============================================ */

.wheel-stage {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 28px auto 24px;
  aspect-ratio: 1 / 1;
}

.wheel-pointer {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 22px solid var(--ink);
  filter: drop-shadow(0 4px 8px rgba(15, 15, 15, 0.3));
  z-index: 4;
}

.wheel {
  width: 100%;
  height: 100%;
  display: block;
}

.wheel-rotor {
  transform-origin: center center;
  transform-box: fill-box;
}

.wheel-spin-btn {
  margin-top: 4px;
  min-width: 220px;
  width: 100%;
  justify-content: center;
}

.wheel-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 22px 0 4px;
  text-align: left;
}

.wheel-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wheel-field-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.wheel-field input[type="email"],
.wheel-field input[type="tel"] {
  height: 46px;
  padding: 0 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background-color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  transition: border-color 0.18s ease, background-color 0.18s ease;
  -webkit-appearance: none;
          appearance: none;
}

.wheel-field input[type="email"]::placeholder,
.wheel-field input[type="tel"]::placeholder { color: rgba(110, 106, 98, 0.6); }
.wheel-field input[type="email"]:focus-visible,
.wheel-field input[type="tel"]:focus-visible {
  border-color: var(--gold);
  background-color: var(--paper);
  box-shadow: 0 0 0 3px rgba(184, 148, 85, 0.18);
}

/* Honeypot field — invisible to humans, present in DOM for bots to fill */
.wheel-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Note line in result/already states */
.wheel-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.wheel-note a { color: var(--gold); text-decoration: underline; }

.wheel-field-help {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--muted);
}

.wheel-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
}

.wheel-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}

.wheel-check a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.wheel-check a:hover { color: var(--gold); }

.wheel-form-error {
  margin: -4px 0 0;
  padding: 10px 12px;
  background-color: rgba(184, 32, 32, 0.08);
  border-left: 3px solid #b82020;
  color: #b82020;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.45;
}

.voucher-email-confirm {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 18px;
  padding: 12px 14px;
  background-color: var(--cream-deep);
  border-left: 3px solid var(--gold);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-align: left;
}

.voucher-email-confirm strong { color: var(--ink); word-break: break-all; }

.voucher-email-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background-color: var(--gold);
  color: var(--ink);
  font-size: 14px;
  border-radius: 50%;
}

.wheel-rules {
  margin: 18px 0 0;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--muted);
  line-height: 1.6;
}

.wheel-rules a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   VOUCHER display (result state)
   ============================================ */

.voucher-display {
  margin: 28px 0 24px;
  padding: 24px 20px;
  background-color: var(--ink);
  color: var(--cream);
  border: 2px dashed var(--gold);
  position: relative;
}

.voucher-display::before,
.voucher-display::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: var(--cream);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.voucher-display::before { left: -12px; }
.voucher-display::after { right: -12px; }

.voucher-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0;
}

.voucher-code {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin: 8px 0;
  font-variant-numeric: tabular-nums;
}

.voucher-validity {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(248, 244, 237, 0.7);
  margin: 0;
}

.voucher-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 16px;
}

.voucher-actions .btn {
  width: 100%;
  justify-content: center;
}

.btn.primary.gold {
  background-color: var(--gold);
  color: var(--ink);
}

.btn.primary.gold:hover {
  background-color: var(--ink);
  color: var(--gold);
}

.btn.ghost {
  background-color: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn.ghost:hover {
  background-color: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

@media (min-width: 480px) {
  .voucher-actions {
    flex-direction: column;
  }
}

/* ============================================
   PRINT VOUCHER (only on print)
   ============================================ */

.voucher-print {
  display: none;
}

@media print {
  body > * { display: none !important; }
  body > .voucher-print {
    display: block !important;
    position: static;
    padding: 0;
    margin: 0;
  }
  .voucher-print {
    display: block;
    page-break-inside: avoid;
  }
  .voucher-print-card {
    border: 2px dashed #0F0F0F;
    padding: 32px;
    margin: 32px;
    font-family: 'Inter', sans-serif;
    color: #0F0F0F;
    background: #FFFFFF;
  }
  .voucher-print-head {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 16px;
  }
  .voucher-print-mark {
    width: 56px;
    height: 56px;
    background: #0F0F0F;
    color: #F8F4ED;
    display: grid;
    place-items: center;
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
  }
  .voucher-print-brand {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
  }
  .voucher-print-sub {
    margin: 4px 0 0;
    font-size: 12px;
    color: #6E6A62;
  }
  .voucher-print-body {
    text-align: center;
    padding: 32px 0 24px;
  }
  .voucher-print-amount-label,
  .voucher-print-code-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6E6A62;
    margin: 0;
  }
  .voucher-print-amount {
    font-family: 'Fraunces', serif;
    font-size: 56px;
    font-weight: 600;
    margin: 8px 0 28px;
  }
  .voucher-print-code {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin: 6px 0 16px;
    color: #B89455;
  }
  .voucher-print-issued {
    font-size: 11px;
    color: #6E6A62;
  }
  .voucher-print-terms {
    font-size: 10px;
    line-height: 1.6;
    color: #6E6A62;
    border-top: 1px solid #ccc;
    padding-top: 16px;
  }
  .voucher-print-terms p { margin: 4px 0; }
}

/* ============================================
   LEGAL PAGE
   ============================================ */

.legal-page {
  background-color: var(--cream);
  min-height: 70vh;
  padding: 64px 0 96px;
}

.legal-container {
  max-width: 780px;
}

.legal-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin: 16px 0 0;
}

.legal-meta {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 8px 0 40px;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0 0 12px;
}

.legal-section p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 12px;
}

.legal-list {
  margin: 0 0 12px;
  padding-left: 20px;
}

.legal-list li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.legal-section code {
  background-color: var(--cream-deep);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

/* ============================================
   MOBILE UX OPTIMIZATIONS
   ============================================ */

@media (max-width: 768px) {
  .container { padding-left: 18px; padding-right: 18px; }

  .announce-row { gap: 6px; padding: 0 4px; }
  .announce-text { font-size: 11px; }
  .announce-link { display: none; }

  .header-row { padding-top: 12px; padding-bottom: 12px; gap: 12px; }
  .brand-img { height: 38px; }
  .brand-img-footer { height: 70px; }
  .channel-logo-img { max-height: 56px; }
  .header-cta { height: 36px; padding: 0 14px; font-size: 11px; }

  /* HERO — centrat și balansat pe mobile + extra contrast pentru legibilitate */
  .hero { min-height: auto; padding: 40px 0 48px; }
  .hero-image img { filter: brightness(0.5) contrast(1.06) saturate(1.05); }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(15,15,15,0.45) 0%, rgba(15,15,15,0.85) 100%),
      radial-gradient(120% 80% at 50% 50%, rgba(15,15,15,0.55), rgba(15,15,15,0.2) 70%);
  }
  .hero-inner { padding: 24px 0 8px; }
  .hero-copy { text-align: center; max-width: 100%; }
  .hero-copy .eyebrow { display: block; }
  .eyebrow-light { color: rgba(255, 255, 255, 0.95); }
  .display-1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 1.08;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
  }
  .hero-text {
    font-size: 14.5px;
    line-height: 1.6;
    margin: 16px auto 22px;
    max-width: 34ch;
    color: rgba(248, 244, 237, 0.94);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  }
  .hero-text strong { color: var(--cream); font-weight: 700; }
  .hero-actions { gap: 10px; margin-bottom: 32px; flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 12px;
    padding: 22px 0 0;
    border-top: 1px solid rgba(248, 244, 237, 0.2);
    max-width: 100%;
  }
  .hero-stats .stat-item {
    text-align: center;
    align-items: center;
    padding: 0;
    gap: 6px;
  }
  .hero-stats .stat-item:first-child { padding-left: 0; }
  /* Reorder pe mobile: rand 1 = stats scurte, rand 2 = ambele site-uri unul langa altul */
  .hero-stats .stat-item:nth-child(1) { order: 1; }
  .hero-stats .stat-item:nth-child(4) { order: 2; }
  .hero-stats .stat-item:nth-child(2) { order: 3; }
  .hero-stats .stat-item:nth-child(3) { order: 4; }
  .hero-stats dt {
    font-size: 12px;
    letter-spacing: 0;
    color: rgba(248, 244, 237, 0.72);
  }
  .hero-stats .stat-link {
    font-size: 1.3rem;
    padding-bottom: 4px;
  }
  /* URL-urile sunt mai lungi → font mai mic ca sa stea curat pe jumatate de rand */
  .hero-stats .stat-domain { font-size: 0.75em; letter-spacing: -0.01em; }
  .hero-stats .stat-link::after {
    margin-left: 6px;
    font-size: 0.55em;
  }
  .hero-stats .stat-suffix { margin-left: 4px; font-size: 0.55em; }
  .hero-stats .stat-star { margin-left: 5px; font-size: 0.7em; }

  /* TRUST STRIP — 2x2.5 grid centrat */
  .trust-strip { padding: 18px 0; }
  .trust-row {
    gap: 14px 16px;
    text-align: center;
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item { align-items: center; }
  .trust-item strong { font-size: 17px; }
  .trust-item span {
    font-size: 9.5px;
    line-height: 1.35;
    max-width: 18ch;
  }

  /* SECTION HEADERS — text aliniat și aerisit */
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 28px; text-align: center; }
  .section-head .eyebrow { display: block; }
  .section-lead {
    font-size: 14px;
    line-height: 1.6;
    max-width: 38ch;
    margin: 12px auto 0;
  }
  .display-2 { font-size: clamp(1.7rem, 6.5vw, 2.2rem); line-height: 1.18; }

  .channels-grid { gap: 16px; }
  .channel-body { padding: 22px 22px 22px; }
  .channel-title { font-size: 24px; }
  .channel-features { padding-top: 14px; }
  .channel-logo { padding-bottom: 14px; margin-bottom: 14px; }
  .channel-logo-img { max-height: 64px; }

  .city-filter { gap: 6px; margin-bottom: 20px; justify-content: center; }
  .chip { padding: 8px 14px; font-size: 12px; }

  .store-grid { gap: 16px; }
  .store-body { padding: 18px 18px 20px; gap: 10px; }
  .store-name { font-size: 19px; }
  .store-actions { padding-top: 10px; }
  .store-cta { height: 50px; font-size: 17px; padding: 0 12px; }
  .store-link { height: 38px; font-size: 11px; padding: 0 10px; }
  .store-socials { margin-top: 8px; }
  .store-socials a { width: 32px; height: 32px; }

  .reviews-grid { gap: 16px; }
  .review-card { padding: 22px 22px 18px; }
  .review-card blockquote { font-size: 15.5px; line-height: 1.5; }

  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-tile { height: 80px; }
  .brand-tile img { height: 22px; }

  .app-section { padding: 48px 0; }
  .app-row { gap: 32px; }
  .phone-mockup { width: 240px; }

  /* CTA BAND — actions egale și centrate */
  .cta-band { padding: 52px 0; }
  .cta-copy { text-align: center; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; max-width: 320px; margin: 0 auto; }

  .footer { padding: 44px 0 96px; }
  .footer-grid { gap: 28px; padding-bottom: 32px; }
  .brand-family { gap: 12px 18px; }
  .brand-family-label { width: 100%; text-align: left; }

  .wheel-modal-panel { padding: 28px 18px 24px; }
  .wheel-stage { max-width: 280px; }
  .wheel-title { font-size: clamp(1.4rem, 5.5vw, 1.7rem); }
  .wheel-form { margin-top: 18px; }
  .voucher-actions .btn { font-size: 13px; }
}

@media (max-width: 380px) {
  .mobile-bar-link { font-size: 9.5px; padding: 0 4px; }
  .mobile-bar-link svg { width: 16px; height: 16px; }
  .mobile-bar-link.mobile-bar-spin::before { top: 4px; right: 6px; }
}

/* ============================================
   MARQUEE / motion-safe niceties
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
