/* ==========================================================================
   Carneed — Car Care Center — Stylesheet
   Design tokens:
   Colors   : --navy-950 #08021c · --navy-900 #0b033d · --navy-800 #171150
              --black #050507 · --gold #c9a227 · --gold-light #e8cd7a
              --ice #f2f3f8 · --ink #12111c · --white #ffffff
   Type     : Display  → 'Almarai' 800/700   (headlines, numerals-as-labels)
              Body     → 'Tajawal' 400/500/700 (paragraphs, UI)
   Signature: the "shine sweep" — a diagonal light band that travels across
              a dark surface on load/hover, echoing a ceramic-coated panel
              catching the light. Used sparingly: hero underline, card
              borders on hover, and the process ribbon.
   ========================================================================== */

:root {
  --navy-950: #08021c;
  --navy-900: #0b033d;
  --navy-800: #17124f;
  --black: #050507;
  --gold: #c9a227;
  --gold-light: #e8cd7a;
  --ice: #f2f3f8;
  --ice-2: #e8eaf3;
  --ink: #13111d;
  --ink-soft: #4d4b5c;
  --white: #ffffff;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --shadow-soft: 0 10px 40px rgba(8, 2, 28, 0.12);
  --shadow-deep: 0 20px 60px rgba(8, 2, 28, 0.35);

  --font-display: 'Almarai', 'Tajawal', sans-serif;
  --font-body: 'Tajawal', 'Almarai', sans-serif;

  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.8;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.35; }
p { margin: 0; }
section { position: relative; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 92%;
  max-width: var(--container);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy-900);
  font-weight: 800;
}
.section-head p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}
.section-head.on-dark h2 { color: var(--white); }
.section-head.on-dark p { color: rgba(255,255,255,0.72); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn i { font-size: 16px; }
.btn-gold {
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 60%);
  color: var(--navy-950);
  box-shadow: 0 12px 30px rgba(201, 162, 39, 0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(201,162,39,.45); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-800); transform: translateY(-3px); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Shine sweep signature ---------- */
@keyframes shine-sweep {
  0%   { transform: translateX(-130%) skewX(-18deg); }
  100% { transform: translateX(230%) skewX(-18deg); }
}
.shine {
  position: relative;
  overflow: hidden;
}
.shine::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-130%) skewX(-18deg);
  pointer-events: none;
}
.shine:hover::after,
.shine.play-shine::after {
  animation: shine-sweep 1.1s ease;
}

/* ---------- Top bar / nav ---------- */
.topbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 200;
  background: rgba(8, 2, 28, 0.55);
  backdrop-filter: blur(10px);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 14px 0;
}
.topbar.scrolled {
  background: linear-gradient(120deg, var(--navy-900), var(--black) 60%, var(--navy-900));
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  padding: 8px 0;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 40px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-display); color: var(--white); font-size: 17px; }
.brand-text span { color: var(--gold-light); font-size: 11px; letter-spacing: 1px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 15px;
  padding: 9px 16px;
  border-radius: 100px;
  transition: background .25s ease, color .25s ease;
}
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,0.12); color: var(--white); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  background: none; border: none; color: var(--white); font-size: 24px; padding: 6px;
}

@media (max-width: 900px) {
  .nav-links { position: fixed; inset-inline-end: 0; top: 0; height: 100%; width: 78%; max-width: 320px;
    background: linear-gradient(160deg, var(--navy-900), var(--black)); flex-direction: column; align-items: stretch;
    padding: 100px 22px 30px; gap: 6px; transform: translateX(105%); transition: transform .35s ease; box-shadow: -20px 0 50px rgba(0,0,0,.4); }
  html[dir="rtl"] .nav-links { transform: translateX(-105%); }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 14px 16px; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn span.long { display: none; }
}

.nav-scrim {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 190; opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.nav-scrim.show { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-950);
}
.hero video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(201,162,39,0.18), transparent 55%),
    linear-gradient(180deg, rgba(8,2,28,0.55) 0%, rgba(8,2,28,0.78) 55%, rgba(5,5,7,0.95) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 140px 20px 90px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold-light); font-weight: 700; letter-spacing: 1px; font-size: 13px;
  border: 1px solid rgba(232,205,122,0.4); border-radius: 100px; padding: 8px 18px; margin-bottom: 26px;
  background: rgba(255,255,255,0.04);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.hero h1 .accent {
  position: relative;
  display: inline-block;
  color: var(--gold-light);
}
.hero h1 .accent::after {
  content: '';
  position: absolute; right: 0; left: 0; bottom: -6px; height: 5px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  border-radius: 6px;
  background-size: 250% 100%;
  animation: gold-flow 3.4s linear infinite;
}
@keyframes gold-flow { 0% { background-position: 0% 0; } 100% { background-position: -250% 0; } }

.hero p.lead {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  max-width: 620px;
  margin: 0 auto 38px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 900px; margin: 10px auto 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-stats div { text-align: center; padding: 22px 10px; border-inline-start: 1px solid rgba(255,255,255,0.14); }
.hero-stats div:first-child { border-inline-start: none; }
.hero-stats strong { display: block; font-family: var(--font-display); color: var(--gold-light); font-size: clamp(1.3rem, 2.4vw, 1.9rem); font-weight: 800; }
.hero-stats span { color: rgba(255,255,255,0.72); font-size: 13px; }

@media (max-width: 700px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats div { border-inline-start: none; border-top: 1px solid rgba(255,255,255,.14); }
  .hero-stats div:nth-child(-n+2) { border-top: none; }
}

.scroll-cue {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 12px;
}
.scroll-cue .dot { width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.5); border-radius: 20px; position: relative; }
.scroll-cue .dot::after {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--gold-light); border-radius: 4px;
  animation: cue-move 1.8s ease-in-out infinite;
}
@keyframes cue-move { 0%, 100% { top: 6px; opacity: 1;} 60% { top: 20px; opacity: 0.3; } }

/* ---------- Booking form (in-hero card) ---------- */
.booking {
  position: relative;
  margin-top: -70px;
  z-index: 5;
  padding-bottom: 90px;
}
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  padding: 34px clamp(18px, 4vw, 46px);
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 30px;
  align-items: center;
}
.booking-intro h3 { color: var(--navy-900); font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; }
.booking-intro p { color: var(--ink-soft); font-size: 0.98rem; }
.booking-form { display: grid; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field {
  border: 1.5px solid var(--ice-2);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  background: var(--ice);
  color: var(--ink);
  width: 100%;
  transition: border-color .2s ease, background .2s ease;
}
.field:focus { border-color: var(--gold); background: var(--white); outline: none; }
select.field { cursor: pointer; }

@media (max-width: 900px) {
  .booking-card { grid-template-columns: 1fr; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Services ---------- */
.services { padding: 110px 0 90px; background: var(--white); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--ice);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  text-align: center;
  border: 1px solid transparent;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(201,162,39,0.4);
  background: var(--white);
}
.service-icon {
  width: 78px; height: 78px; margin: 0 auto 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--navy-900), var(--black));
  color: var(--gold-light);
  font-size: 30px;
  border: 2px solid rgba(201,162,39,0.35);
  position: relative;
}
.service-card h3 { color: var(--navy-900); font-size: 1.15rem; margin-bottom: 10px; font-weight: 700; }
.service-card p { color: var(--ink-soft); font-size: 0.94rem; }
.service-card .learn { display: inline-flex; gap: 6px; align-items: center; margin-top: 16px; color: var(--gold); font-weight: 700; font-size: 14px; }

@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; } }

/* ---------- About ---------- */
.about { padding: 90px 0; background: var(--ice); overflow: hidden; }
.about .grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); width: 100%; height: 460px; object-fit: cover; }
.about-media::before {
  content: '';
  position: absolute; inset-inline-start: -18px; top: -18px; width: 60%; height: 60%;
  border: 3px solid var(--gold); border-radius: var(--radius-lg); z-index: -1;
}
.badge-float {
  position: absolute; bottom: -22px; inset-inline-end: -22px;
  background: linear-gradient(135deg, var(--navy-900), var(--black));
  color: var(--white); border-radius: var(--radius-md);
  padding: 18px 22px; box-shadow: var(--shadow-deep);
  text-align: center; min-width: 130px;
}
.badge-float strong { display: block; font-family: var(--font-display); color: var(--gold-light); font-size: 1.6rem; }
.badge-float span { font-size: 12px; color: rgba(255,255,255,0.8); }

.about-copy p { color: var(--ink-soft); margin-bottom: 22px; }
.check-list { display: grid; gap: 14px; margin-bottom: 28px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--white); border-radius: var(--radius-sm); padding: 14px 16px;
  box-shadow: 0 4px 18px rgba(8,2,28,0.05);
}
.check-list i { color: var(--gold); font-size: 18px; margin-top: 3px; }
.check-list strong { color: var(--navy-900); }
.check-list span.desc { display: block; color: var(--ink-soft); font-size: 0.92rem; }

@media (max-width: 900px) { .about .grid2 { grid-template-columns: 1fr; } .about-media img { height: 320px; } }

/* ---------- Process / steps ---------- */
.process { padding: 90px 0; background: var(--navy-950); color: var(--white); position: relative; }
.process::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(201,162,39,0.12), transparent 55%);
}
.process .container { position: relative; z-index: 1; }
.process-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center;
}
.process-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-deep); }
.process-media img { width: 100%; display: block; }
.process-steps { display: grid; gap: 22px; }
.process-step { display: flex; gap: 18px; align-items: flex-start; }
.step-index {
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  color: var(--navy-950); background: var(--gold-light);
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.process-step h4 { color: var(--white); margin-bottom: 6px; font-size: 1.05rem; }
.process-step p { color: rgba(255,255,255,0.72); font-size: 0.93rem; }

@media (max-width: 900px) { .process-wrap { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testimonials { padding: 90px 0; background: var(--white); }
.testi-track {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(260px, 32%, 340px);
  background: var(--ice);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  border: 1px solid var(--ice-2);
}
.testi-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--black));
  color: var(--gold-light); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800;
}
.testi-name { font-weight: 700; color: var(--navy-900); display: block; }
.testi-stars { color: var(--gold); font-size: 13px; }
.testi-text { color: var(--ink-soft); font-size: 0.95rem; }
.testi-controls { display: flex; justify-content: center; gap: 12px; margin-top: 26px; }
.testi-controls button {
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--ice-2);
  background: var(--white); color: var(--navy-900); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.testi-controls button:hover { background: var(--navy-900); color: var(--white); }

/* ---------- FAQ ---------- */
.faq { padding: 90px 0; background: var(--ice); }
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 4px 18px rgba(8,2,28,0.05); }
.faq-q {
  width: 100%; text-align: start; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 22px; background: none; border: none; font-weight: 700; color: var(--navy-900); font-size: 1rem;
}
.faq-q i { transition: transform .3s ease; color: var(--gold); flex: none; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Gallery ---------- */
.gallery { padding: 90px 0; background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid .g-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1/1; background: var(--ice); }
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid .g-item:hover img { transform: scale(1.08); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Contact ---------- */
.contact { padding: 90px 0 110px; background: var(--navy-950); color: var(--white); position: relative; overflow: hidden; }
.contact::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 85%, rgba(201,162,39,0.14), transparent 50%);
}
.contact .container { position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 20px; text-align: center;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.contact-item:hover { transform: translateY(-6px); background: rgba(255,255,255,0.09); border-color: rgba(201,162,39,0.5); }
.contact-item .ic {
  width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-950); display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.contact-item strong { display: block; color: var(--white); font-size: 1.02rem; }
.contact-item span { color: rgba(255,255,255,0.65); font-size: 0.85rem; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--black); color: rgba(255,255,255,0.75); padding: 60px 0 26px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 30px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img { height: 40px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); max-width: 300px; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.92rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 10px; margin-top: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-950); }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.45); }

@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; text-align: center; } .footer-brand p { margin: 0 auto; } }

/* ---------- Floating actions ---------- */
.float-actions { position: fixed; bottom: 22px; z-index: 300; display: flex; flex-direction: column; gap: 12px; }
.float-actions.wa { inset-inline-end: 22px; }
.float-actions.call { inset-inline-start: 22px; }
.float-btn {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 24px; box-shadow: var(--shadow-deep);
  animation: pulse-soft 2.6s ease-in-out infinite;
}
.float-btn.wa-btn { background: #1fb855; }
.float-btn.call-btn { background: var(--navy-900); }
@keyframes pulse-soft { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--navy-900); color: var(--white); padding: 14px 24px; border-radius: 100px;
  font-size: 14px; box-shadow: var(--shadow-deep); z-index: 400; opacity: 0; pointer-events: none; transition: all .3s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
