/* ============================================================================
   taxi.css — Copper & Crème design for taxi.kreward.net
   Mobile-first. Palette: copper #b45f37 / cream #faf6ee / ink #181410
   ============================================================================ */

/* ---- CSS variables ---- */
:root {
  /* Palette */
  --copper:       #b45f37;
  --copper-dark:  #8a4426;
  --copper-light: #d47a50;
  --cream:        #faf6ee;
  --cream-dark:   #f2ead8;
  --ink:          #181410;
  --ink-soft:     #3a3328;
  --ink-muted:    rgba(24, 20, 16, 0.55);
  --ink-subtle:   rgba(24, 20, 16, 0.08);
  --ink-border:   rgba(24, 20, 16, 0.12);
  --red-err:      #c0392b;

  /* Shared.css dependencies */
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.4s;

  /* Typography */
  --font-body:    'Outfit', system-ui, -apple-system, sans-serif;
  --font-heading: 'Fraunces', Georgia, serif;

  /* Spacing */
  --gap:  1rem;
  --r:    10px;
  --r-sm: 6px;
  --r-full: 9999px;
}

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100dvh;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(1.5rem, 5vw, 2.25rem); margin-bottom: 0.5em; }
h2 { font-size: clamp(1.2rem, 4vw, 1.7rem);  margin-bottom: 0.4em; }
h3 { font-size: 1.1rem; margin-bottom: 0.35em; }

a { color: var(--copper); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Layout container ---- */
.wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 1.25rem 1rem;
}

@media (min-width: 640px) {
  .wrap { padding: 2rem 1.5rem; }
}

/* ---- Buttons ---- */
.btn-pri,
button[type="submit"],
button:not([class]) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  background: linear-gradient(180deg, var(--copper) 0%, var(--copper-dark) 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.7em 1.4em;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.15s var(--ease), box-shadow 0.15s var(--ease);
  white-space: nowrap;
  min-height: 44px; /* touch target */
}

.btn-pri:hover,
button[type="submit"]:hover,
button:not([class]):hover {
  filter: brightness(1.08);
  box-shadow: 0 4px 16px rgba(180, 95, 55, 0.28);
  text-decoration: none;
}

.btn-pri:active,
button[type="submit"]:active,
button:not([class]):active {
  filter: brightness(0.94);
  box-shadow: none;
}

.btn-sec {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  background: transparent;
  color: var(--copper);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65em 1.3em;
  border: 1.5px solid var(--copper);
  border-radius: var(--r);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
  min-height: 44px;
}

.btn-sec:hover { background: rgba(180, 95, 55, 0.07); text-decoration: none; }

/* ---- Forms ---- */
form { display: flex; flex-direction: column; gap: 0.85rem; }

label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="search"],
input:not([type]),
select,
textarea {
  display: block;
  width: 100%;
  padding: 0.72em 0.9em;
  background: rgba(24, 20, 16, 0.05);
  border: 1.5px solid var(--ink-border);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease), background 0.15s var(--ease);
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
}

input::placeholder,
textarea::placeholder { color: var(--ink-muted); }

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(180, 95, 55, 0.6);
  background: rgba(24, 20, 16, 0.07);
  box-shadow: 0 0 0 4px rgba(180, 95, 55, 0.12);
  outline: none;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 1px;
}

.err {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--red-err);
  background: rgba(192, 57, 43, 0.07);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: var(--r-sm);
  padding: 0.55em 0.8em;
}

/* ---- Open / Closed badge ---- */
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.18em 0.6em;
  border-radius: var(--r-full);
  line-height: 1.4;
  white-space: nowrap;
}
.open-badge::before {
  content: "";
  width: 0.45em;
  height: 0.45em;
  border-radius: 50%;
  background: currentColor;
}
.open-badge--open {
  color: #2e7d32;
  background: rgba(46, 125, 50, 0.12);
}
.open-badge--closed {
  color: var(--ink-muted);
  background: var(--ink-subtle);
}

/* ============================================================
   HERO + signature search module
   ============================================================ */
.home { padding-top: 1.75rem; }

.hero {
  margin-bottom: 1.75rem;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.55rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.5rem;
  max-width: 14ch;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.6vw, 1.12rem);
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 46ch;
  margin-bottom: 1.5rem;
}

.hero .err { margin-bottom: 1rem; }

/* ---- The search card: the hero's focal point ---- */
.search-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--ink-border);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 14px 40px -18px rgba(24, 20, 16, 0.28), 0 2px 8px rgba(24, 20, 16, 0.05);
  overflow: hidden;
}

/* copper top-accent — the one bold accent */
.search-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--copper) 0%, var(--copper-light) 100%);
}

.search-card__row {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.search-card__field {
  flex: 1 1 auto;
  min-width: 0;
}

/* leading pin icon inside the input */
.search-card__icon {
  position: absolute;
  top: 50%;
  left: 0.95rem;
  transform: translateY(-50%);
  display: inline-flex;
  color: var(--copper);
  pointer-events: none;
  z-index: 1;
}

.search-card__input.search-card__input {
  width: 100%;
  min-height: 56px;
  padding: 0.9em 1em 0.9em 2.9rem;
  font-size: 1.06rem;
  font-weight: 500;
  background: #fff;
  border: 1.5px solid var(--ink-border);
  border-radius: var(--r);
}
.search-card__input.search-card__input:focus {
  border-color: var(--copper);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(180, 95, 55, 0.13);
}

.search-card__submit {
  flex-shrink: 0;
  min-height: 56px;
  font-size: 1.02rem;
  padding: 0.7em 1.6em;
}

.search-card__alt {
  display: flex;
}

/* quieter secondary "Autour de moi" */
.search-card__around {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5em 0.2em;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  min-height: 40px;
  transition: color 0.15s var(--ease);
}
.search-card__around:hover { color: var(--copper-dark); }
.search-card__around:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}
.search-card__around svg { color: var(--copper); }

@media (min-width: 560px) {
  .search-card { padding: 1.5rem; }
  .search-card__row {
    flex-direction: row;
    align-items: stretch;
  }
  .search-card__submit span { display: inline; }
}

.search-summary {
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.search-summary strong {
  color: var(--ink);
  font-weight: 600;
}

/* ---- Map frame ---- */
.map-frame {
  margin: 1.25rem 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--ink-border);
  box-shadow: 0 8px 28px -16px rgba(24, 20, 16, 0.25);
}
.map-frame #map {
  height: 360px;
  width: 100%;
}

/* ---- Company list ---- */
.company-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Card container — NOT an <a>, can hold child buttons */
.company-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ink-border);
  border-radius: var(--r);
  box-shadow: 0 1px 4px rgba(24, 20, 16, 0.06);
  overflow: hidden;
  transition: box-shadow 0.15s var(--ease), border-color 0.15s var(--ease), transform 0.12s var(--ease);
}

.company-card:hover {
  border-color: rgba(180, 95, 55, 0.35);
  box-shadow: 0 4px 16px rgba(24, 20, 16, 0.1);
  transform: translateY(-1px);
}

/* Clickable title area — the link part of the card */
.company-card__title-area {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  color: var(--ink);
  text-decoration: none;
}

.company-card__title-area:hover {
  text-decoration: none;
}

/* Contact action buttons row */
.company-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1.1rem 0.75rem;
}

/* Legacy: keep .company-list li a for any remaining list items without .company-card */
.company-list li:not(.company-card) a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--ink-border);
  border-radius: var(--r);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(24, 20, 16, 0.06);
  transition: box-shadow 0.15s var(--ease), border-color 0.15s var(--ease), transform 0.12s var(--ease);
}

.company-list li:not(.company-card) a:hover {
  border-color: rgba(180, 95, 55, 0.35);
  box-shadow: 0 4px 16px rgba(24, 20, 16, 0.1);
  transform: translateY(-1px);
  text-decoration: none;
}

/* leading car icon chip */
.company-list__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(180, 95, 55, 0.09);
  color: var(--copper-dark);
}

.company-list__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1 1 auto;
}

.company-list li a strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.company-list__meta {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

.company-list__country { color: var(--ink-muted); }

/* distance as a small copper pill */
.company-list__dist {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--copper-dark);
  background: rgba(180, 95, 55, 0.1);
  border: 1px solid rgba(180, 95, 55, 0.22);
  border-radius: var(--r-full);
  padding: 0.25em 0.7em;
  white-space: nowrap;
}

.company-list__empty {
  padding: 1rem 0.25rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

/* ---- Booking request cards (.req) ---- */
.req {
  background: #fff;
  border: 1px solid var(--ink-border);
  border-radius: var(--r);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: 0 1px 4px rgba(24, 20, 16, 0.06);
  margin-bottom: 0.6rem;
}

/* New request: a single gentle fade+slide-in — no looping, no blinking */
@keyframes reqAppear {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.req--new {
  animation: reqAppear 0.35s var(--ease) both;
  border-color: rgba(180, 95, 55, 0.3);
  box-shadow: 0 2px 12px rgba(180, 95, 55, 0.12);
}

/* ---- Utility ---- */
.muted { color: var(--ink-muted); font-size: 0.9rem; }

.card {
  background: #fff;
  border: 1px solid var(--ink-border);
  border-radius: var(--r);
  padding: 1.25rem;
  box-shadow: 0 1px 6px rgba(24, 20, 16, 0.07);
}

hr {
  border: none;
  border-top: 1px solid var(--ink-border);
  margin: 1.25rem 0;
}

/* ---- Booking head contact buttons ---- */
.booking-head {
  margin-bottom: 1.5rem;
}

.contact-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5em 1em;
  border-radius: var(--r-full);
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.15s var(--ease), box-shadow 0.15s var(--ease);
  min-height: 36px;
  border: 1.5px solid transparent;
}

.contact-btn--phone {
  background: rgba(180, 95, 55, 0.1);
  color: var(--copper-dark);
  border-color: rgba(180, 95, 55, 0.25);
}

.contact-btn--phone:hover {
  background: rgba(180, 95, 55, 0.18);
  text-decoration: none;
}

.contact-btn--whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #128c3e;
  border-color: rgba(37, 211, 102, 0.3);
}

.contact-btn--whatsapp:hover {
  background: rgba(37, 211, 102, 0.18);
  text-decoration: none;
}

.contact-btn--wechat {
  background: rgba(9, 187, 7, 0.08);
  color: #077d06;
  border-color: rgba(9, 187, 7, 0.22);
}

.contact-btn--wechat:hover {
  background: rgba(9, 187, 7, 0.15);
  text-decoration: none;
}

.contact-btn--sms {
  background: rgba(180, 95, 55, 0.07);
  color: var(--copper-dark);
  border-color: rgba(180, 95, 55, 0.2);
}

.contact-btn--sms:hover {
  background: rgba(180, 95, 55, 0.14);
  text-decoration: none;
}

/* Smaller variant for directory rows */
.contact-btn--sm {
  font-size: 0.8rem;
  padding: 0.35em 0.75em;
  min-height: 30px;
  gap: 0.28em;
}

/* ---- Map popup card (.map-pop) ---- */
.map-pop {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: var(--font-body, system-ui, sans-serif);
  font-size: 0.88rem;
  min-width: 170px;
  max-width: 240px;
  /* no animation/blinking */
}

.map-pop__name {
  font-size: 0.97rem;
  font-weight: 700;
  color: #181410;
  display: block;
}

.map-pop__country {
  font-size: 0.8rem;
  color: rgba(24, 20, 16, 0.55);
  display: block;
}

.map-pop__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.15rem;
}

.map-pop__btn {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.3em 0.7em;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
}

.map-pop__btn--phone {
  background: rgba(180, 95, 55, 0.1);
  color: #8a4426;
  border-color: rgba(180, 95, 55, 0.25);
}

.map-pop__btn--whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #128c3e;
  border-color: rgba(37, 211, 102, 0.28);
}

.map-pop__btn--wechat {
  background: rgba(9, 187, 7, 0.08);
  color: #077d06;
  border-color: rgba(9, 187, 7, 0.2);
}

.map-pop__reserve {
  margin-top: 0.4rem;
}

.map-pop__btn--reserve {
  display: inline-block;
  background: linear-gradient(180deg, #b45f37 0%, #8a4426 100%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.45em 1.1em;
  border-radius: 9999px;
  text-decoration: none;
  border: none;
}

.map-pop__btn--reserve:hover {
  filter: brightness(1.08);
  text-decoration: none;
}

/* ---- Address autocomplete (.ac-menu / .ac-item) ---- */
/* Wrapper must be position:relative — set on .ac-wrap */
.ac-wrap {
  position: relative;
}

.ac-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  z-index: 3000;
  list-style: none;
  margin: 0;
  padding: 0.3rem 0;
  background: #fff;
  border: 1.5px solid rgba(180, 95, 55, 0.35);
  border-radius: var(--r);
  box-shadow: 0 6px 24px rgba(24, 20, 16, 0.12);
  max-height: 260px;
  overflow-y: auto;
  overscroll-behavior: contain;
  /* no animation — no blinking */
}

.ac-menu--open {
  display: block;
}

.ac-item {
  padding: 0.6em 0.9em;
  font-size: 0.9rem;
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 1.4;
  /* XSS-safe: rendered via textContent only */
}

.ac-item:hover,
.ac-item--active {
  background: rgba(180, 95, 55, 0.08);
  color: var(--ink);
}

.ac-item + .ac-item {
  border-top: 1px solid var(--ink-subtle);
}

/* Live distance estimate on the booking form */
.dist-estimate {
  margin: 0.7rem 0 0;
  padding: 0.65em 0.95em;
  background: rgba(180, 95, 55, 0.08);
  border: 1px solid rgba(180, 95, 55, 0.28);
  border-radius: var(--r);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}
.dist-estimate[hidden] { display: none; }

/* ---- Responsive tweaks ---- */
@media (min-width: 640px) {
  .req {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.6rem;
  }
}

/* ---- Site header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 1rem;
  background: rgba(250, 246, 238, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-border);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.site-header__brand img {
  display: block;
  height: 34px;
  width: auto;
}

@media (min-width: 640px) {
  .site-header {
    padding: 0.6rem 1.75rem;
  }
}

/* ---- Header nav ---- */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.site-nav__link {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.45rem 0.4rem;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: color 0.15s var(--ease);
}
.site-nav__link:hover {
  color: var(--copper-dark);
  text-decoration: none;
}
.site-nav__link:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

/* "Connexion" pill — subtle copper outline */
.site-nav__pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--copper-dark);
  padding: 0.42rem 1.05rem;
  border: 1.5px solid rgba(180, 95, 55, 0.35);
  border-radius: var(--r-full);
  background: rgba(180, 95, 55, 0.04);
  white-space: nowrap;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease);
}
.site-nav__pill:hover {
  background: rgba(180, 95, 55, 0.1);
  border-color: var(--copper);
  text-decoration: none;
}
.site-nav__pill:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

/* ---- Site footer ---- */
.site-footer {
  border-top: 1px solid var(--ink-border);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2.5rem;
  background: var(--cream);
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-footer__brand img {
  display: block;
  height: 24px;
  width: auto;
  opacity: 0.75;
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer__link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.15s var(--ease);
}

.site-footer__link:hover {
  color: var(--copper-dark);
  text-decoration: none;
}

.site-footer__copy {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--ink-muted);
}

@media (min-width: 640px) {
  .site-footer {
    flex-direction: row;
    justify-content: space-between;
    padding: 1.25rem 1.75rem;
    margin-top: 3rem;
  }
  .site-footer__links { justify-content: flex-end; }
}

/* On small screens the "register" text link collapses into the hero CTA */
@media (max-width: 639px) {
  .site-nav__register { display: none; }
  .site-nav { gap: 0.4rem; }
}

/* ---- Language switcher ---- */
.lang-switch {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  flex-shrink: 0;
}
.lang-switch__label {
  display: inline-flex;
  align-items: center;
  color: var(--ink-muted);
  line-height: 1;
}
.lang-switch__select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--cream-dark);
  color: var(--ink);
  border: 1px solid var(--ink-border);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.32rem 1.6rem 0.32rem 0.7rem;
  cursor: pointer;
  line-height: 1.2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23b45f37' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  transition: border-color 0.15s var(--ease), background-color 0.15s var(--ease);
}
.lang-switch__select:hover {
  border-color: var(--copper);
}
.lang-switch__select:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

/* ---- Dashboard: mute toggle ---- */
.btn-sound-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  background: transparent;
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5em 0.9em;
  border: 1px solid var(--ink-border);
  border-radius: var(--r);
  cursor: pointer;
  transition: color 0.15s var(--ease), border-color 0.15s var(--ease), background 0.15s var(--ease);
  min-height: 44px;
  white-space: nowrap;
}
.btn-sound-toggle:hover {
  color: var(--copper);
  border-color: rgba(180, 95, 55, 0.4);
  background: rgba(180, 95, 55, 0.04);
  text-decoration: none;
}
.btn-sound-toggle .sound-icon { font-size: 1rem; line-height: 1; }

/* ---- Dashboard: logout as quiet link-button ---- */
.btn-logout {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5em 0.9em;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s var(--ease);
  min-height: 44px;
}
.btn-logout:hover { color: var(--copper); }

/* ---- Company list: price line ---- */
.company-list__price {
  display: block;
  font-size: 0.82rem;
  color: var(--copper-dark);
  margin-top: 0.2em;
  font-weight: 500;
}
.company-list__price strong {
  font-weight: 700;
  color: var(--copper);
}

/* ---- Booking head: price line ---- */
.booking-head__price {
  font-size: 0.88rem;
  color: var(--copper-dark);
  font-weight: 500;
  margin-top: 0.4rem;
  margin-bottom: 0;
}
.booking-head__price strong {
  font-weight: 700;
  color: var(--copper);
}

/* ---- Notices & verification banners (added 2026-06-26) ---- */
.notice {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--copper-dark);
  background: rgba(180, 95, 55, 0.08);
  border: 1px solid rgba(180, 95, 55, 0.22);
  border-radius: var(--r-sm);
  padding: 0.6em 0.85em;
}

.form-note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  background: var(--cream-dark);
  border: 1px solid var(--ink-border);
  border-radius: var(--r-sm);
  padding: 0.7em 0.9em;
  margin: 0.2rem 0 0.4rem;
  line-height: 1.5;
}

.banner {
  border-radius: var(--r);
  padding: 0.9em 1.05em;
  margin-bottom: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.banner strong { font-weight: 700; }
.banner--pending {
  color: var(--copper-dark);
  background: rgba(180, 95, 55, 0.1);
  border: 1px solid rgba(180, 95, 55, 0.28);
}
.banner--rejected {
  color: var(--red-err);
  background: rgba(192, 57, 43, 0.07);
  border: 1px solid rgba(192, 57, 43, 0.25);
}

.pending-card {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}
.pending-card__icon { font-size: 2.4rem; line-height: 1; margin-bottom: 0.6rem; }
.pending-card p { color: var(--ink-soft); line-height: 1.6; }

/* Report ("Signaler") section on the company page */
.report-section { margin-top: 1.5rem; }
.report-details { border-top: 1px solid var(--ink-subtle); padding-top: 1rem; }
.report-toggle { cursor: pointer; color: var(--ink-soft); font-size: 0.9rem; font-weight: 600; list-style: none; }
.report-toggle::-webkit-details-marker { display: none; }
.report-form { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
.report-form textarea { width: 100%; box-sizing: border-box; }
.btn-report { align-self: flex-start; }
.notice-ok { background: rgba(31,122,68,0.1); color: #1f7a44; border: 1px solid rgba(31,122,68,0.3); padding: 0.6rem 0.9rem; border-radius: var(--r); margin-bottom: 0.75rem; }
