/* A2Z Car Hire — Enjoy Travel landing + search */
:root {
  --ch-navy: #0b1b2b;
  --ch-navy-2: #132536;
  --ch-ink: #0f172a;
  --ch-muted: #64748b;
  --ch-line: #e2e8f0;
  --ch-green: #2f9e44;
  --ch-green-hover: #278a3a;
  --ch-accent: #e85d4c;
  --ch-panel: #1a2a3a;
}

.a2z-ch-hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  overflow: visible;
}
.a2z-ch-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1800&q=80') center 40% / cover no-repeat;
  transform: scale(1.02);
  animation: a2z-ch-ken 18s ease-in-out infinite alternate;
}
.a2z-ch-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 18, 30, 0.35) 0%, rgba(8, 18, 30, 0.2) 45%, rgba(8, 18, 30, 0.72) 100%);
}
.a2z-ch-hero__inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 28px;
  text-align: left;
  max-width: 920px;
}
.a2z-ch-hero h1 {
  margin: 0 0 10px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.a2z-ch-hero__sub {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  opacity: 0.95;
}
.a2z-ch-hero__search {
  position: relative;
  z-index: 2;
  background: var(--ch-panel);
  padding: 18px 0 14px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.25);
  overflow: visible;
}
.a2z-ch-field--loc {
  z-index: 5;
  overflow: visible;
}
.a2z-ch-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 80;
  background: #fff;
  color: var(--ch-ink);
  border: 1px solid var(--ch-line);
  border-radius: 8px;
  max-height: 320px;
  overflow: auto;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
}

@keyframes a2z-ch-ken {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

.a2z-ch-search {
  color: #fff;
}
.a2z-ch-search__row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}
.a2z-ch-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  position: relative;
}
.a2z-ch-search [hidden],
.a2z-ch-field[hidden],
.a2z-ch-opt[hidden],
.a2z-ch-suggest[hidden] {
  display: none !important;
}
.a2z-ch-field > span:first-child,
.a2z-ch-field label > span:first-child {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.a2z-ch-field__control,
.a2z-ch-datetime {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ch-ink);
  border-radius: 4px;
  min-height: 46px;
  padding: 0 10px;
}
.a2z-ch-field__icon { color: #94a3b8; display: inline-flex; flex-shrink: 0; }
.a2z-ch-field__control input,
.a2z-ch-datetime input[type="date"],
.a2z-ch-datetime select,
.a2z-ch-opt--age input,
.a2z-ch-opt--discount input,
.a2z-ch-opt--residence select {
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  width: 100%;
  min-width: 0;
}
.a2z-ch-field__control input { padding: 10px 4px; }
.a2z-ch-datetime {
  padding: 0;
  overflow: hidden;
}
.a2z-ch-datetime__date {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  padding: 0 10px;
  border-right: 1px solid #e2e8f0;
  cursor: pointer;
}
.a2z-ch-datetime__date input[type="date"] {
  position: absolute;
  inset: 0;
  opacity: 0.011;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  z-index: 2;
  color-scheme: light;
}
.a2z-ch-datetime__pretty {
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}
.a2z-ch-datetime select {
  width: auto;
  min-width: 78px;
  padding: 12px 28px 12px 10px;
  font-weight: 600;
  appearance: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23e85d4c' d='M6 8 0 0h12z'/%3E%3C/svg%3E")
    right 10px center / 10px no-repeat;
}
.a2z-ch-field--dropoff {
  margin-top: 12px;
  max-width: 420px;
}
.a2z-ch-field--dropoff label { display: flex; flex-direction: column; gap: 6px; }

.a2z-ch-search__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  background: var(--ch-green);
  color: #fff;
  min-height: 46px;
  padding: 0 28px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
}
.a2z-ch-search__btn:hover { background: var(--ch-green-hover); color: #fff; }

.a2z-ch-search__opts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  margin-top: 12px;
}
.a2z-ch-opt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
}
.a2z-ch-opt input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--ch-accent);
  flex-shrink: 0;
}
.a2z-ch-opt--age input,
.a2z-ch-opt--discount input {
  width: 88px;
  background: #fff;
  color: var(--ch-ink);
  border-radius: 4px;
  padding: 6px 8px;
}
.a2z-ch-opt--residence select {
  width: auto;
  min-width: 64px;
  background: #fff;
  color: var(--ch-ink);
  border-radius: 4px;
  padding: 4px 8px;
  font-weight: 700;
}

.a2z-ch-suggest__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 12px 14px;
  cursor: pointer;
  font: inherit;
  border-bottom: 1px solid #f1f5f9;
}
.a2z-ch-suggest__item:hover,
.a2z-ch-suggest__item.is-active { background: #f8fafc; }
.a2z-ch-suggest__icon { color: var(--ch-accent); margin-top: 2px; flex-shrink: 0; }
.a2z-ch-suggest__icon--air { color: var(--ch-accent); }
.a2z-ch-suggest__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.a2z-ch-suggest__text strong { font-weight: 700; font-size: 14px; }
.a2z-ch-suggest__text em { font-style: normal; color: var(--ch-muted); font-size: 13px; }
.a2z-ch-suggest__empty { padding: 12px 14px; color: var(--ch-muted); }

.a2z-ch-note { margin: 10px 0 0; font-size: 13px; color: rgba(255,255,255,0.85); }

.a2z-ch-trust { background: #fff; padding: 18px 0; border-bottom: 1px solid var(--ch-line); }
.a2z-ch-trust__card {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  color: var(--ch-ink);
  text-decoration: none;
  font-size: 13px;
}
.a2z-ch-trust__card strong { font-size: 1.15rem; }
.a2z-ch-trust__card:hover { color: var(--ch-ink); }

.a2z-ch-about {
  background: var(--ch-navy);
  color: #fff;
  padding: 56px 0 64px;
  text-align: center;
}
.a2z-ch-about__icon { color: rgba(255,255,255,0.92); margin-bottom: 10px; }
.a2z-ch-about h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
}
.a2z-ch-rule {
  width: 56px;
  height: 2px;
  margin: 0 auto 22px;
  background: rgba(255,255,255,0.75);
  border: 0;
}
.a2z-ch-rule--dark { background: var(--ch-ink); }
.a2z-ch-about p {
  margin: 0 auto 22px;
  max-width: 920px;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
  font-size: 1.02rem;
}
.a2z-ch-suppliers {
  list-style: none;
  margin: 8px auto 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  max-width: 980px;
}
.a2z-ch-suppliers__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 6px;
  background: #fff;
  color: #111;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.a2z-ch-suppliers__item--alamo { color: #003da5; }
.a2z-ch-suppliers__item--enterprise { color: #2b8a3e; }
.a2z-ch-suppliers__item--europcar { color: #0b7a3e; }
.a2z-ch-suppliers__item--hertz { color: #ffd100; background: #1a1a1a; }
.a2z-ch-suppliers__item--greenmotion { color: #1b7a3c; }
.a2z-ch-suppliers__item--avis { color: #d4002a; }
.a2z-ch-suppliers__item--sixt { color: #ff5f00; }
.a2z-ch-suppliers__item--drivalia { color: #111; }
.a2z-ch-suppliers__item--keddy { color: #5b2d8e; }

.a2z-ch-dest { padding: 56px 0 64px; }
.a2z-ch-dest--cities { background: var(--ch-navy-2); color: #fff; }
.a2z-ch-dest--cities h2,
.a2z-ch-dest--cities .a2z-ch-rule {
  color: #fff !important;
}
.a2z-ch-dest--countries { background: #f4f7fb; color: var(--ch-ink); }
.a2z-ch-dest h2 {
  margin: 0 0 12px;
  text-align: center;
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  font-weight: 800;
  color: inherit;
}
.a2z-ch-dest__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.a2z-ch-dest__card {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 14px 28px rgba(8, 18, 30, 0.22);
  transform: translateZ(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.a2z-ch-dest__card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 36px rgba(8, 18, 30, 0.3);
  color: #fff;
}
.a2z-ch-dest__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.a2z-ch-dest__card:hover img { transform: scale(1.06); }
.a2z-ch-dest__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 18, 30, 0.78) 100%);
}
.a2z-ch-dest__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 14px;
  text-align: center;
}
.a2z-ch-dest__kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 4px;
}
.a2z-ch-dest__name {
  display: block;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 800;
}

/* Results summary + deal cards */
.a2z-ch--results { background: #f5f7fa; }
.a2z-ch-summary {
  background: #fff;
  border-bottom: 1px solid var(--ch-line);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}
.a2z-ch-summary__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
}
.a2z-ch-summary__search {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 120px;
}
.a2z-ch-summary__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e85d4c;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.a2z-ch-summary__count {
  color: #e11d48;
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
}
.a2z-ch-summary__trip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.a2z-ch-summary__trip span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ch-muted);
}
.a2z-ch-summary__trip strong {
  display: block;
  margin-top: 2px;
  font-size: 0.98rem;
  color: var(--ch-ink);
}
.a2z-ch-summary__trip em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  color: var(--ch-muted);
  font-size: 0.9rem;
}
.a2z-ch-summary__edit {
  border: 0;
  border-radius: 999px;
  background: var(--ch-green);
  color: #fff;
  font-weight: 800;
  padding: 10px 22px;
  cursor: pointer;
}
.a2z-ch-summary__edit:hover { background: var(--ch-green-hover); }
.a2z-ch-summary__editor {
  background: var(--ch-panel);
  padding: 14px 0 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.a2z-ch-cats {
  background: #fff;
  border-bottom: 1px solid var(--ch-line);
  padding: 14px 0;
}
.a2z-ch-cats__row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.a2z-ch-cats__item {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  border: 1px solid var(--ch-line);
  border-radius: 10px;
  background: #fff;
  padding: 8px 12px 8px 8px;
  cursor: pointer;
  text-align: left;
  min-width: 190px;
}
.a2z-ch-cats__item.is-on,
.a2z-ch-cats__item:hover { border-color: var(--ch-green); box-shadow: 0 0 0 1px var(--ch-green); }
.a2z-ch-cats__item img,
.a2z-ch-cats__ph {
  grid-row: 1 / span 2;
  width: 72px;
  height: 48px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 6px;
}
.a2z-ch-cats__item strong { font-size: 0.95rem; color: var(--ch-ink); }
.a2z-ch-cats__item span { font-size: 0.82rem; color: var(--ch-muted); }

.a2z-ch-layout--split {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 22px;
  padding: 22px 0 56px;
  align-items: start;
}
.a2z-ch-filters {
  background: #fff;
  border: 1px solid var(--ch-line);
  border-radius: 12px;
  padding: 14px;
  position: sticky;
  top: 88px;
}
.a2z-ch-filters__map {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--ch-line);
  border-radius: 8px;
  background: #f8fafc;
  padding: 10px 12px;
  font-weight: 700;
  color: var(--ch-ink);
  margin-bottom: 12px;
  cursor: not-allowed;
  opacity: 0.7;
}
.a2z-ch-filters__sort {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ch-muted);
  margin-bottom: 14px;
}
.a2z-ch-filters__sort select {
  border: 1px solid var(--ch-line);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--ch-ink);
}
.a2z-ch-filters__block h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 0.95rem;
}
.a2z-ch-filters__group { margin-bottom: 14px; }
.a2z-ch-filters__group h4 {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ch-muted);
}
.a2z-ch-filters__group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 0.92rem;
  color: var(--ch-ink);
  cursor: pointer;
}
.a2z-ch-filters__ico { width: 1.1em; text-align: center; }

.a2z-ch-deals { display: grid; gap: 16px; }
.a2z-ch-deals__empty {
  background: #fff;
  border: 1px dashed var(--ch-line);
  border-radius: 12px;
  padding: 24px;
  color: var(--ch-muted);
  text-align: center;
}
.a2z-ch-deal {
  background: #fff;
  border: 1px solid var(--ch-line);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}
.a2z-ch-deal__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.a2z-ch-deal__top h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ch-ink);
}
.a2z-ch-deal__top h2 span {
  display: inline;
  font-weight: 600;
  color: var(--ch-muted);
  font-size: 0.95rem;
}
.a2z-ch-deal__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #64748b;
  font-size: 0.9rem;
}
.a2z-ch-deal__specs li { display: inline-flex; align-items: center; gap: 5px; }
.a2z-ch-deal__badges { text-align: right; min-width: 150px; }
.a2z-ch-deal__badge {
  display: inline-block;
  background: #e7f8ec;
  color: #1b7a3c;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}
.a2z-ch-deal__was {
  margin: 0;
  color: #e11d48;
  font-size: 0.9rem;
  font-weight: 700;
}
.a2z-ch-deal__was s { text-decoration: line-through; }
.a2z-ch-deal__disc {
  margin: 2px 0 0;
  color: #e11d48;
  font-size: 0.88rem;
  font-weight: 700;
}
.a2z-ch-deal__body {
  display: grid;
  grid-template-columns: 200px minmax(0, 1.2fr) 200px;
  gap: 18px;
  align-items: center;
}
.a2z-ch-deal__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.a2z-ch-deal__media img:first-child {
  width: 100%;
  max-height: 130px;
  object-fit: contain;
}
.a2z-ch-deal__supplier {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ch-muted);
  font-size: 0.85rem;
}
.a2z-ch-deal__supplier img { max-height: 24px; width: auto; }
.a2z-ch-deal__includes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
}
.a2z-ch-deal__includes li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--ch-ink);
}
.a2z-ch-deal__includes svg { flex-shrink: 0; margin-top: 2px; }
.a2z-ch-deal__price {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  gap: 4px;
}
.a2z-ch-deal__price > span { color: var(--ch-muted); font-size: 0.88rem; }
.a2z-ch-deal__price strong {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--ch-ink);
  line-height: 1.1;
}
.a2z-ch-deal__price em {
  font-style: normal;
  color: var(--ch-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.a2z-ch-deal__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ch-green);
  color: #fff !important;
  text-decoration: none;
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 800;
}
.a2z-ch-deal__cta:hover { background: var(--ch-green-hover); }
.a2z-ch-deal__info {
  margin-top: 8px;
  border: 0;
  background: transparent;
  color: #2563eb;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.a2z-ch-deal__info:hover { text-decoration: underline; }

.a2z-ch-modal[hidden] { display: none !important; }
.a2z-ch-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}
.a2z-ch-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}
.a2z-ch-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(86vh, 820px);
  overflow: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  padding: 22px 22px 26px;
}
.a2z-ch-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
}
.a2z-ch-modal__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-right: 28px;
  margin-bottom: 16px;
}
.a2z-ch-modal__head h2 { margin: 0; font-size: 1.35rem; }
.a2z-ch-modal__head p { margin: 4px 0 0; color: var(--ch-muted); }
.a2z-ch-modal__supplier {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ch-ink);
}
.a2z-ch-modal__section { border-top: 1px solid var(--ch-line); padding: 14px 0; }
.a2z-ch-modal__section h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}
.a2z-ch-modal__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 12px;
}
.a2z-ch-modal__row strong { display: block; }
.a2z-ch-modal__row span { color: var(--ch-muted); font-size: 0.92rem; }
.a2z-ch-modal__docs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.a2z-ch-modal__docs li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.95rem;
}
.a2z-ch-modal__docs li::before {
  content: "✓";
  color: #e85d4c;
  font-weight: 800;
}
.a2z-ch-modal__loading { color: var(--ch-muted); }

.a2z-ch-alert {
  background: #fef2f2; color: #991b1b; border: 1px solid #fecaca;
  border-radius: 12px; padding: 14px 16px; margin: 18px 0;
}
.a2z-ch-alert--ok { background: #ecfdf5; color: #065f46; border-color: #a7f3d0; }
.a2z-ch-card__btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 10px; background: var(--ch-green); color: #fff;
  padding: 12px 18px; font-weight: 700; text-decoration: none; cursor: pointer;
}
.a2z-ch-card__btn:hover { filter: brightness(1.05); color: #fff; }
.a2z-ch-co {
  display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 24px; padding: 32px 0 48px;
}
.a2z-ch-co__side, .a2z-ch-co__main {
  background: #fff; border: 1px solid var(--ch-line); border-radius: 14px; padding: 22px;
}
.a2z-ch-form__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 16px 0 18px;
}
.a2z-ch-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; }
.a2z-ch-form input, .a2z-ch-form select {
  border: 1px solid #cbd5e1; border-radius: 10px; padding: 11px 12px; font: inherit; background: #fff;
}
.a2z-ch-co__total { font-size: 28px; font-weight: 700; margin-top: 16px; }
.a2z-ch-table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.a2z-ch-table th, .a2z-ch-table td { border-bottom: 1px solid var(--ch-line); padding: 10px 8px; text-align: left; }
.a2z-ch-table th { width: 160px; color: var(--ch-muted); font-weight: 600; }
.a2z-ch-btn-danger {
  border: 0; background: #b91c1c; color: #fff; border-radius: 10px; padding: 11px 16px; font-weight: 700; cursor: pointer;
}
.a2z-ch--confirm, .a2z-ch--manage, .a2z-ch--checkout { padding-bottom: 48px; }

@media (max-width: 980px) {
  .a2z-ch-search__row,
  .a2z-ch-dest__grid,
  .a2z-ch-form__grid,
  .a2z-ch-co,
  .a2z-ch-summary__inner,
  .a2z-ch-layout--split,
  .a2z-ch-deal__body { grid-template-columns: 1fr 1fr; }
  .a2z-ch-search__btn { grid-column: 1 / -1; }
  .a2z-ch-hero__inner { padding-top: 48px; }
  .a2z-ch-filters { position: static; }
  .a2z-ch-summary__inner { grid-template-columns: 1fr; }
  .a2z-ch-deal__includes { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .a2z-ch-search__row,
  .a2z-ch-dest__grid,
  .a2z-ch-summary__trip,
  .a2z-ch-layout--split,
  .a2z-ch-deal__body,
  .a2z-ch-deal__top { grid-template-columns: 1fr; }
  .a2z-ch-deal__badges { text-align: left; }
  .a2z-ch-hero { min-height: 520px; }
}

/* Calm "no results / service unavailable" state */
.a2z-ch-state {
  max-width: 560px;
  margin: 32px auto;
  padding: 36px 28px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--ch-line);
  border-radius: 14px;
}
.a2z-ch-state svg { color: var(--ch-muted); }
.a2z-ch-state h2 {
  margin: 14px 0 6px;
  font-size: 1.2rem;
  color: var(--ch-ink);
}
.a2z-ch-state p {
  margin: 0 auto 20px;
  max-width: 42ch;
  color: var(--ch-muted);
  line-height: 1.5;
}
.a2z-ch-state__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.a2z-ch-state__link {
  color: var(--ch-muted);
  text-decoration: underline;
  font-weight: 600;
}
.a2z-ch-note-inline {
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #f1f5f9;
  color: var(--ch-muted);
  font-size: 0.9rem;
}

/* Lazy-load "show more" control on the results list */
.a2z-ch-more {
  display: flex;
  justify-content: center;
  padding: 20px 0 4px;
}
.a2z-ch-more[hidden] { display: none; }
.a2z-ch-more__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--ch-line);
  background: #fff;
  color: var(--ch-ink);
  font: inherit;
  font-weight: 700;
  border-radius: 10px;
  padding: 12px 24px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.a2z-ch-more__btn:hover { border-color: var(--ch-green); color: var(--ch-green); }
.a2z-ch-more__btn:disabled { opacity: 0.6; cursor: default; }
.a2z-ch-more__spinner {
  width: 15px;
  height: 15px;
  border: 2px solid var(--ch-line);
  border-top-color: var(--ch-green);
  border-radius: 50%;
  display: none;
}
.a2z-ch-more.is-loading .a2z-ch-more__spinner {
  display: inline-block;
  animation: a2z-ch-spin 0.7s linear infinite;
}
@keyframes a2z-ch-spin { to { transform: rotate(360deg); } }

/* --- Checkout: payment options, protection & extras --- */
.a2z-ch--checkout .a2z-ch-note { color: rgba(255,255,255,0.85); }
.a2z-ch--checkout .a2z-ch-note--dark { color: var(--ch-muted); }
.a2z-ch--checkout .a2z-ch-co__main .a2z-ch-note { color: var(--ch-muted); }
.a2z-ch-co__h {
  font-size: 18px; font-weight: 700; color: var(--ch-ink);
  margin: 26px 0 12px; padding-top: 20px; border-top: 1px solid var(--ch-line);
}
.a2z-ch-co__main > h1 { margin: 0 0 4px; font-size: 24px; }
.a2z-ch-co__main > h2.a2z-ch-co__h:first-of-type { border-top: 0; padding-top: 0; margin-top: 18px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.a2z-ch-extras { display: flex; flex-direction: column; gap: 10px; }
.a2z-ch-extra {
  display: flex; gap: 14px; align-items: flex-start;
  border: 1px solid var(--ch-line); border-radius: 12px; padding: 14px;
}
.a2z-ch-extra.is-added { border-color: var(--ch-green); background: #f4fbf5; }
.a2z-ch-extra__info { flex: 1; min-width: 0; }
.a2z-ch-extra__info strong { display: block; color: var(--ch-ink); font-size: 15px; }
.a2z-ch-extra__info p { margin: 4px 0 0; font-size: 12px; color: var(--ch-muted); line-height: 1.5; }
.a2z-ch-extra__cover { font-weight: 600; color: var(--ch-ink) !important; }
.a2z-ch-extra__act { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }
.a2z-ch-extra__price { font-weight: 700; color: var(--ch-ink); font-size: 15px; text-align: right; }
.a2z-ch-extra__price em { display: block; font-style: normal; font-weight: 500; font-size: 11px; color: var(--ch-muted); }
.a2z-ch-extra__toggle { position: relative; cursor: pointer; }
.a2z-ch-extra__toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.a2z-ch-extra__toggle > span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 84px; padding: 8px 14px; border-radius: 8px;
  background: var(--ch-green); color: #fff; font-weight: 700; font-size: 13px;
}
.a2z-ch-extra__toggle > span[hidden] { display: none; }
.a2z-ch-extra__toggle input:checked ~ [data-ch-extra-add] { display: none; }
.a2z-ch-extra__qty { flex-shrink: 0; }
.a2z-ch-extra__qty select {
  border: 1px solid #cbd5e1; border-radius: 8px; padding: 8px 10px; font: inherit; background: #fff; min-width: 60px;
}

.a2z-ch-co__trip { list-style: none; margin: 12px 0; padding: 0; font-size: 13px; color: var(--ch-muted); }
.a2z-ch-co__trip li { padding: 3px 0; }
.a2z-ch-co__inc { list-style: none; margin: 12px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px; }
.a2z-ch-co__inc li { position: relative; padding-left: 18px; font-size: 12px; color: var(--ch-ink); }
.a2z-ch-co__inc li::before { content: "✓"; position: absolute; left: 0; color: var(--ch-green); font-weight: 800; }
.a2z-ch-co__pricing { margin-top: 16px; border-top: 1px solid var(--ch-line); padding-top: 14px; }
.a2z-ch-co__pricing h3 { margin: 0 0 10px; font-size: 15px; color: var(--ch-ink); }
.a2z-ch-co__pricing dl { margin: 0; }
.a2z-ch-co__pricing dl > div { display: flex; justify-content: space-between; font-size: 13px; padding: 3px 0; color: var(--ch-muted); }
.a2z-ch-co__pricing dl > div[hidden] { display: none; }
.a2z-ch-co__today, .a2z-ch-co__arrival {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--ch-line);
}
.a2z-ch-co__today span { font-weight: 700; color: var(--ch-ink); }
.a2z-ch-co__today strong { font-size: 22px; font-weight: 800; color: var(--ch-ink); }
.a2z-ch-co__arrival { font-size: 13px; color: var(--ch-muted); border-top: 0; margin-top: 4px; padding-top: 0; }
.a2z-ch-co__arrival[hidden] { display: none; }

@media (max-width: 640px) {
  .a2z-ch-extra { flex-wrap: wrap; }
  .a2z-ch-extra__act { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
  .a2z-ch-co__inc { grid-template-columns: 1fr; }
}

/* Checkout label/grid overrides (win over .a2z-ch-form label) */
.a2z-ch--checkout .a2z-ch-extra__toggle { display: block; }
.a2z-ch--checkout .a2z-ch-form__grid label { font-size: 13px; }
@media (max-width: 980px) {
  .a2z-ch--checkout .a2z-ch-co { grid-template-columns: 1fr; }
}

/* --- Checkout: card payment (custom fields → Stripe, pixel-identical) --- */
#ch-card-section[hidden] { display: none; }
.a2z-ch-card-stage { margin: 6px 0 4px; }
.a2z-ch-card { display: flex; flex-direction: column; gap: 14px; margin: 0 0 16px; }
.a2z-ch-card[hidden] { display: none; }
.a2z-ch-card label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--ch-ink); }
.a2z-ch-card__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }

/* One frame spec for BOTH the plain <input>s and the mounted Stripe elements.
   Scoped to #ch-card-section (id) so it always wins over `.a2z-ch-form input`. */
#ch-card-section .a2z-ch-card__el,
#ch-card-section .a2z-ch-card__input,
#ch-card-section .a2z-ch-card input[type="text"] {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  color: var(--ch-ink);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
#ch-card-section .a2z-ch-card__input,
#ch-card-section .a2z-ch-card input[type="text"] { height: 48px; padding: 0 14px; }
#ch-card-section .a2z-ch-card__el { min-height: 48px; padding: 13px 14px; }
#ch-card-section .a2z-ch-card__input::placeholder { color: #94a3b8; }

#ch-card-section .a2z-ch-card__input:focus,
#ch-card-section .a2z-ch-card input[type="text"]:focus,
#ch-card-section .a2z-ch-card__el.StripeElement--focus {
  outline: none;
  border-color: var(--ch-green);
  box-shadow: 0 0 0 3px rgba(47, 158, 68, 0.15);
}
/* Invalid — crisp red border, no glow, and it STAYS red on focus (like Stripe).
   !important + the extra selectors beat every :focus rule above. */
#ch-card-section .a2z-ch-card__input.is-invalid,
#ch-card-section .a2z-ch-card__input.is-invalid:focus,
#ch-card-section .a2z-ch-card input[type="text"].is-invalid,
#ch-card-section .a2z-ch-card input[type="text"].is-invalid:focus,
#ch-card-section .a2z-ch-card__el.StripeElement--invalid,
#ch-card-section .a2z-ch-card__el.StripeElement--invalid.StripeElement--focus {
  border-color: #dc2626 !important;
  box-shadow: none !important;
  color: #dc2626;
}
#ch-card-section .a2z-ch-card__input.is-invalid::placeholder { color: #eba9a9; }

.a2z-ch-alert.is-info { background: #eff6ff; color: #1e40af; border-color: #bfdbfe; }
/* --- Car hire confirmation / thank-you --- */
.a2z-ch--confirm { padding: 32px 0 64px; background: #f7f9fc; }
.a2z-chc { max-width: 860px; margin: 0 auto; }
.a2z-chc__hero {
  background: #fff; border: 1px solid var(--ch-line); border-radius: 16px;
  padding: 36px 32px 28px; text-align: center; box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
.a2z-chc__check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 50%; margin-bottom: 14px;
  background: #e7f7ec; color: var(--ch-green);
}
.a2z-chc__hero h1 { margin: 0 0 8px; font-size: 26px; color: var(--ch-ink); }
.a2z-chc__hero p { margin: 0 auto; max-width: 520px; font-size: 14px; line-height: 1.6; color: var(--ch-muted); }
.a2z-chc__hero--miss { padding-bottom: 32px; }
.a2z-chc__ref {
  display: inline-flex; flex-direction: column; align-items: center; gap: 2px;
  margin-top: 20px; padding: 12px 22px; border: 1px dashed var(--ch-line); border-radius: 12px; background: #fbfdff;
}
.a2z-chc__ref span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ch-muted); }
.a2z-chc__ref strong { font-size: 20px; font-weight: 800; color: var(--ch-ink); letter-spacing: 0.02em; }
.a2z-chc__status { font-style: normal; font-size: 12px; color: var(--ch-green); font-weight: 700; margin-top: 2px; }

.a2z-chc__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 18px; margin-top: 18px; }
.a2z-chc__panel {
  background: #fff; border: 1px solid var(--ch-line); border-radius: 16px; padding: 22px 24px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
.a2z-chc__panel h2 { margin: 0 0 14px; font-size: 15px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ch-muted); }
.a2z-chc__sub { margin: 20px 0 10px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ch-muted); }

.a2z-chc__dl { margin: 0; display: flex; flex-direction: column; }
.a2z-chc__dl > div { display: grid; grid-template-columns: 108px 1fr; gap: 12px; padding: 9px 0; border-top: 1px solid #eef2f7; }
.a2z-chc__dl > div:first-child { border-top: 0; }
.a2z-chc__dl dt { font-size: 13px; color: var(--ch-muted); }
.a2z-chc__dl dd { margin: 0; font-size: 14px; color: var(--ch-ink); font-weight: 600; }
.a2z-chc__dl dd span { display: block; font-weight: 400; font-size: 12px; color: var(--ch-muted); margin-top: 2px; }

.a2z-chc__extras { list-style: none; margin: 0; padding: 0; }
.a2z-chc__extras li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-top: 1px solid #eef2f7; font-size: 14px; color: var(--ch-ink); }
.a2z-chc__extras li:first-child { border-top: 0; }
.a2z-chc__extras em { font-style: normal; color: var(--ch-muted); font-size: 13px; white-space: nowrap; }

.a2z-chc__pay { align-self: start; }
.a2z-chc__paytype { margin: 0 0 12px; font-size: 13px; line-height: 1.5; color: var(--ch-muted); }
.a2z-chc__cost { margin: 0; }
.a2z-chc__cost > div { display: flex; justify-content: space-between; font-size: 13px; color: var(--ch-muted); padding: 5px 0; }
.a2z-chc__total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 10px; padding-top: 12px; border-top: 1px solid var(--ch-line);
}
.a2z-chc__total span { font-weight: 700; color: var(--ch-ink); }
.a2z-chc__total strong { font-size: 22px; font-weight: 800; color: var(--ch-ink); }

.a2z-chc__btn {
  display: block; width: 100%; box-sizing: border-box;
  margin-top: 12px; padding: 13px 18px;
  border: 0; border-radius: 10px; -webkit-appearance: none; appearance: none;
  background: var(--ch-green); color: #fff;
  font: 700 15px/1.2 inherit; text-align: center; text-decoration: none; cursor: pointer;
  transition: background 0.12s, filter 0.12s;
}
.a2z-chc__btn:hover { background: var(--ch-green-hover); color: #fff; }
.a2z-chc__btn:focus-visible { outline: 3px solid rgba(47, 158, 68, 0.4); outline-offset: 2px; }
.a2z-chc__btn--ghost { background: #fff; color: var(--ch-ink); border: 1px solid var(--ch-line); }
.a2z-chc__btn--ghost:hover { background: #f4f7fb; color: var(--ch-ink); }

.a2z-chc__note { margin: 18px 4px 0; font-size: 12px; line-height: 1.6; color: var(--ch-muted); text-align: center; }

@media (max-width: 780px) {
  .a2z-chc__grid { grid-template-columns: 1fr; }
  .a2z-chc__dl > div { grid-template-columns: 1fr; gap: 2px; }
}
/* --- Car hire: manage booking (lookup + view) --- */
.a2z-ch--manage { padding: 40px 0 72px; background: #f7f9fc; }
.a2z-ch--manage .a2z-chc { max-width: 860px; margin: 0 auto; }
.a2z-chc__kicker {
  margin: 0 0 8px; font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: #0369a1;
}

/* lookup: one centred card */
.a2z-chc__lookup {
  max-width: 460px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--ch-line); border-radius: 18px;
  padding: 32px 30px; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.a2z-chc__lookup-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; margin-bottom: 14px;
  border-radius: 14px; background: #eef6fc; color: #0369a1;
}
.a2z-chc__lookup h1 {
  margin: 0 0 8px; font-size: 22px; font-weight: 700; color: var(--ch-ink); line-height: 1.25;
}
.a2z-chc__lookup-lead {
  margin: 0 auto 22px; max-width: 360px; font-size: 13.5px; line-height: 1.55; color: var(--ch-muted);
}
.a2z-chc__lookup-form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.a2z-chc__lookup-form label {
  display: flex; flex-direction: column; gap: 6px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--ch-muted);
}
.a2z-chc__lookup-form input {
  box-sizing: border-box; width: 100%; height: 46px; padding: 0 14px;
  border: 1px solid #cbd5e1; border-radius: 10px; background: #fff;
  font-size: 15px; color: var(--ch-ink);
  transition: border-color 0.12s, box-shadow 0.12s;
}
.a2z-chc__lookup-form input::placeholder { color: #94a3b8; text-transform: none; font-weight: 400; }
.a2z-chc__lookup-form input:focus {
  outline: none; border-color: var(--ch-green); box-shadow: 0 0 0 3px rgba(47, 158, 68, 0.14);
}
.a2z-chc__btn--submit { margin-top: 4px; }

/* status colour of the hero medallion + badge */
.a2z-chc__check--cancelled { background: #fdecec; color: #dc2626; }
.a2z-chc__check--refused { background: #fff4e5; color: #b45309; }
.a2z-chc__hero--cancelled .a2z-chc__status { color: #dc2626; }
.a2z-chc__hero--refused .a2z-chc__status { color: #b45309; }
.a2z-ch-alert--info { background: #eff6ff; color: #1e3a8a; border: 1px solid #bfdbfe; }

.a2z-chc__cancel { margin-top: 20px; padding-top: 18px; border-top: 1px solid #eef2f7; }
.a2z-chc__cancel h3 { margin: 0 0 4px; font-size: 15px; color: var(--ch-ink); }
.a2z-chc__cancel p { margin: 0 0 12px; font-size: 13px; line-height: 1.5; color: var(--ch-muted); }
.a2z-chc__btn--danger { background: #b91c1c; }
.a2z-chc__btn--danger:hover { background: #991b1b; }
.a2z-chc__cancelled { margin: 16px 0 0; font-size: 13px; line-height: 1.6; color: var(--ch-muted); }
.a2z-chc__cancelled a { color: var(--ch-green); font-weight: 700; }
