/* Carrot Top's Rentals & Recreation */

:root {
  --cream: #f6efdf;
  --cream-2: #efe4cb;
  --white: #fffdf7;
  --green-950: #16211b;
  --green-900: #1c2b23;
  --green-800: #24382d;
  --green-700: #315342;
  --green-100: #dce8de;
  --orange: #c9501c;
  --orange-dark: #a63f12;
  --orange-light: #e8622a;
  --ink: #26291f;
  --ink-soft: #55584d;
  --line: #ded2b8;
  --radius: 14px;
  --shadow: 0 2px 6px rgba(28, 43, 35, 0.08), 0 12px 32px rgba(28, 43, 35, 0.10);
  --shadow-sm: 0 1px 3px rgba(28, 43, 35, 0.10);
  --font: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
}

img { max-width: 100%; display: block; }

a { color: var(--orange-dark); }

h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; color: var(--green-900); }

.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

.section { padding: 72px 0; }

.section-alt { background: var(--cream-2); }

.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 10px;
}

.section h2 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 14px; }

.section-intro { max-width: 640px; color: var(--ink-soft); margin-bottom: 40px; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
  background: transparent;
  color: var(--green-900);
  box-shadow: inset 0 0 0 2px var(--green-800);
}
.btn-outline:hover { background: var(--green-800); color: var(--cream); }

.btn-light { background: var(--cream); color: var(--green-900); }
.btn-light:hover { background: #fff; }

.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-900);
  border-bottom: 3px solid var(--orange);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { height: 62px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover { background: var(--green-800); }
.nav-links a.active { color: #fff; background: var(--green-800); box-shadow: inset 0 -2px 0 var(--orange); }

.nav-links a.nav-cta {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 20px;
  margin-left: 8px;
}
.nav-links a.nav-cta:hover { background: var(--orange-light); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--cream);
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-wrap { gap: 0; }
  .brand img { height: 48px; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--green-900);
    padding: 6px 0 10px;
    border-top: 1px solid var(--green-800);
    border-bottom: 3px solid var(--orange);
    box-shadow: var(--shadow);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    width: 100%;
    min-height: 52px;
    padding: 12px 20px;
    border-radius: 0;
    border-left: 3px solid transparent;
  }
  .nav-links a.active {
    background: var(--green-800);
    box-shadow: none;
    border-left-color: var(--orange);
  }
  .nav-links a.nav-cta {
    width: auto;
    margin: 10px 20px 4px;
    border-left: 0;
    border-radius: 999px;
    justify-content: center;
  }
}

/* Admin header nav: two links, always visible, no hamburger — must not
   turn into the absolute dropdown on mobile. */
@media (max-width: 860px) {
  .nav-links.nav-static {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
    gap: 2px;
  }
  .nav-links.nav-static li { width: auto; }
  .nav-links.nav-static a {
    width: auto;
    min-height: 44px;
    padding: 8px 12px;
    border-left: 0;
    border-radius: 8px;
  }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  color: var(--cream);
  background: var(--green-950);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/img/site-hero.jpg") center 62% / cover no-repeat;
  opacity: 0.45;
}

/* Soft scrim behind the headline so the text pops off the photo. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(100deg,
    rgba(22, 33, 27, 0.92) 0%,
    rgba(22, 33, 27, 0.72) 34%,
    rgba(22, 33, 27, 0.35) 58%,
    rgba(22, 33, 27, 0) 75%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 110px 20px 90px;
}

@media (max-width: 860px) {
  .hero-inner { padding-top: 48px; padding-bottom: 64px; }
}

.hero h1 {
  color: #fff;
  font-size: clamp(34px, 6vw, 58px);
  max-width: 15ch;
  margin-bottom: 18px;
}

.hero p { max-width: 52ch; font-size: 18px; margin-bottom: 30px; color: #f0e9d8; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 26px; }

.hero-badge { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; }
.hero-badge svg { color: var(--orange-light); flex-shrink: 0; }

/* ---------- cards / grids ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card-body { padding: 22px; }
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 15px; }

.unit-card img { height: 220px; width: 100%; object-fit: cover; }

.unit-card .card-body { display: flex; flex-direction: column; gap: 12px; }

.unit-meta { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
}

.price-line { display: flex; align-items: baseline; gap: 6px; }
.price-line strong { font-size: 26px; color: var(--green-900); }
.price-line span { color: var(--ink-soft); font-size: 14px; }

.feature-list { list-style: none; display: grid; gap: 8px; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); }
.feature-list svg { color: var(--orange); flex-shrink: 0; margin-top: 4px; }

/* ---------- steps ---------- */

.steps { counter-reset: step; }

.step { position: relative; padding: 26px 22px 22px; }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 14px;
}

/* ---------- reviews ---------- */

.review-card { padding: 24px; display: flex; flex-direction: column; gap: 12px; }

.stars { display: inline-flex; gap: 2px; color: var(--orange); }

.review-card blockquote { font-size: 16px; color: var(--ink); }
.review-card cite { font-style: normal; font-weight: 700; color: var(--green-800); }

/* ---------- forms ---------- */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }

.field label { font-weight: 600; font-size: 14px; color: var(--green-900); }
.field label .req { color: var(--orange-dark); }

.field input, .field select, .field textarea {
  font-family: var(--font);
  font-size: 16px;
  padding: 12px 14px;
  min-height: 48px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
}

.field textarea { min-height: 120px; resize: vertical; }

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green-700);
}

.field .hint { font-size: 13px; color: var(--ink-soft); }

.form-error {
  display: none;
  background: #fbe9e2;
  border: 1.5px solid #d9663a;
  color: #8a2f0d;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.form-error.show { display: block; }

.form-success {
  display: none;
  background: var(--green-100);
  border: 1.5px solid var(--green-700);
  color: var(--green-800);
  border-radius: 10px;
  padding: 16px 20px;
  font-weight: 600;
  margin-bottom: 16px;
}
.form-success.show { display: block; }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- contact / footer ---------- */

.contact-info { display: grid; gap: 18px; }

.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-row svg { color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.contact-row strong { display: block; color: var(--green-900); }
.contact-row a { color: var(--ink); text-decoration: none; font-weight: 600; }
.contact-row a:hover { color: var(--orange-dark); }

.site-footer {
  background: var(--green-950);
  color: #cfd8cd;
  padding: 48px 0 28px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 34px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 { color: var(--cream); margin-bottom: 12px; font-size: 15px; text-transform: uppercase; letter-spacing: 0.1em; }
.site-footer ul { list-style: none; display: grid; gap: 8px; }
.site-footer a { color: #cfd8cd; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer img { height: 54px; margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid #2c3f33; padding-top: 20px; font-size: 14px; color: #93a396; }

/* ---------- page hero (interior pages) ---------- */

.page-hero { background: var(--green-900); color: var(--cream); padding: 56px 0; }
.page-hero h1 { color: #fff; font-size: clamp(28px, 5vw, 42px); }
.page-hero p { color: #d9dfd2; max-width: 60ch; margin-top: 10px; }

/* ---------- booking ---------- */

.book-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 900px) { .book-layout { grid-template-columns: 1fr; } }

.unit-pick { display: grid; gap: 12px; }

.unit-option {
  display: flex;
  gap: 14px;
  align-items: center;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 10px;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.unit-option img { width: 92px; height: 68px; object-fit: cover; border-radius: 8px; }
.unit-option input { position: absolute; opacity: 0; }
.unit-option.selected { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(201, 80, 28, 0.15); }
.unit-option .uo-name { font-weight: 700; color: var(--green-900); }
.unit-option .uo-price { font-size: 14px; color: var(--ink-soft); }

.quote-box { position: sticky; top: 90px; }
.quote-box .card-body { display: grid; gap: 10px; }
.quote-line { display: flex; justify-content: space-between; gap: 12px; font-size: 15px; color: var(--ink-soft); }
.quote-line.total { border-top: 2px solid var(--line); padding-top: 10px; font-weight: 800; font-size: 18px; color: var(--green-900); }
.quote-note { font-size: 13px; color: var(--ink-soft); }

.addon-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 2px dashed var(--orange);
  background: #faf3e6;
  border-radius: 12px;
  padding: 14px 16px;
}
.addon-box input { width: 22px; height: 22px; margin-top: 3px; accent-color: var(--orange); }
.addon-box label { font-weight: 600; cursor: pointer; }
.addon-box .hint { display: block; font-size: 13px; color: var(--ink-soft); font-weight: 400; }

/* ---------- fleet detail + gallery ---------- */

.unit-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch;
}
@media (max-width: 860px) { .unit-detail-grid { grid-template-columns: 1fr; } }

.unit-gallery { display: flex; flex-direction: column; background: var(--green-950); }

.unit-hero {
  position: relative;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--green-950);
  display: block;
  width: 100%;
  flex: 1 1 auto;
  min-height: 300px;
}
.unit-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gallery-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(22, 33, 27, 0.82);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}

.thumb-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 4px;
  padding: 4px;
  margin-top: auto;
}

.thumb {
  border: 0;
  padding: 0;
  cursor: pointer;
  background: none;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.2s ease, opacity 0.2s ease; opacity: 0.85; }
.thumb:hover img { transform: scale(1.06); opacity: 1; }
.thumb:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.thumb.selected { outline: 2px solid var(--orange); outline-offset: -2px; }
.thumb.selected img { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(16, 24, 19, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }

.lb-img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lb-close, .lb-nav {
  position: absolute;
  background: rgba(246, 239, 223, 0.14);
  color: #fff;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.lb-close:hover, .lb-nav:hover { background: var(--orange); }

.lb-close { top: 20px; right: 20px; width: 48px; height: 48px; font-size: 30px; line-height: 1; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 34px; line-height: 1; }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }

.lb-count {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-weight: 600;
  font-size: 14px;
  background: rgba(22, 33, 27, 0.7);
  padding: 5px 14px;
  border-radius: 999px;
}

@media (max-width: 600px) {
  .lb-nav { width: 44px; height: 44px; font-size: 28px; }
  .lb-close { top: 12px; right: 12px; }
}

/* ---------- terms ---------- */

.terms-body { max-width: 780px; }
.terms-body h2 { font-size: 24px; margin: 40px 0 12px; }
.terms-body h3 { font-size: 18px; margin: 24px 0 8px; }
.terms-body p, .terms-body li { color: var(--ink-soft); }
.terms-body ul { padding-left: 22px; margin: 8px 0; }

/* ---------- admin ---------- */

.admin-bar { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; }

.tab-btn {
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid var(--green-800);
  background: transparent;
  color: var(--green-900);
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}
.tab-btn.active { background: var(--green-800); color: var(--cream); }
.tab-btn .badge {
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  padding: 1px 8px;
  margin-left: 6px;
}

.table-wrap { overflow-x: auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }

table.admin { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 720px; }
table.admin th {
  text-align: left;
  background: var(--green-900);
  color: var(--cream);
  padding: 10px 14px;
  font-weight: 600;
  white-space: nowrap;
}
table.admin td { padding: 10px 14px; border-top: 1px solid var(--line); vertical-align: top; }
table.admin tr:hover td { background: #faf6ea; }

.status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.status.pending { background: #fdf0d4; color: #8a6410; }
.status.confirmed { background: var(--green-100); color: var(--green-800); }
.status.declined, .status.cancelled { background: #f4dcd2; color: #8a2f0d; }
.status.completed { background: #dde4f0; color: #2c4370; }

.mini-btn {
  min-height: 34px;
  padding: 5px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--green-800);
  background: var(--white);
  color: var(--green-900);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin: 2px 4px 2px 0;
}
.mini-btn:hover { background: var(--green-100); }
.mini-btn.danger { border-color: #b34a24; color: #8a2f0d; }
.mini-btn.danger:hover { background: #f8e6dd; }

.chip-paid { background: var(--green-100); color: #1f4a33; font-weight: 700; }

/* ---------- admin calendar ---------- */

.cal-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.cal-head strong { font-size: 18px; min-width: 150px; text-align: center; }
.cal-legend { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-left: auto; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-soft); text-align: center; padding: 4px 0;
}
.cal-day {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 88px;
  padding: 6px;
  overflow: hidden;
}
.cal-day.out { background: transparent; border-color: transparent; }
.cal-day.today { border-color: var(--orange); box-shadow: inset 0 0 0 1px var(--orange); }
.cal-num { font-weight: 700; color: var(--ink-soft); font-size: 12px; }
.cal-day.today .cal-num { color: var(--orange-dark); }
.cal-chip {
  display: block;
  margin-top: 4px;
  padding: 1px 6px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
}
.cal-chip.pending { background: #fdf0d4; color: #8a6410; }
.cal-chip.confirmed { background: var(--green-100); color: var(--green-800); }
.cal-legend .cal-chip { display: inline-block; margin-top: 0; }

@media (max-width: 900px) {
  .cal-grid { gap: 2px; }
  .cal-day { min-height: 64px; padding: 4px; border-radius: 6px; }
  .cal-chip { font-size: 10px; padding: 1px 4px; }
}

.admin-login { max-width: 420px; margin: 80px auto; }

@media (max-width: 700px) {
  .admin-login { margin: 40px auto; }
  .admin-bar { gap: 8px; }
  .tab-btn { padding: 8px 14px; font-size: 14px; }
  table.admin { min-width: 620px; font-size: 13px; }
  table.admin th, table.admin td { padding: 8px 10px; }
}

.inline-input {
  width: 90px;
  padding: 8px 10px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
}

/* ---------- admin: unit photo editor ---------- */

.photo-grid { display: flex; flex-wrap: wrap; gap: 12px; }

.photo-tile {
  position: relative;
  width: 120px;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--line);
  background: var(--cream-2);
}
.photo-tile img { width: 100%; height: 100%; object-fit: cover; }

.photo-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  background: rgba(22, 33, 27, 0.78);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.photo-remove:hover { background: var(--orange); }

.photo-tile .photo-featured {
  position: absolute;
  bottom: 4px;
  left: 4px;
  background: var(--orange);
  color: #fff;
}

.photo-tile .photo-make {
  position: absolute;
  bottom: 4px;
  left: 4px;
  min-height: 0;
  padding: 3px 8px;
  font-size: 11px;
  margin: 0;
  background: rgba(255, 253, 247, 0.92);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
