/* === DESIGN TOKENS === */
:root {
  --brand: #E53935;
  --brand-light: #FF5252;
  --brand-dark: #B71C1C;
  --accent: #E53935;
  --white: #FFFFFF;
  --danger: #EF4444;
  --bg: #000000;
  --bg2: #0A0A0A;
  --bg3: #111111;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.15);
  --text: #FFFFFF;
  --text-muted: rgba(255,255,255,0.78);
  --text-faint: rgba(255,255,255,0.6);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 25px 60px rgba(0,0,0,0.5);
  --glow: 0 0 60px rgba(229,57,53,0.35);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* === UTILITY === */
.gradient-text {
  background: linear-gradient(135deg, var(--brand-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === NAVBAR === */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--text);
  background: var(--surface);
}
.nav-link-cta {
  background: rgba(229,57,53,0.15);
  border: 1px solid rgba(229,57,53,0.3);
  color: var(--brand-light);
}
.nav-link-cta:hover {
  background: rgba(229,57,53,0.25);
  color: var(--brand-light);
}
.nav-icon {
  width: 22px;
  height: 22px;
  object-fit: cover;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 4px;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 32px 16px;
  background: rgba(0,0,0,0.95);
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }
.lang-mobile-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0 4px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
}
.lang-mobile-bar .lang-select {
  margin-left: 0;
  width: 100%;
  max-width: 200px;
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 32px;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.navbar.scrolled {
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  direction: ltr !important;
}

.nav-logo .logo-dot {
  width: 7px;
  height: 7px;
  background-color: var(--brand-light);
  border-radius: 50%;
  display: inline-block;
  margin-right: -1px;
  box-shadow: 0 0 10px var(--brand-light);
  transform: translateY(2px);
}

.nav-logo .logo-r {
  color: var(--brand-light);
  font-style: italic;
  font-weight: 900;
  font-size: 1.7rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.nav-logo .logo-rest {
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
}

/* Footer specific logo scaling */
.footer .nav-logo {
  font-size: 1.25rem;
  gap: 3px;
}
.footer .nav-logo .logo-dot {
  width: 5px;
  height: 5px;
  transform: translateY(1.5px);
}
.footer .nav-logo .logo-r {
  font-size: 1.4rem;
}

@keyframes float {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

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

/* Reveal animations */
.reveal-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* === HERO === */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}
.hero-content { flex: 1; max-width: 580px; }
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-subtitle strong { color: var(--text); }

/* CTA */
.cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(229,57,53,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(229,57,53,0.6);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 14px 24px;
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* Store Badges */
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: background 0.2s;
}
.store-badge.coming { opacity: 0.7; cursor: default; }
.store-badge div { display: flex; flex-direction: column; }
.store-badge small { font-size: 0.68rem; opacity: 0.6; line-height: 1; text-transform: uppercase; letter-spacing: 0.05em; }
.store-badge strong { font-size: 0.9rem; color: var(--text); }

/* === HERO MOCKUP === */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-mockup-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 5s ease-in-out infinite;
}
.hero-mockup-img {
  width: 100%;
  max-width: 460px;
  border-radius: 24px;
  filter: drop-shadow(0 30px 60px rgba(229,57,53,0.3));
  position: relative;
  z-index: 2;
}
.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(229,57,53,0.25) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
  filter: blur(20px);
}
/* === STATS BAR === */
.stats-bar {
  position: relative; z-index: 1;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.88rem; color: var(--text-muted); margin-top: 4px; }

/* === SHARED SECTIONS === */
section { position: relative; z-index: 1; }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 32px;
  text-align: center;
}
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* === SERVICES GRID === */
.services { background: linear-gradient(180deg, transparent, var(--bg2) 30%, var(--bg2) 70%, transparent); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; text-align: left; }
.service-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), background 0.4s, border-color 0.4s, box-shadow 0.4s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c1, var(--brand)), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-block:hover { transform: translateY(-8px); background: var(--surface-hover); border-color: rgba(255,255,255,0.12); box-shadow: 0 24px 56px rgba(0,0,0,0.4); }
.service-block:hover::before { opacity: 1; }
.service-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  overflow: hidden;
}
.service-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.service-tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c1); margin-bottom: 8px; }
.service-block h3 { font-family: 'Outfit', sans-serif; font-size: 1.35rem; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.service-block > p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; flex-grow: 1; margin-bottom: 16px; }
#svc-partner { --c1: #E53935; --c2: #FF5252; }
#svc-delivery { --c1: #ffffff; --c2: #aaaaaa; }
#svc-taxi { --c1: #555555; --c2: #888888; }
#svc-car-rental { --c1: #1976D2; --c2: #42A5F5; }
.service-cta {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-light);
  text-decoration: none;
  transition: color 0.2s;
}
.service-cta:hover { color: var(--accent); }

/* === PRE-PRODUCTION SECTION === */
.notify-section { padding: 80px 32px; position: relative; z-index: 1; }
.notify-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(229,57,53,0.12), rgba(255,255,255,0.06));
  border: 1px solid rgba(229,57,53,0.25);
  border-radius: 32px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.notify-glow { position: absolute; inset: -80px; background: radial-gradient(ellipse at 50% 50%, rgba(229,57,53,0.2), transparent 65%); pointer-events: none; }
.notify-content { position: relative; z-index: 2; }
.notify-icon { font-size: 2.5rem; margin-bottom: 16px; }
.notify-card h2 { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 900; margin-bottom: 12px; }
.notify-card > .notify-content > p { color: var(--text-muted); font-size: 1rem; margin-bottom: 32px; }

/* Pre-prod options */
.pre-prod-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 24px; }
.pre-prod-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: transform 0.25s, background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.pre-prod-btn:hover { transform: translateY(-4px); background: var(--surface-hover); }
.pp-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
.pp-text { font-size: 0.95rem; font-weight: 600; }
.pp-sub { font-size: 0.78rem; color: var(--text-faint); margin-top: 2px; }
.pre-prod-btn.delivery:hover { border-color: var(--white); box-shadow: 0 8px 24px rgba(255,255,255,0.2); }
.pre-prod-btn.taxi:hover { border-color: var(--accent); box-shadow: 0 8px 24px rgba(255,255,255,0.2); }
.pre-prod-btn.partner:hover { border-color: var(--brand-light); box-shadow: 0 8px 24px rgba(229,57,53,0.2); }
.pre-prod-btn.car-rental:hover { border-color: #1976D2; box-shadow: 0 8px 24px rgba(25,118,210,0.2); }

.lang-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 6px 28px 6px 12px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-left: 15px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='white'%3E%3Cpath d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 6px;
}
.lang-select:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lang-select option {
  background: #222;
  color: #fff;
}

/* RTL Support */
[dir="rtl"] {
  font-family: 'Tajawal', 'Inter', 'Outfit', sans-serif;
}
[dir="rtl"] .nav-icon {
  margin-right: 0;
  margin-left: 4px;
}
[dir="rtl"] .lang-select {
  margin-left: 0;
  margin-right: 15px;
}
[dir="rtl"] .benefit-icon {
  margin-right: 0;
  margin-left: 16px;
}
[dir="rtl"] .service-cta {
  display: inline-block;
}
[dir="rtl"] .form-group input, 
[dir="rtl"] .form-group select {
  text-align: right;
}
[dir="rtl"] .map-instruction {
  text-align: right;
}
[dir="rtl"] .back-link {
  display: inline-block;
}
[dir="rtl"] .nav-mobile a {
  text-align: right;
}
[dir="rtl"] .lang-mobile-bar .lang-select {
  margin-right: 0;
}
/* === FOOTER === */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 48px 32px; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.footer-tagline { font-size: 0.88rem; color: var(--text-faint); max-width: 380px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 28px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding-top: 100px; text-align: center; gap: 48px; }
  .hero-content { max-width: 100%; }
  .cta-group { justify-content: center; }
  .store-badges { justify-content: center; }
  .break-lg { display: none; }
  .hero-visual { order: -1; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .navbar { padding: 14px 20px; }
  .section-inner { padding: 70px 20px; }
  .notify-card { padding: 36px 24px; }
  .form-row { flex-direction: column; }
  .footer-links { gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* ==========================================================================
   I. GLOBAL ENHANCEMENTS
   ========================================================================== */

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(229,57,53,0.5);
}

/* Global Focus Outline */
*:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

/* ==========================================================================
   II. LEGAL PAGES (Privacy, Terms)
   ========================================================================== */

.legal-section {
  padding: 140px 24px 80px;
  min-height: 100vh;
}

.legal-container {
  max-width: 760px;
  margin: 0 auto;
}

.legal-container h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

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

.legal-block h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--brand-light);
}

.legal-block p {
  line-height: 1.7;
  color: var(--text-muted);
}

/* Consent Checkbox */
.consent-group {
  margin: 20px 0;
}

.consent-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
}

.consent-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand);
  flex-shrink: 0;
}

.consent-group a {
  color: var(--brand-light);
  text-decoration: underline;
}

/* Success Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-content {
  background: #111111;
  border: 1px solid rgba(255, 82, 82, 0.35);
  border-radius: 16px;
  padding: 32px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 82, 82, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.modal-title {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-family: 'Outfit', sans-serif;
}
.modal-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 24px;
}
.modal-btn {
  background: var(--brand-light);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.modal-btn:hover {
  background: var(--brand-dark);
}

/* ==========================================================================
   III. ERROR PAGES
   ========================================================================== */

.error-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.error-code {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(229, 57, 53, 0.3);
}

.error-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.error-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #1a1a2e;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-btn {
  background: var(--brand-light);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.cookie-btn:hover {
  background: #c62828;
}


