/* ============================================================
   style.css — Radschmidt
   ============================================================ */

/* ── Variablen ── */
:root {
  --black:  #000000;
  --white:  #FFFFFF;
  --bg:     #F2F1ED;
  --text:   #2C2C2A;
  --mid:    #5F5E5A;
  --light:  #D3D1C7;
  --card:   #E2E0D9;

  --serif: 'PT Serif', Georgia, serif;
  --body: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  --display: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  
/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */

nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 8px 48px;
  background: rgba(242, 241, 237, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

nav.site-nav.scrolled {
  background: rgba(242, 241, 237, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  justify-content: center;
  padding: 0 40px;
}

.nav-logo img {
  height: 72px;
  width: auto;
  display: block;
}

/* ── Desktop Nav Links ── */
.nav-links--left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  list-style: none;
}

.nav-links--right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  list-style: none;
}

.nav-links--left a,
.nav-links--right a {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-links--left a:hover,
.nav-links--right a:hover { opacity: 0.5; }

.nav-links--light a { color: var(--white); }

/* ── Hamburger ── */
.hamburger {
  width: 32px; height: 20px;
  display: flex; flex-direction: column; justify-content: space-between;
  cursor: pointer; background: none; border: none; padding: 0;
  position: relative; z-index: 200;
}

.hamburger span {
  display: block; width: 100%; height: 1px;
  background: var(--text);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1),
              opacity   0.3s ease,
              width     0.4s cubic-bezier(0.76, 0, 0.24, 1);
  transform-origin: center;
}

.hamburger span:nth-child(2) { width: 70%; }

.hamburger--light span { background: var(--white); }

.hamburger.open span { background: var(--white); }
.hamburger.open span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); width: 100%; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); width: 100%; }

/* ── Menu Overlay ── */
.menu-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: var(--mid);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 80px 150px;
  pointer-events: none;
  clip-path: circle(0% at calc(100% - 80px) 52px);
  transition: clip-path 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

.menu-overlay.open {
  pointer-events: all;
  clip-path: circle(150% at calc(100% - 80px) 52px);
}

.menu-close {
  position: absolute; top: 32px; right: 64px;
  background: none; border: none; cursor: pointer;
  font-family: var(--body); font-size: 20px;
  color: var(--white); opacity: 0.5;
  transition: opacity 0.2s;
  padding: 4px;
}
.menu-close:hover { opacity: 1; }

.menu-nav {
  display: flex; flex-direction: column; gap: 4px;
  padding-bottom: 64px;
}

.menu-nav a {
  font-family: var(--body);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  line-height: 1.15;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-overlay.open .menu-nav a              { opacity: 1; transform: translateY(0); }
.menu-overlay.open .menu-nav a:nth-child(1) { transition-delay: 0.15s; }
.menu-overlay.open .menu-nav a:nth-child(2) { transition-delay: 0.21s; }
.menu-overlay.open .menu-nav a:nth-child(3) { transition-delay: 0.27s; }
.menu-overlay.open .menu-nav a:nth-child(4) { transition-delay: 0.33s; }
.menu-overlay.open .menu-nav a:nth-child(5) { transition-delay: 0.39s; }
.menu-overlay.open .menu-nav a:nth-child(6) { transition-delay: 0.45s; }
.menu-overlay.open .menu-nav a:nth-child(7) { transition-delay: 0.51s; }

.menu-nav a:hover { opacity: 0.45; transition: opacity 0.2s; }

.menu-nav a .num {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.12em;
  vertical-align: super;
  margin-right: 8px;
  opacity: 0.4;
}

.menu-footer {
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s;
}
.menu-overlay.open .menu-footer { opacity: 1; transform: translateY(0); }

.menu-footer-copy {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
}

/* ── Breakpoints Navigation ── */
@media (min-width: 960px) {
  .hamburger { display: none; }
}

@media (max-width: 959px) {
  nav.site-nav {
    display: flex;
    justify-content: space-between;
    padding: 12px 24px;
  }
  .nav-links--left,
  .nav-links--right { display: none; }
  .menu-overlay { padding: 24px; }
  .menu-close { right: 24px; }
}

/* ── Hauptinhalt ── */
.main-content {
  max-width: 1440px;
  padding: 180px 150px 96px;
  margin: 0 auto;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--light);
  max-width: 720px;
  margin: 96px auto 64px;
}

.section-divider-wide {
  border: none;
  border-top: 1px solid var(--light);
  max-width: 1200px;
  margin: 96px auto 64px;
}

h1 {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--black);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
}

h2 {
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 38px;
  margin-bottom: 18px;
}

h3 {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  margin-bottom: 8px;
}

p {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 200;
  line-height: 1.6;
  color: var(--mid);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Content-Bild ── */
.content-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 64px;
  margin-bottom: 64px;
}

.content-img--text {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.content-img--wide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Page Hero ── */
.page-hero {
  padding: 180px 0 80px;
}

.page-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 150px;
}

.page-hero .hero-eyebrow {
  color: var(--mid);
  margin-bottom: 16px;
}

.page-hero h1 {
  max-width: none;
  margin: 0;
}

/* ── Journal Filter ── */
.journal-filter {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px 24px;
  display: flex;
  gap: 6px;
}

.filter-btn {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  background: none;
  border: 1px solid var(--light);
  border-radius: 10px;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--mid);
  color: var(--text);
}

.filter-btn.active {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
}

.journal-filter--secondary {
  padding-top: 0;
  padding-bottom: 20px;
  margin-top: -12px;
}

.journal-filter--secondary-row2 {
  padding-top: 0;
  margin-top: -12px;
}

.journal-filter--secondary .filter-btn {
  font-size: 10px;
  padding: 6px 14px;
  border-color: transparent;
  color: var(--mid);
  opacity: 0.7;
}

.journal-filter--secondary .filter-btn:hover {
  border-color: var(--light);
  opacity: 1;
}

.journal-filter--secondary .filter-btn.active {
  background: none;
  border-color: var(--mid);
  color: var(--text);
  opacity: 1;
}

/* ── Journal Grid Full ── */
.journal-grid-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

/* ── Bike Card Erweiterungen ── */
.bike-card-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}

.bike-card-meta span {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bike-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--light);
}

.bike-card-price {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
}

.bike-card-fid {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--light);
}

.no-results {
  font-family: var(--body);
  font-size: 15px;
  color: var(--mid);
  grid-column: 1 / -1;
  padding: 48px 0;
}

/* ── Journal Cards (Bike Cards) ── */
.journal-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--card);
  border-radius: 10px;
  overflow: hidden;
  transition: opacity 0.2s;
}
.journal-card:hover { opacity: 0.85; }

.journal-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.journal-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.journal-card-category {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}

.journal-card-title {
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}


@media (max-width: 900px) {
  .journal-grid-full { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 140px 24px 48px; }
  .page-hero-content { padding: 0 0px; }
  .journal-filter { padding: 0 24px 40px; }
}

@media (max-width: 768px) {
  .journal-grid-full { grid-template-columns: 1fr; }  
  .journal-filter { flex-wrap: wrap; }
  .filter-btn { flex: 0 0 calc(50% - 4px); text-align: center; }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  nav.site-nav    { padding: 24px; }
  .menu-overlay   { padding: 24px; }
  .menu-close     { right: 24px; }
  .main-content   { padding: 140px 24px 64px; }
  h1              { font-size: 36px; }
  .menu-nav a     { font-size: clamp(28px, 9vw, 52px); }
  .hero-content { padding: 0 24px 60px; }
  .tour-card { grid-template-columns: 1fr; }
  .tour-card-img { height: 220px; }
  .tour-card-body { padding: 28px 24px; }
  .tour-card-title { font-size: 32px; }
  .site-footer { padding: 24px; }
}


/* ── Bike Card klickbar ── */
.bike-card-clickable {
  cursor: pointer;
}

/* ── Bike Modal ── */
.bike-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(44, 44, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.bike-modal.open {
  opacity: 1;
  pointer-events: all;
}

.bike-modal-inner {
  background: var(--bg);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.3s ease;
}

.bike-modal.open .bike-modal-inner {
  transform: translateY(0);
}

.bike-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(44, 44, 42, 0.4);
  border: none;
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}
.bike-modal-close:hover { background: rgba(44, 44, 42, 0.7); }

.bike-modal-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.bike-modal-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bike-modal-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bike-modal-brand {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin: 0;
}

.bike-modal-model {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin: 0;
}

.bike-modal-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bike-modal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--light);
}

.bike-modal-row:first-child {
  border-top: 1px solid var(--light);
}

.bike-modal-label {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}

.bike-modal-value {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  text-align: right;
}

.bike-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.bike-modal-price {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
}

.bike-modal-fid {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--light);
}

.bike-modal-description {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--mid);
  margin: 0;
}

.bike-modal-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.bike-modal-highlights li {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  padding-left: 16px;
  position: relative;
}

.bike-modal-highlights li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--light);
}

/* ── Footer Dark ── */
.site-footer-dark {
  background: #232323;
  padding: 80px 0 40px;
  margin-top: 96px;
}

.footer-dark-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

.footer-dark-logo {
  margin-bottom: 64px;
}

.footer-dark-logo img {
  height: auto;
  width: 100%;
  max-width: 1200px;
  display: block;
}

.footer-dark-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 64px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.footer-dark-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-dark-eyebrow {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0 8px 0;
  max-width: none;
}

.footer-dark-col a,
.footer-dark-col span {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}

.footer-dark-col a:hover {
  color: var(--white);
}

.footer-dark-indent {
  padding-left: 0;
  color: rgba(255, 255, 255, 0.4) !important;
}

.footer-dark-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

.footer-dark-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-dark-bottom span,
.footer-dark-bottom a {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-dark-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-dark-legal {
  display: flex;
  gap: 24px;
}

@media (max-width: 768px) {
  .footer-dark-inner { padding: 0 24px; }
  .footer-dark-cols { grid-template-columns: 1fr; gap: 40px; }
  .footer-dark-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-dark-legal { justify-content: center; }
}

/* ── Brands Section ── */
.brands-section {
  padding: 24px 0;
  overflow: hidden;
}

.brands-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
  box-sizing: border-box;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  min-width: 0;
}

.brand-item {
  background: var(--card);
  border-radius: 10px;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
  aspect-ratio: 3 / 1;
  min-height: 80px;  /* Fallback für ältere Browser */
  min-width: 0;
  width: 100%;
}

.brand-item:hover { opacity: 0.7; }

.brand-item img {
  width: 100%;
  height: auto;      /* statt height: 100% */
  max-height: 60px;
  object-fit: contain;
  display: block;
}

/* ── Brand Modal ── */
.brand-modal-inner {
  max-width: 520px;
}

.brand-modal-logo {
  background: var(--card);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-modal-logo img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  display: block;
}

.brand-modal-text {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid);
  margin: 0;
  max-width: none;
}

.brand-modal-btn {
  display: inline-block;
  margin-top: 8px;
  text-decoration: none;
  cursor: pointer;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-inner { padding: 0 24px; }
}

.main-content .journal-filter {
  max-width: none;
  padding: 0 0 24px;
  margin: 0;
}

.main-content .journal-filter--secondary {
  padding-bottom: 20px;
}

.main-content .journal-filter:first-of-type {
  margin-top: 100px;
}

.main-content:has(+ .home-split) {
  padding-bottom: 48px;
}

.home-split + .main-content,
.home-split + div.main-content {
  padding-top: 0;
}

.main-content a {
  color: var(--mid);
}

/* ── Kontaktseite ── */
.kontakt-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 720px;
  margin: 0 auto 48px;
}

.kontakt-label {
  font-family: var(--body);
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid) !important;
  margin-bottom: 16px !important;
}

.kontakt-col p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
  max-width: none;
}

.kontakt-col a {
  color: var(--mid);
  text-decoration: none;
}

.kontakt-col a:hover {
  color: var(--text);
}

.kontakt-map {
  max-width: 720px;
  margin: 0 auto 64px;
  border-radius: 10px;
  overflow: hidden;
}

/* ── Kontaktformular ── */
.kontakt-form {
  max-width: 720px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kontakt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.kontakt-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kontakt-form-field label {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
}

.kontakt-form-field input,
.kontakt-form-field textarea {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--light);
  border-radius: 6px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.kontakt-form-field input::placeholder,
.kontakt-form-field textarea::placeholder {
  color: var(--light);
}

.kontakt-form-field input:focus,
.kontakt-form-field textarea:focus {
  border-color: var(--mid);
}

.kontakt-form .filter-btn {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .kontakt-cols { grid-template-columns: 1fr; gap: 32px; }
  .kontakt-form-row { grid-template-columns: 1fr; }
}

/* ── Cookie Banner ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text);
  z-index: 9999;
  padding: 24px 64px;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cookie-banner-text {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 300;
  color: var(--light);
  margin: 0;
  max-width: none;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: var(--white);
  text-decoration: underline;
}

.cookie-banner-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
  white-space: nowrap;
}

.cookie-btn--decline {
  background: transparent;
  color: var(--light);
}

.cookie-btn--decline:hover {
  border-color: var(--white);
  color: var(--white);
}

.cookie-btn--accept {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

.cookie-btn--accept:hover {
  background: var(--light);
  border-color: var(--light);
}

@media (max-width: 768px) {
  #cookie-banner { padding: 24px; }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.menu-overlay {
  background: var(--text);
}

.menu-nav a {
  font-family: var(--body);
}

.bikes-count {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 14px 16px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
}