/* Airport ride booking &mdash; itravel holidays (mobile-first native UI) */

:root {
  /* Brand */
  --ride-header: #0a2540;
  --ride-header-2: #123a5c;
  --ride-brand: #00a680;
  --ride-brand-dark: #008f6d;
  --ride-brand-soft: #e6f8f3;
  --ride-accent: #ffc400;

  /* iOS / Android system palette */
  --ride-ios-blue: #007aff;
  --ride-ios-green: #34c759;
  --ride-ios-red: #ff3b30;
  --ride-ios-label: #1c1c1e;
  --ride-ios-secondary: #8e8e93;
  --ride-ios-tertiary: #c7c7cc;
  --ride-ios-fill: #f2f2f7;
  --ride-ios-fill-2: #e5e5ea;
  --ride-ios-separator: #c6c6c8;
  --ride-material-primary: #1a73e8;
  --ride-material-surface: #ffffff;
  --ride-material-outline: #79747e;

  /* Mapped tokens (form + chrome) */
  --ride-green: var(--ride-brand);
  --ride-green-dark: var(--ride-brand-dark);
  --ride-green-soft: var(--ride-brand-soft);
  --ride-text: var(--ride-ios-label);
  --ride-muted: var(--ride-ios-secondary);
  --ride-border: #e5e5ea;
  --ride-field-border: #c6c6c8;
  --ride-field-bg: #ffffff;
  --ride-field-value: #000000;
  --ride-surface: #ffffff;
  --ride-bg: #f2f2f7;
  --ride-link: #000000;
  --ride-ctl-h: 3rem;
  --ride-radius: 12px;
  --ride-radius-lg: 16px;
  --ride-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.06);
  --ride-shadow-bar: 0 -1px 0 rgba(0, 0, 0, 0.06), 0 -8px 24px rgba(0, 0, 0, 0.08);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Segoe UI", Roboto, "Helvetica Neue", "DM Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}
body.ride-body {
  margin: 0;
  color: var(--ride-text);
  background: var(--ride-bg);
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--ride-link); }
button { font: inherit; cursor: pointer; border: none; background: none; }
.hidden { display: none !important; }
[hidden] { display: none !important; }

/* &mdash;&mdash; Chrome / header &mdash;&mdash; */
.utility {
  background: var(--ride-header);
  color: #c8d4e4;
  font-size: 0.8125rem;
  padding: 0.35rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
}
.utility a { color: #e8eef6; text-decoration: none; }
.utility a:hover { text-decoration: underline; }
.utility__sep { opacity: 0.35; }

.site-header {
  background: var(--ride-header);
  color: #fff;
  padding: 0 1rem;
  padding-top: env(safe-area-inset-top, 0px);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  max-width: 100%;
  overflow: hidden;
}
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3.5rem;
  min-width: 0;
  width: 100%;
}
.site-header .brand-logo,
.site-header a.logo.brand-logo {
  min-width: 0;
  flex-shrink: 1;
  max-width: min(55%, 12rem);
  overflow: hidden;
}
.nav-main { display: none; align-items: stretch; gap: 0.15rem; }
.nav-main a {
  color: #e8eef6;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  text-decoration: none;
}
.nav-main a:hover { background: #123a5c; text-decoration: none; }
.nav-main a[aria-current="page"] { background: rgba(255, 255, 255, 0.12); color: #fff; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  margin-left: auto;
}
.btn-signin {
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
}
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: 10px;
  color: #fff;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.mobile-drawer.is-open { display: block; pointer-events: auto; }
.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.2s;
}
.mobile-drawer.is-open .mobile-drawer__backdrop { opacity: 1; }
.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 92vw);
  height: 100%;
  background: var(--ride-surface);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 1.25rem;
  padding-top: calc(1.25rem + env(safe-area-inset-top, 0px));
  overflow-y: auto;
}
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }
.mobile-drawer__panel a,
.mobile-drawer__panel .drawer-link {
  display: flex;
  width: 100%;
  padding: 0.95rem 0;
  border: none;
  border-bottom: 1px solid var(--ride-border);
  background: none;
  color: var(--ride-text);
  font: inherit;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.mobile-drawer__panel .drawer-sep {
  margin: 0.65rem 0 0.2rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--ride-border);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ride-muted);
}

/* &mdash;&mdash; Hero &mdash;&mdash; */
.ride-hero {
  background: linear-gradient(165deg, #0a2540 0%, #123a5c 48%, #1a4f7a 100%);
  color: #fff;
  padding: 1.5rem 1rem 2rem;
  max-width: 100%;
}
.ride-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  min-width: 0;
}
.ride-hero h1 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.55rem, 6vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.ride-hero p {
  margin: 0;
  max-width: 36rem;
  color: rgba(232, 238, 246, 0.9);
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 400;
}
.ride-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.15rem;
}
.ride-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  letter-spacing: 0.01em;
}

/* &mdash;&mdash; Main layout &mdash;&mdash; */
.ride-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
  display: grid;
  gap: 1rem;
  width: 100%;
  min-width: 0;
}

.ride-card {
  background: var(--ride-surface);
  border: none;
  border-radius: var(--ride-radius-lg);
  padding: 1.25rem 1.1rem 1.35rem;
  box-shadow: var(--ride-shadow);
  min-width: 0;
  max-width: 100%;
}
.ride-card h2 {
  margin: 0 0 1.15rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ride-ios-label);
}

/* &mdash;&mdash; Direction (stacked on mobile = screenshot) &mdash;&mdash; */
.ride-direction {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.35rem;
  width: 100%;
  min-width: 0;
}
.ride-direction__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0.7rem 0.45rem;
  border-radius: var(--ride-radius);
  border: 1.5px solid var(--ride-ios-fill-2);
  background: var(--ride-surface);
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.25;
  text-align: center;
  color: #000000;
  letter-spacing: -0.01em;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  min-height: 3.5rem;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.ride-direction__btn:hover {
  border-color: #000000;
  background: var(--ride-ios-fill);
}
.ride-direction__btn:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}
.ride-direction__btn.is-active {
  border-color: #000000;
  background: #f5f5f7;
  color: #000000;
  box-shadow: inset 0 0 0 1px #000000;
}
.ride-direction__btn span {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--ride-ios-secondary);
  margin-top: 0.2rem;
  letter-spacing: 0;
  line-height: 1.25;
  max-width: 100%;
}
.ride-direction__btn.is-active span { color: #3a3a3c; }

/* &mdash;&mdash; Fields &mdash;&mdash; */
.ride-field {
  margin-bottom: 1rem;
  min-width: 0;
  max-width: 100%;
}
.ride-location-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 0;
  min-width: 0;
}
.ride-field label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ride-ios-label);
  letter-spacing: -0.01em;
}
.ride-field input,
.ride-field select,
.ride-field textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: var(--ride-ctl-h);
  height: var(--ride-ctl-h);
  box-sizing: border-box;
  font: inherit;
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--ride-field-value);
  padding: 0 0.95rem;
  border: 1px solid var(--ride-field-border);
  border-radius: 10px;
  background-color: var(--ride-field-bg);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.ride-field select {
  padding-right: 2.5rem;
  color: #000000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='16' viewBox='0 0 12 16'%3E%3Cpath d='M6 1L2 5h8L6 1zm0 14l4-4H2l4 4z' fill='%23000000'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 10px 14px;
}
.ride-field input[type="date"],
.ride-field input[type="time"] {
  min-width: 0;
  max-width: 100%;
  color: #000000;
  -webkit-appearance: none;
  appearance: none;
}
.ride-field input[type="text"],
.ride-field input[type="tel"],
.ride-field textarea {
  color: #000000;
}
.ride-field input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}
.ride-field input::placeholder {
  color: var(--ride-ios-tertiary);
  font-weight: 400;
  opacity: 1;
}
.ride-field input:hover,
.ride-field select:hover,
.ride-field textarea:hover {
  border-color: #8e8e93;
}
.ride-field input:focus,
.ride-field select:focus,
.ride-field textarea:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
  background-color: #fff;
}
.ride-field input:disabled,
.ride-field select:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: var(--ride-ios-fill);
  color: var(--ride-ios-secondary);
}
.ride-field--optional label::after {
  content: " (optional)";
  font-weight: 400;
  color: var(--ride-ios-secondary);
}
.ride-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 0;
  min-width: 0;
}
.ride-row .ride-field { margin-bottom: 1rem; }

/* &mdash;&mdash; Summary / vehicles &mdash;&mdash; */
.ride-summary {
  min-width: 0;
  max-width: 100%;
}
.ride-summary__card {
  background: var(--ride-surface);
  border: none;
  border-radius: var(--ride-radius-lg);
  overflow: hidden;
  box-shadow: var(--ride-shadow);
  min-width: 0;
}
.ride-summary__head {
  padding: 0.85rem 1.1rem;
  background: var(--ride-header);
  color: #fff;
}
.ride-summary__head h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.ride-summary__head p {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}
.ride-summary__body {
  padding: 1.1rem;
  min-width: 0;
  background: var(--ride-surface);
}

.ride-vehicles {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
  min-width: 0;
}
.ride-vehicle {
  border: 1.5px solid var(--ride-ios-fill-2);
  border-radius: var(--ride-radius);
  overflow: hidden;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  max-width: 100%;
}
.ride-vehicle.is-selected {
  border-color: #000000;
  border-width: 2px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.ride-vehicle img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  background: var(--ride-ios-fill);
}
.ride-vehicle__info {
  padding: 0.75rem 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
.ride-vehicle__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ride-ios-label);
  letter-spacing: -0.01em;
}
.ride-vehicle__cap {
  font-size: 0.78rem;
  color: var(--ride-ios-secondary);
  margin-top: 0.1rem;
}

#suv-picker { min-width: 0; margin-bottom: 0.25rem; }
.ride-suv-pick__label,
#suv-picker > .ride-vehicle__cap {
  margin: 0 0 0.55rem !important;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--ride-ios-secondary);
}
.ride-suv-pick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1rem;
  min-width: 0;
}
.ride-suv-opt {
  border: 1.5px solid var(--ride-ios-fill-2);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  padding: 0;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  min-width: 0;
}
.ride-suv-opt:hover { border-color: var(--ride-ios-tertiary); }
.ride-suv-opt:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}
.ride-suv-opt.is-active {
  border-color: #000000;
  border-width: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.ride-suv-opt img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
  background: var(--ride-ios-fill);
}
.ride-suv-opt span {
  display: block;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #000000;
  padding: 0.5rem 0.35rem;
}

.ride-price-box {
  background: var(--ride-ios-fill);
  border: none;
  border-radius: var(--ride-radius);
  padding: 1rem 1.05rem;
  margin-bottom: 1rem;
  min-width: 0;
}
.ride-price-box__amount {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--ride-ios-label);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.ride-price-box__amount small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ride-ios-secondary);
  margin-left: 0.25rem;
}
.ride-price-box__note {
  margin: 0.4rem 0 0;
  font-size: 0.8125rem;
  color: var(--ride-ios-secondary);
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.ride-price-box__route {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 0.5px solid var(--ride-ios-separator);
  font-size: 0.8125rem;
  color: var(--ride-ios-label);
  overflow-wrap: anywhere;
}

.btn-ride-book {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  background: var(--ride-brand);
  color: #fff;
  font-weight: 600;
  font-size: 1.0625rem;
  border: none;
  box-shadow: none;
  transition: background 0.15s ease, transform 0.12s ease, opacity 0.15s ease;
}
.btn-ride-book:hover {
  background: var(--ride-brand-dark);
  box-shadow: none;
}
.btn-ride-book:active { transform: scale(0.98); opacity: 0.92; }
.btn-ride-book:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 3px;
}
.btn-ride-book:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.ride-err {
  color: var(--ride-ios-red);
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
  min-height: 0;
}
.ride-err:empty { display: none; }
.ride-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 0.5px solid var(--ride-ios-separator);
  font-size: 0.78rem;
  color: var(--ride-ios-secondary);
}
.ride-trust span::before {
  content: "\2713 ";
  color: var(--ride-ios-green);
  font-weight: 700;
}

/* &mdash;&mdash; Mobile sticky bar &mdash;&mdash; */
.mobile-ride-bar { display: none; }

/* &mdash;&mdash; Review sheet &mdash;&mdash; */
.mobile-ride-sheet {
  position: fixed;
  inset: 0;
  z-index: 10050;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.mobile-ride-sheet.is-open {
  pointer-events: auto;
  opacity: 1;
}
.mobile-ride-sheet[hidden] { display: none !important; }
.mobile-ride-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 40, 0.52);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.mobile-ride-sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  max-height: min(92vh, 100dvh);
  overflow: hidden;
  background: var(--ride-surface);
  border-radius: 20px 20px 0 0;
  padding: 0;
  box-shadow: 0 -12px 40px rgba(10, 37, 64, 0.18);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  width: 100%;
  max-width: 100%;
}
.mobile-ride-sheet.is-open .mobile-ride-sheet__panel {
  transform: translateY(0);
}
.mobile-ride-sheet__handle {
  width: 2.25rem;
  height: 5px;
  border-radius: 999px;
  background: #c9d3de;
  margin: 0.65rem auto 0.35rem;
  flex-shrink: 0;
}
.mobile-ride-sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.35rem 1.15rem 0.75rem;
  flex-shrink: 0;
}
.mobile-ride-sheet__head h2 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.mobile-ride-sheet__close {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--ride-border);
  background: #f7f9fb;
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-ride-sheet__price {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  padding: 0 1.15rem 0.75rem;
  color: var(--ride-header);
}
.mobile-ride-sheet__vehicle {
  border: 2px solid #000000;
  border-radius: var(--ride-radius);
  overflow: hidden;
  margin: 0 1.15rem 1rem;
}
.mobile-ride-sheet__vehicle img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
  background: #eef1f6;
}
.mobile-ride-sheet__vehicle-info {
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.mobile-ride-sheet__review {
  background: var(--ride-ios-fill);
  border-radius: var(--ride-radius);
  padding: 0.9rem 1rem;
  margin: 0 1.15rem 1rem;
  font-size: 0.85rem;
  max-height: 40vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-ride-sheet__review dl {
  margin: 0;
  display: grid;
  gap: 0.55rem;
}
.mobile-ride-sheet__review dt {
  font-weight: 700;
  color: var(--ride-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mobile-ride-sheet__review dd {
  margin: 0.1rem 0 0;
  font-weight: 600;
  color: var(--ride-text);
  overflow-wrap: anywhere;
}
.mobile-ride-sheet__err {
  color: var(--ride-ios-red);
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0 1.15rem 0.65rem;
  min-height: 0;
}
.mobile-ride-sheet__err:empty { display: none; }
.btn-mobile-ride-confirm {
  width: calc(100% - 2.3rem);
  margin: 0 1.15rem calc(1rem + env(safe-area-inset-bottom, 0px));
  min-height: 3.15rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  background: var(--ride-brand);
  color: #fff;
  font-weight: 600;
  font-size: 1.0625rem;
  border: none;
  box-shadow: none;
  flex-shrink: 0;
  transition: background 0.15s ease, transform 0.12s ease, opacity 0.12s ease;
}
.btn-mobile-ride-confirm:hover { background: var(--ride-brand-dark); }
.btn-mobile-ride-confirm:active { transform: scale(0.98); opacity: 0.92; }
.btn-mobile-ride-confirm:disabled { opacity: 0.4; cursor: not-allowed; }

.mobile-ride-sheet__cart {
  display: block;
  width: 100%;
  margin-top: 0.55rem;
  min-height: 2.85rem;
  border: 2px solid #0a2540;
  background: #fff;
  color: #0a2540;
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.mobile-ride-sheet__cart:hover {
  background: #0a2540;
  color: #fff;
}
.mobile-ride-sheet__cart.is-added {
  border-color: #1a7f4b;
  background: #1a7f4b;
  color: #fff;
}

.ride-summary .btn-add-cart {
  margin-bottom: 0.65rem;
}
.ride-summary .btn-add-cart:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

body:has(.mobile-ride-sheet.is-open) .whatsapp-float {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* &mdash;&mdash; Mobile sticky footer (≤900) &mdash;&mdash; */
@media (max-width: 900px) {
  body.ride-body {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }
  .ride-summary .btn-ride-book,
  .ride-summary .btn-add-cart { display: none; }
  .ride-summary__head h2 { display: none; }
  .ride-summary__head p {
    margin: 0;
    font-size: 0.82rem;
    color: #e8eef6;
    font-weight: 500;
  }
  .ride-price-box__route { display: none; }
  .ride-main {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
    padding-bottom: 1.25rem;
  }
  .ride-hero {
    padding: 1.35rem 0.9rem 1.75rem;
  }
  .ride-card {
    padding: 1.2rem 1rem 1.25rem;
  }
  .mobile-ride-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    border-top: 0.5px solid var(--ride-ios-separator);
    box-shadow: var(--ride-shadow-bar);
    max-width: 100%;
  }
  .mobile-ride-bar__price {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    min-width: 0;
    color: var(--ride-ios-label);
  }
  .mobile-ride-bar__price small {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--ride-ios-secondary);
    margin-top: 0.12rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .mobile-ride-bar__btn {
    flex-shrink: 0;
    min-height: 2.85rem;
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    background: var(--ride-brand);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    white-space: nowrap;
    box-shadow: none;
    transition: background 0.15s ease, transform 0.12s ease, opacity 0.12s ease;
  }
  .mobile-ride-bar__btn:hover { background: var(--ride-brand-dark); }
  .mobile-ride-bar__btn:active { transform: scale(0.97); opacity: 0.92; }
  .mobile-ride-bar__btn:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
  }
  .mobile-ride-bar__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }
  .whatsapp-float {
    bottom: calc(5.85rem + env(safe-area-inset-bottom, 0px)) !important;
    right: max(0.85rem, env(safe-area-inset-right, 0px));
    z-index: 44;
  }
}

/* &mdash;&mdash; Narrow phones &mdash;&mdash; */
@media (max-width: 480px) {
  .ride-hero h1 { font-size: 1.55rem; }
  .ride-hero p { font-size: 0.9rem; }
  .ride-badge {
    font-size: 0.68rem;
    padding: 0.35rem 0.7rem;
  }
  .ride-card h2 { font-size: 1.15rem; }
  .ride-vehicle img { height: 110px; }
  .ride-suv-opt img { height: 72px; }
  .ride-price-box__amount { font-size: 1.5rem; }
  .mobile-ride-bar__btn {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .ride-suv-pick { grid-template-columns: 1fr; }
  .ride-main {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .ride-hero {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* &mdash;&mdash; Tablet+ &mdash;&mdash; */
@media (min-width: 400px) {
  .ride-direction {
    gap: 0.65rem;
  }
  .ride-direction__btn {
    font-size: 0.9rem;
    padding: 0.8rem 0.65rem;
  }
  .ride-direction__btn span {
    font-size: 0.72rem;
  }
}

@media (min-width: 560px) {
  .ride-location-fields {
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
  }
  .ride-location-fields #field-hotel {
    grid-column: 1 / -1;
  }
  .ride-row--2 {
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
  }
  .ride-direction__btn {
    font-size: 0.95rem;
    padding: 0.9rem 0.85rem;
  }
  .ride-direction__btn span {
    font-size: 0.78rem;
  }
}

@media (min-width: 900px) {
  .nav-main { display: flex; }
  .menu-toggle { display: none; }
}

@media (min-width: 960px) {
  .ride-main {
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
    margin-top: -2rem;
    padding: 0 1rem 3rem;
    gap: 1.5rem;
  }
  .ride-hero {
    padding: 2rem 1rem 2.75rem;
  }
  .ride-hero p { font-size: 1.05rem; }
  .ride-card {
    padding: 1.5rem;
  }
  .ride-summary { position: sticky; top: 4.5rem; }
  .ride-vehicle img { height: 100px; }
}

@media (max-width: 959px) {
  .ride-summary { position: static; }
}
