/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ─── Tokens (DESIGN.md §1-2) ───────────────────────────────── */
:root {
  --red:      #D42B2B;
  --red-dark: #A81F1F;
  --gray-50:  #F9F9F9;
  --gray-100: #F2F2F2;
  --gray-200: #E5E5E5;
  --gray-500: #737373;
  --gray-800: #1A1A1A;
  --gray-900: #0F0F0F;
  --white:    #FFFFFF;

  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h: 64px;
  --container: 1280px;
  --px: 48px;
  --section-py: 80px;
}

/* ─── Base ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ─── Skip link ──────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--red); color: #fff; padding: 8px 16px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  border-radius: 0 0 6px 6px; z-index: 1000;
  transition: top 150ms;
}
.skip-link:focus { top: 0; }

/* ─── Container ──────────────────────────────────────────────── */
.container {
  padding-inline: var(--px);
}

/* ─── Focus ──────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════════════════
   NAV  (DESIGN.md §4)
══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; inset-block-start: 0; inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logos */
.nav__logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo-giricond {
  height: 40px;
  width: auto;
}
.nav__logo-divider {
  width: 1px; height: 32px;
  background: var(--gray-200);
}
.nav__logo-nabat-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.nav__logo-nabat {
  height: 32px;
  width: auto;
  display: block;
}
.nav__logo-sub {
  font-size: 11px; color: var(--gray-500);
  font-weight: 500; letter-spacing: 0.2px;
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 1;
  list-style: none;
}
.nav__links a {
  display: block;
  padding: 0 14px;
  font-size: 12px; font-weight: 500;
  color: var(--gray-800);
  text-decoration: none;
  letter-spacing: 0.2px;
  line-height: var(--nav-h);
  white-space: nowrap;
  transition: color 150ms;
}
.nav__links a:hover { color: var(--red); }
.nav__links a[aria-current="page"] { color: var(--red); font-weight: 600; }

/* Search */
.nav__search {
  position: relative;
  flex-shrink: 0;
  width: 200px;
}
.nav__search-input {
  display: block; margin-left: auto;
  width: 160px; height: 32px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 0 32px 0 10px;
  font-size: 12px; font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 150ms, width 200ms ease;
}
.nav__search-input::placeholder { color: var(--gray-500); }
.nav__search-input:focus { border-color: var(--red); outline: none; width: 200px; }
.nav__search-btn {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  color: var(--gray-500); padding: 0;
  transition: color 150ms;
}
.nav__search-btn:hover { color: var(--red); }

/* Cart icon */
.nav__cart {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px; flex-shrink: 0;
  color: var(--gray-800);
  text-decoration: none;
  transition: background 150ms, color 150ms;
}
.nav__cart:hover { background: var(--gray-100); color: var(--red); }
.nav__cart-badge {
  position: absolute; top: -3px; right: -3px;
  background: var(--red); color: var(--white);
  font-size: 9px; font-weight: 700;
  min-width: 16px; height: 16px;
  border-radius: 8px; padding-inline: 3px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
  animation: badgePop 200ms ease-out;
}
@keyframes badgePop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

/* CTA */
.nav__cta {
  flex-shrink: 0;
  background: var(--red);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px; font-weight: 600;
  text-decoration: none; letter-spacing: 0.3px;
  transition: background 150ms;
  animation: navCtaPulse 3.5s ease-in-out 2s infinite;
}
.nav__cta:hover { background: var(--red-dark); animation-play-state: paused; }

@keyframes navCtaPulse {
  0%   { box-shadow: 0 0 0 0px rgba(212,43,43,0.55), 0 0 0 0px rgba(212,43,43,0);   }
  25%  { box-shadow: 0 0 0 10px rgba(212,43,43,0),   0 0 0 0px rgba(212,43,43,0.4); }
  50%  { box-shadow: 0 0 0 10px rgba(212,43,43,0),   0 0 0 10px rgba(212,43,43,0);  }
  100% { box-shadow: 0 0 0 0px rgba(212,43,43,0),    0 0 0 0px rgba(212,43,43,0);   }
}

/* ══════════════════════════════════════════════════════════════
   HERO + CAROUSEL  (DESIGN.md §7-8)
══════════════════════════════════════════════════════════════ */
.hero {
  margin-block-start: var(--nav-h);
  min-height: calc(100vh - var(--nav-h) - 128px);
  background: linear-gradient(135deg, #0F0F0F 0%, #1A0A0A 40%, #2D0D0D 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,43,43,0.25) 0%, transparent 60%);
  pointer-events: none;
}

/* Slides wrapper */
.hero__slides {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - 128px);
}

/* Individual slide */
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms ease-out;
}
.hero__slide--active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

/* Content entrance animation */
.hero__slide--active .hero__content {
  animation: slideUp 600ms ease-out both;
}
.hero__slide--active .hero__visual {
  animation: fadeIn 700ms ease-out both;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Inner layout */
.hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(100vh - var(--nav-h) - 128px);
  gap: 40px;
}
.hero__content { max-width: 520px; }

/* Tag pill */
.hero__tag {
  display: inline-block;
  background: rgba(212,43,43,0.2);
  border: 1px solid rgba(212,43,43,0.4);
  color: #FF6B6B;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 4px;
  margin-bottom: 20px;
}

.hero__title {
  font-size: 52px; font-weight: 800;
  color: var(--white);
  line-height: 1.1; letter-spacing: -1px;
  margin-bottom: 16px;
}
.hero__title span { color: var(--red); }

.hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 36px;
}

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

/* Product image */
.hero__visual {
  position: absolute;
  right: 100px; top: 50%;
  transform: translateY(-50%);
}
.hero__product-img {
  height: 520px;
  width: auto;
  transform: scaleX(-1);
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
}

/* Product image variants */
.hero__product-img--flip {
  transform: none;
}
.hero__product-img--sm {
  height: 240px;
  transform: scaleX(-1);
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
}

/* Wide content (слайд со статьёй — текст шире, картинка меньше) */
.hero__content--wide { max-width: 680px; }
.hero__title--lg { font-size: 42px; }

/* ── Navigation: progress bars ────────────────────────────── */
.hero__nav {
  position: absolute;
  bottom: 20px; left: 48px;
  display: flex; gap: 8px;
  z-index: 10;
}
.hero__nav-btn {
  width: 48px; height: 20px;
  background: transparent;
  border: none; padding: 0; cursor: pointer;
  position: relative;
  display: flex; align-items: center;
}
.hero__nav-btn::before {
  content: '';
  position: absolute; inset-inline: 0;
  top: 50%; height: 3px;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  transition: height 200ms ease, background 200ms;
}
.hero__nav-btn:hover::before {
  height: 6px;
  background: rgba(255,255,255,0.35);
}
.hero__nav-btn--active::before { background: rgba(255,255,255,0.25); }
.hero__nav-progress {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  left: 0;
  width: 0%; height: 3px;
  background: var(--white);
  border-radius: 2px;
  z-index: 1;
  transition: height 200ms ease;
}
.hero__nav-btn:hover .hero__nav-progress {
  height: 6px;
}
.hero__nav-btn--active .hero__nav-progress {
  animation: progressFill var(--hero-duration, 5000ms) linear forwards;
}
.hero--paused .hero__nav-btn--active .hero__nav-progress {
  animation-play-state: paused;
}
@keyframes progressFill {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS  (DESIGN.md §5)
══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; letter-spacing: 0.3px;
  border-radius: 8px; padding: 14px 28px;
  transition: background 150ms, transform 150ms ease-out, border-color 150ms, color 150ms;
}
.btn--primary {
  background: var(--red); color: var(--white);
}
.btn--primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.btn--white {
  background: var(--white); color: var(--red); font-weight: 700;
}
.btn--white:hover { transform: scale(0.98); }

/* ══════════════════════════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════════════════════════ */
.stats {
  background: var(--gray-900);
  margin-block-start: -12px;
  padding-block-start: 12px;
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats__item {
  padding: 32px 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stats__item:last-child { border-right: none; }
.stats__number {
  font-size: 36px; font-weight: 800;
  color: var(--red); letter-spacing: -1px;
}
.stats__label {
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════════════ */
.about {
  padding-block: var(--section-py);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about__panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px;
}
.about__logo-block {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}
.about__logo-img { height: 40px; width: auto; }
.about__company { font-size: 14px; font-weight: 600; color: var(--gray-800); }
.about__site {
  font-size: 12px; color: var(--gray-500);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 3px;
  transition: color 150ms;
}
.about__site::after {
  content: '↗';
  font-size: 10px;
  opacity: 0;
  transform: translate(-2px, 2px);
  transition: opacity 150ms, transform 150ms;
}
.about__site:hover {
  color: var(--gray-800);
}
.about__site:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

.about__intro { font-size: 15px; color: var(--gray-900); line-height: 1.7; margin-bottom: 16px; }
.about__desc  { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 24px; }
.about__more  {
  font-size: 13px; font-weight: 600; color: var(--red);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  transition: opacity 150ms;
}
.about__more:hover { opacity: 0.75; }

.about__inline-link {
  display: inline;
  font-size: inherit; font-weight: 600;
  color: var(--red); text-decoration: none;
  white-space: nowrap;
  transition: opacity 150ms;
}
.about__inline-link::after {
  content: ' →';
  display: inline-block;
  transition: transform 200ms ease;
}
.about__inline-link:hover { opacity: 0.8; }
.about__inline-link:hover::after { transform: translateX(5px); }

/* Product categories */
.about__categories { display: flex; flex-direction: column; gap: 16px; }
.about__pricel {
  display: flex; justify-content: flex-end; margin-bottom: 16px;
}
.about__pricel a {
  font-size: 13px; font-weight: 600; color: var(--red);
  text-decoration: none;
  transition: opacity 150ms;
}
.about__pricel a:hover { opacity: 0.75; }

.category-card {
  display: flex; align-items: center; gap: 16px;
  border: 1px solid var(--gray-200); border-radius: 8px;
  overflow: hidden; text-decoration: none;
  transition: box-shadow 200ms ease-out, transform 200ms ease-out;
}
.category-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.category-card__img {
  width: 120px; height: 80px; flex-shrink: 0;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
}
.category-card__body { padding: 12px 16px 12px 0; }
.category-card__name { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.category-card__arrow { font-size: 13px; color: var(--red); font-weight: 600; }

/* ══════════════════════════════════════════════════════════════
   NEWS SECTION  (DESIGN.md §6)
══════════════════════════════════════════════════════════════ */
.news {
  background: var(--gray-50);
  padding-block: var(--section-py);
}
.news__head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 40px;
}
.news__all {
  font-size: 13px; font-weight: 600; color: var(--red);
  text-decoration: none; transition: opacity 150ms;
}
.news__all:hover { opacity: 0.75; }
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0; margin: 0;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px;
  display: flex; flex-direction: column;
  text-decoration: none;
  transition: transform 200ms ease-out;
}
.news-card:hover { transform: translateY(-2px); }
.news-card__date {
  font-size: 12px; color: var(--gray-500);
  font-weight: 500; margin-bottom: 12px;
}
.news-card__title {
  font-size: 17px; font-weight: 700;
  color: var(--gray-900); line-height: 1.4;
  margin-bottom: 12px; flex: 1;
}
.news-card__excerpt {
  font-size: 14px; color: var(--gray-500);
  line-height: 1.6; margin-bottom: 20px;
}
.news-card__link {
  font-size: 13px; font-weight: 600; color: var(--red);
  margin-top: auto;
}

/* ══════════════════════════════════════════════════════════════
   SECTION LABELS  (DESIGN.md §2)
══════════════════════════════════════════════════════════════ */
.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.section-title {
  font-size: 36px; font-weight: 800;
  letter-spacing: -0.5px; color: var(--gray-900);
}

/* ══════════════════════════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════════════════════════ */
.cta {
  background: var(--red);
  padding-block: var(--section-py);
}
.cta__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta__title {
  font-size: 36px; font-weight: 800;
  color: var(--white); max-width: 500px;
  letter-spacing: -0.5px;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--gray-900);
  padding-block-start: 56px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand-logo {
  font-size: 20px; font-weight: 800;
  color: var(--red); text-transform: uppercase;
  letter-spacing: -0.5px; margin-bottom: 12px;
}
.footer__brand-sub {
  font-size: 13px; color: rgba(255,255,255,0.55);
  margin-bottom: 16px; line-height: 1.5;
}
.footer__brand-addr {
  font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7;
}

.footer__col h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.footer__col a, .footer__col p {
  display: block; font-size: 14px;
  color: rgba(255,255,255,0.6); text-decoration: none;
  margin-bottom: 10px; line-height: 1.5;
  transition: color 150ms;
}
.footer__col a:hover { color: var(--white); }
.footer__col strong {
  display: block; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.75); margin-bottom: 4px; margin-top: 12px;
}
.footer__col strong:first-child { margin-top: 0; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; color: rgba(255,255,255,0.4);
}
.footer__bottom-inner {
  padding-block: 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.footer__bottom a {
  color: rgba(255,255,255,0.4); text-decoration: none;
  transition: color 150ms;
}
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }
.footer__legal { display: flex; gap: 24px; }

/* ══════════════════════════════════════════════════════════════
   REDUCED MOTION  (DESIGN.md §8)
══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ══════════════════════════════════════════════════════════════
   BURGER BUTTON (hidden on desktop)
══════════════════════════════════════════════════════════════ */
.nav__burger {
  display: none;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 6px; flex-shrink: 0;
  color: var(--gray-800);
  transition: background 150ms;
}
.nav__burger:hover { background: var(--gray-100); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE ≤ 768px
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --px: 20px; --section-py: 48px; }

  /* Nav */
  .nav__inner { gap: 8px; }
  .nav__logo-sub { display: none; }
  .nav__links { display: none; }
  .nav__search { display: none; }
  .nav__cta { display: none; }
  .nav__cart { margin-left: auto; }
  .nav__burger { display: flex; }

  /* Mobile menu dropdown */
  .nav__links--open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 8px 0; z-index: 99;
  }
  .nav__links--open li { list-style: none; }
  .nav__links--open a {
    display: block; padding: 0 20px;
    font-size: 15px; font-weight: 500;
    line-height: 52px; color: var(--gray-800);
    border-bottom: 1px solid var(--gray-100);
  }
  .nav__links--open li:last-child a { border-bottom: none; }

  /* Hero */
  .hero, .hero__slides { min-height: 380px; }
  .hero__inner { min-height: 380px; }
  .hero__visual { display: none; }
  .hero__content { max-width: 100%; }
  .hero__title { font-size: 30px; letter-spacing: -0.5px; }
  .hero__desc { font-size: 15px; margin-bottom: 24px; }
  .hero__nav { left: var(--px); bottom: 16px; }

  /* Stats */
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stats__item { padding: 20px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stats__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
  .stats__item:nth-last-child(-n+2) { border-bottom: none; }
  .stats__number { font-size: 28px; }

  /* About */
  .about__inner { grid-template-columns: 1fr; gap: 32px; }

  /* Titles */
  .section-title { font-size: 26px; }

  /* News */
  .news__grid { grid-template-columns: 1fr; }
  .news__head { flex-wrap: wrap; gap: 8px; }

  /* CTA */
  .cta__inner { flex-direction: column; text-align: center; gap: 24px; }
  .cta__title { font-size: 26px; max-width: 100%; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
  .footer__legal { flex-direction: column; gap: 8px; align-items: center; }

  /* Page header (used on product/support/etc pages) */
  .page-header__title { font-size: 28px !important; }
}

@media (max-width: 480px) {
  :root { --px: 16px; }
  .hero__title { font-size: 26px; }
  .btn { font-size: 14px; padding: 12px 20px; }
  .stats__number { font-size: 24px; }
}

/* ─── Partner / compliance badges ───────────────────────────────── */
.partner-badges { background: var(--white); border-top: 1px solid var(--gray-200); }
.partner-badges__inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 40px;
  padding-block: 24px;
}
.partner-badges__item { display: flex; align-items: center; }
.partner-badges__item img { height: 112px; width: auto; object-fit: contain; }
@media (max-width: 600px) {
  .partner-badges__inner { gap: 24px; padding-block: 16px; }
  .partner-badges__item img { height: 80px; }
}

/* ─── Cookie consent banner ─────────────────────────────────────── */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 500;
  background: var(--gray-900);
  color: rgba(255,255,255,0.85);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}
.cookie-banner__text { font-size: 13px; line-height: 1.6; max-width: 760px; margin: 0; }
.cookie-banner__text a { color: var(--white); text-decoration: underline; }
.cookie-banner__btn {
  flex-shrink: 0;
  background: var(--red); color: var(--white);
  border: none; cursor: pointer;
  font-size: 13px; font-weight: 600; font-family: var(--font);
  padding: 10px 24px; border-radius: 8px;
  transition: background 150ms;
}
.cookie-banner__btn:hover { background: var(--red-dark); }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; gap: 12px; }
}
