/* ══════════════════════════════════════════════════════════════
   SPORTPEAK — CSS
   ══════════════════════════════════════════════════════════════ */

/* ── Variables ───────────────────────────────────────────────── */
:root {
  --black:       #0a0a0a;
  --white:       #ffffff;
  --gray-100:    #f5f5f5;
  --gray-200:    #ebebeb;
  --gray-400:    #b0b0b0;
  --gray-600:    #757575;
  --gray-800:    #333333;
  --orange:      #ff5500;
  --orange-lt:   #ff7733;
  --yellow:      #f5c800;
  --red-sale:    #e30613;
  --blue-pay:    #1a56db;
  --dark-navy:   #0d1117;

  --header-h:    52px;
  --promobar-h:  36px;

  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --transition:  .2s ease;
  --shadow-sm:   0 1px 4px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.18);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }
input, select, textarea { font: inherit; }
svg { flex-shrink: 0; }

/* ── Promo Bar ────────────────────────────────────────────────── */
.promo-bar {
  background: var(--yellow);
  color: var(--black);
  height: var(--promobar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: height .2s, opacity .2s;
}
.promo-bar.hidden { height: 0; opacity: 0; overflow: hidden; pointer-events: none; }
.promo-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
}
.promo-bar__inner svg { opacity: .7; }
.promo-bar a { text-decoration: underline; font-weight: 700; }
.promo-bar__divider { opacity: .4; }
.promo-bar__close {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .6;
  transition: opacity var(--transition);
  padding: 4px;
}
.promo-bar__close:hover { opacity: 1; }

/* ── Header ──────────────────────────────────────────────────── */
.header {
  background: var(--black);
  color: var(--white);
  position: sticky;
  top: var(--promobar-h);
  z-index: 999;
  transition: top .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.header.promo-hidden { top: 0; }
.header__inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: var(--header-h);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.header__logo {
  flex-shrink: 0;
  margin-right: 32px;
}
.logo-text {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--white);
  font-style: italic;
}

/* Nav */
.header__nav { flex: 1; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav__link {
  display: block;
  padding: 0 14px;
  line-height: var(--header-h);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav__link--new { color: var(--orange); }
.nav__link--new:hover { color: var(--orange-lt); background: rgba(255,85,0,.12); }
.nav__link--sale { color: var(--red-sale); }
.nav__link--sale:hover { color: #ff4455; background: rgba(227,6,19,.12); }

/* Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
}
.header__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255,255,255,.8);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.header__action-btn:hover { color: var(--white); background: rgba(255,255,255,.1); }
.cart-count {
  position: absolute;
  top: 5px; right: 5px;
  background: var(--orange);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: 4px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s;
}

/* Search Bar */
.header__search {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.08);
  display: none;
  overflow: hidden;
}
.header__search.open { display: block; }
.search__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  color: rgba(255,255,255,.5);
}
#searchInput {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 15px;
  placeholder-color: rgba(255,255,255,.4);
}
#searchInput::placeholder { color: rgba(255,255,255,.35); }
.search__close {
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  padding: 6px;
}
.search__close:hover { color: var(--white); }

/* ── Hero Slider ─────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: #111;
  height: clamp(280px, 45vw, 540px);
  user-select: none;
}
.hero__slider {
  display: flex;
  height: 100%;
  transition: none;
}
.hero__slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  opacity: 0;
  transition: opacity .6s;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
}
.hero__slide.active { opacity: 1; z-index: 1; }

/* Slide Backgrounds */
.hero__slide--1 .hero__slide-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #c6007e 0%, #ff0066 35%, #ff6b35 70%, #ff3300 100%);
}
.hero__slide--1 .hero__slide-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.15) 0%, transparent 60%);
}
.hero__slide--2 .hero__slide-bg {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, #0d1117 0%, #1a2332 50%, #0f2347 100%);
}
.hero__slide--2 .hero__slide-bg::before {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  background: url('img/campaign-men.png') center/cover no-repeat;
  opacity: .5;
}
.hero__slide--3 .hero__slide-bg {
  position: absolute; inset: 0;
  background: url('img/campaign-running.png') center/cover no-repeat;
}
.hero__slide--3 .hero__slide-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,.85) 0%, rgba(10,10,10,.4) 60%, transparent 100%);
}

/* Slide Content */
.hero__slide-content {
  position: relative;
  z-index: 2;
  padding: 40px 80px;
  max-width: 700px;
}
.hero__slide-content--dark { color: var(--white); }

.hero__promo-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.3);
  margin-bottom: 20px;
}
.hero__promo-badge--light { background: rgba(0,0,0,.2); border-color: rgba(255,255,255,.2); }

.hero__discount {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--white);
}
.hero__minus {
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 900;
  font-style: italic;
  line-height: .9;
  margin-top: 8px;
}
.hero__percent {
  font-size: clamp(100px, 18vw, 200px);
  font-weight: 900;
  font-style: italic;
  line-height: .85;
  letter-spacing: -.02em;
}
.hero__percent sup {
  font-size: .35em;
  vertical-align: super;
  font-style: normal;
}
.hero__slide-text { margin-bottom: 28px; color: var(--white); }
.hero__slide-sub {
  font-size: clamp(13px, 2vw, 18px);
  font-weight: 700;
  letter-spacing: .12em;
  opacity: .9;
  margin-bottom: 4px;
}
.hero__slide-sub--lg { font-size: clamp(16px, 2.5vw, 22px); }
.hero__slide-title {
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
  color: var(--white);
  font-style: italic;
}
.hero__slide-title--big {
  font-size: clamp(40px, 7vw, 90px);
  line-height: .9;
}
.hero__slide-title sup { font-size: .4em; vertical-align: super; font-style: normal; }
.hero__slide-note { font-size: 11px; opacity: .7; margin-top: 6px; }
.accent-orange { color: var(--orange); }

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 14px 32px;
  border-radius: 40px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero__cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.3); }
.hero__cta--orange { background: var(--orange); color: var(--white); }
.hero__cta--orange:hover { background: var(--orange-lt); }

/* Slider Controls */
.hero__arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.hero__arrow:hover { background: rgba(255,255,255,.3); transform: translateY(-50%) scale(1.05); }
.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }
.hero__dots {
  position: absolute;
  bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 10;
  display: flex; gap: 8px;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: background var(--transition), width var(--transition);
}
.hero__dot.active { background: var(--white); width: 24px; border-radius: 4px; }

/* ── Brands Row ──────────────────────────────────────────────── */
.brands {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 24px;
}
.brands__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  height: 72px;
}
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  height: 72px;
  color: var(--gray-800);
  opacity: .7;
  transition: opacity var(--transition);
  flex-shrink: 0;
}
.brand-item:hover { opacity: 1; }
.brand-item svg { width: 48px; height: 32px; }
.brand-item--text {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .05em;
}
.brand-item--nb { font-weight: 900; font-size: 12px; }
.brand-item--reebok { font-style: italic; }

/* ── Campaign Rows ───────────────────────────────────────────── */
.campaign-row {
  max-width: 1440px;
  margin: 0 auto;
  padding: 4px 4px;
}
.campaign-grid {
  display: grid;
  gap: 4px;
}
.campaign-grid--3 { grid-template-columns: repeat(3, 1fr); }

.campaign-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 2px;
  transition: transform .3s;
}
.campaign-tile:hover { transform: scale(1.005); }

/* Image tiles */
.campaign-tile--img { cursor: pointer; }
.campaign-tile__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform .5s;
}
.campaign-tile--img:hover .campaign-tile__img { transform: scale(1.04); }
.campaign-tile__img--dark { filter: brightness(.85); }
.campaign-tile__img--bright { filter: saturate(1.2); }

/* Overlays & Labels */
.campaign-tile__label {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(0,0,0,.7);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  z-index: 2;
}
.campaign-tile__hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 50px;
  opacity: 0;
  transition: opacity .3s;
  z-index: 3;
}
.campaign-tile--img:hover .campaign-tile__hover-overlay { opacity: 1; }
.campaign-tile__hover-overlay span {
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 30px;
  letter-spacing: .06em;
  transform: translateY(8px);
  transition: transform .3s;
}
.campaign-tile--img:hover .campaign-tile__hover-overlay span { transform: translateY(0); }

.campaign-tile__badge-corner {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 2;
}
.campaign-tile__bottom-cta {
  position: absolute;
  bottom: 16px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,.9);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 8px 20px;
  border-radius: 24px;
  white-space: nowrap;
  z-index: 2;
  backdrop-filter: blur(4px);
  transition: background var(--transition);
}
.campaign-tile--img:hover .campaign-tile__bottom-cta { background: var(--white); }
.campaign-tile__brand-logo {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  z-index: 2;
}
.campaign-tile__corner-brand {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
  line-height: 1.4;
  z-index: 2;
}

/* Text tiles */
.campaign-tile--text {
  background: var(--gray-100);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 40px;
  gap: 16px;
  cursor: default;
}
.campaign-tile--center { align-items: center; text-align: center; }
.campaign-tile--dark { background: var(--dark-navy); }
.campaign-tile--sale { background: var(--gray-100); position: relative; overflow: hidden; }
.campaign-tile--sale::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 180px; height: 180px;
  background: var(--orange);
  border-radius: 50%;
  opacity: .08;
}

.campaign-tile__icon { font-size: 40px; }
.campaign-tile__tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--orange);
  text-transform: uppercase;
}
.campaign-tile__sale-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 4px;
}
.campaign-tile__title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--black);
}
.campaign-tile__title--sm { font-size: clamp(20px, 2.5vw, 30px); }
.campaign-tile__title--light { color: var(--white); }
.campaign-tile__desc { font-size: 13px; color: var(--gray-600); line-height: 1.5; max-width: 260px; }
.campaign-tile__desc--light { color: rgba(255,255,255,.6); }
.campaign-tile__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 1px;
  transition: gap var(--transition);
}
.campaign-tile__link:hover { gap: 10px; }
.campaign-tile__link--light { color: var(--white); }

/* ── Services ────────────────────────────────────────────────── */
.services {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 24px;
}
.services__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide-x: 1px solid var(--gray-200);
}
.service-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  border-right: 1px solid var(--gray-200);
  transition: background var(--transition);
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--gray-200); }
.service-card__icon {
  width: 56px; height: 56px;
  background: var(--black);
  color: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-card__icon--blue { background: var(--blue-pay); }
.service-card__icon--orange { background: var(--orange); }
.service-card__title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.service-card__text { font-size: 12px; color: var(--gray-600); line-height: 1.5; }
.service-card__link {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  margin-top: 6px;
  transition: opacity var(--transition);
}
.service-card__link:hover { opacity: .75; }

/* ── Recommendations ─────────────────────────────────────────── */
.recommendations {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 24px;
}
.recommendations__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.recommendations__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .01em;
}
.recommendations__nav { display: flex; gap: 8px; }
.rec-arrow {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  transition: background var(--transition), border-color var(--transition);
}
.rec-arrow:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.rec-arrow:disabled { opacity: .3; cursor: not-allowed; }

/* Products Slider */
.products-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}
.products-slider::-webkit-scrollbar { display: none; }

/* Product Card */
.product-card {
  flex: 0 0 calc(25% - 9px);
  min-width: 220px;
  scroll-snap-align: start;
  cursor: pointer;
}
.product-card:hover .product-card__name { text-decoration: underline; }
.product-card__img-wrap {
  position: relative;
  background: var(--gray-100);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-bottom: 10px;
}
.product-card__img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform .4s;
}
.product-card:hover .product-card__img { transform: scale(1.04); }
.product-card__badge {
  position: absolute;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  border-radius: 3px;
}
.product-card__badge--new {
  top: 8px; left: 8px;
  background: var(--black);
  color: var(--white);
  padding: 3px 7px;
}
.product-card__badge--sale {
  top: 8px; left: 8px;
  background: var(--red-sale);
  color: var(--white);
  padding: 3px 7px;
}
.product-card__badge--count {
  top: 8px; right: 40px;
  background: transparent;
  color: var(--gray-600);
  font-size: 11px;
  font-weight: 600;
}
.product-card__wishlist {
  position: absolute;
  top: 6px; right: 6px;
  z-index: 2;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600);
  transition: color var(--transition), transform var(--transition);
}
.product-card__wishlist:hover { color: var(--red-sale); transform: scale(1.1); }
.product-card__sale-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--yellow);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-align: center;
  padding: 4px;
  z-index: 2;
}
.product-card__info {}
.product-card__brand { font-size: 11px; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.product-card__name { font-size: 13px; font-weight: 500; line-height: 1.4; margin-bottom: 6px; color: var(--black); }
.product-card__price { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.old-price { font-size: 12px; font-weight: 400; color: var(--gray-400); margin-left: 4px; }
.product-card__sizes { display: flex; flex-wrap: wrap; gap: 4px; }
.size {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 6px;
  border: 1px solid var(--gray-200);
  border-radius: 3px;
  color: var(--gray-600);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}
.size:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.size--unavail { text-decoration: line-through; opacity: .35; cursor: not-allowed; }

/* ── Stores ──────────────────────────────────────────────────── */
.stores {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 24px;
}
.stores__header {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 24px;
  letter-spacing: .01em;
}
.stores__inner {
  display: grid;
  grid-template-columns: 220px repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
}
.stores__summary {
  background: var(--white);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stores__city { font-size: 20px; font-weight: 900; }
.stores__count { font-size: 13px; color: var(--gray-600); }
.stores__total { font-size: 13px; font-weight: 600; color: var(--black); }
.stores__img { margin-top: 12px; border-radius: 6px; overflow: hidden; }
.stores__img img { width: 100%; height: 120px; object-fit: cover; }
.store-card {
  background: var(--white);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.store-card__name { font-size: 14px; font-weight: 700; }
.store-card__detail { font-size: 12px; color: var(--gray-600); line-height: 1.5; }
.store-card__detail strong { color: var(--black); display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.store-card__detail a { color: var(--black); font-weight: 600; }
.store-card__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  margin-top: auto;
}
.store-card__more:hover { opacity: .75; }

/* ── Newsletter ───────────────────────────────────────────────── */
.newsletter {
  background: linear-gradient(135deg, #0d1117 0%, #1a2235 100%);
  padding: 64px 24px;
  text-align: center;
}
.newsletter__inner { max-width: 640px; margin: 0 auto; }
.newsletter__title {
  font-size: clamp(20px, 4vw, 34px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1.1;
  margin-bottom: 32px;
}
.newsletter__title sup { font-size: .5em; }
.newsletter__form {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.newsletter__input {
  flex: 1;
  min-width: 160px;
  height: 48px;
  padding: 0 18px;
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter__input::placeholder { color: rgba(255,255,255,.35); }
.newsletter__input:focus { border-color: rgba(255,255,255,.4); }
.newsletter__btn {
  height: 48px;
  padding: 0 28px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: .04em;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.newsletter__btn:hover { background: var(--orange-lt); transform: translateY(-1px); }
.newsletter__note { font-size: 11px; color: rgba(255,255,255,.4); line-height: 1.5; margin-bottom: 32px; }

.newsletter__gender-title { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.newsletter__gender-opts { display: flex; gap: 24px; justify-content: center; }
.gender-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  cursor: pointer;
  transition: color var(--transition);
}
.gender-opt input { accent-color: var(--orange); cursor: pointer; }
.gender-opt:has(input:checked) { color: var(--white); font-weight: 600; }

/* ── App Promo ───────────────────────────────────────────────── */
.app-promo {
  background: var(--yellow);
  padding: 56px 24px;
}
.app-promo__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}
.app-promo__content { flex: 1; }
.app-promo__title {
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .04em;
  color: var(--black);
  margin-bottom: 24px;
}
.app-promo__benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.app-promo__benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}
.app-promo__benefits svg { color: var(--black); flex-shrink: 0; }
.app-promo__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 10px;
  transition: transform var(--transition), opacity var(--transition);
}
.app-btn:hover { opacity: .85; transform: translateY(-2px); }
.app-btn__text { display: flex; flex-direction: column; }
.app-btn__sub { font-size: 10px; opacity: .7; letter-spacing: .03em; }
.app-btn__main { font-size: 14px; font-weight: 700; }
.app-promo__qr { flex-shrink: 0; text-align: center; }
.qr-box {
  background: var(--white);
  border-radius: 12px;
  padding: 16px;
  display: inline-block;
  margin-bottom: 10px;
  box-shadow: var(--shadow-md);
}
.app-promo__qr p { font-size: 12px; font-weight: 600; color: var(--black); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 48px 24px 24px;
}
.footer__top {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
.footer__logo {
  display: block;
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.footer__tagline { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.6; max-width: 280px; }
.footer__social { text-align: right; }
.footer__social-label { font-size: 11px; font-weight: 600; letter-spacing: .08em; color: rgba(255,255,255,.5); display: block; margin-bottom: 10px; }
.footer__social-links { display: flex; gap: 8px; justify-content: flex-end; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
}
.social-btn:hover { transform: scale(1.1); }
.social-btn--fb:hover { background: #1877f2; }
.social-btn--yt:hover { background: #ff0000; }
.social-btn--ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn--tg:hover { background: #229ed9; }
.social-btn--tk:hover { background: #000; border: 1px solid rgba(255,255,255,.3); }

.footer__nav {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 24px;
}
.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
.footer__col-title--mt { margin-top: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__phones a { font-size: 15px; font-weight: 600; color: var(--white); }
.footer__messengers li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.65);
}
.footer__messengers svg { flex-shrink: 0; opacity: .7; }
.footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.payment-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  letter-spacing: .06em;
}
.payment-badge--gpay { background: #fff; color: #000; }
.payment-badge--apay { background: #000; color: #fff; border-color: rgba(255,255,255,.3); }

.footer__bottom {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,.35); }
.footer__city {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
.footer__city svg { opacity: .5; }
.footer__city a { color: rgba(255,255,255,.6); text-decoration: underline; }
.footer__city a:hover { color: var(--white); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .footer__nav { grid-template-columns: repeat(3, 1fr); }
  .campaign-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .product-card { flex: 0 0 calc(33.333% - 8px); }
}

@media (max-width: 900px) {
  .header__nav { display: none; }
  .burger { display: flex; }
  .header__inner { padding: 0 16px; }
  .hero__slide-content { padding: 32px 24px; }
  .hero__minus { font-size: 50px; }
  .hero__percent { font-size: 100px; }
  .hero { height: clamp(240px, 55vw, 420px); }
  .brands__inner { height: auto; padding: 16px 0; gap: 0; flex-wrap: wrap; }
  .brand-item { padding: 8px 20px; height: auto; }
  .campaign-grid--3 { grid-template-columns: 1fr 1fr; }
  .campaign-tile { aspect-ratio: 3/4; }
  .campaign-tile--text { min-height: 280px; padding: 32px 24px; }
  .services__inner { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .service-card:last-child { border-bottom: none; }
  .stores__inner { grid-template-columns: 1fr 1fr; }
  .stores__summary { grid-column: span 2; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .app-promo__inner { flex-direction: column; gap: 32px; text-align: center; }
  .app-promo__btns { justify-content: center; }
  .app-promo__benefits li { justify-content: center; }
  .product-card { flex: 0 0 calc(50% - 6px); }
}

@media (max-width: 600px) {
  :root { --header-h: 48px; --promobar-h: 32px; }
  .hero { height: 260px; }
  .hero__slide-content { padding: 20px 20px; }
  .hero__minus { font-size: 32px; }
  .hero__percent { font-size: 80px; }
  .hero__slide-title { font-size: 26px; }
  .hero__cta { font-size: 12px; padding: 10px 20px; }
  .hero__discount { margin-bottom: 6px; }
  .hero__slide-text { margin-bottom: 16px; }
  .campaign-grid--3 { grid-template-columns: 1fr; }
  .campaign-tile--text { min-height: 220px; }
  .stores__inner { grid-template-columns: 1fr; }
  .stores__summary { grid-column: span 1; }
  .footer__nav { grid-template-columns: 1fr; }
  .footer__top { flex-direction: column; }
  .footer__social { text-align: left; }
  .footer__social-links { justify-content: flex-start; }
  .newsletter__form { flex-direction: column; }
  .newsletter__btn { width: 100%; }
  .brands__inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 12px; }
  .brand-item { flex-shrink: 0; }
  .promo-bar__inner { gap: 6px; }
  .promo-bar__divider { display: none; }
}
