:root {
  --ink: #18212f;
  --muted: #5d6878;
  --line: #dce3ec;
  --soft: #f4f7fb;
  --paper: #ffffff;
  --brand: #0d7c66;
  --brand-dark: #075949;
  --accent: #f0b43c;
  --blue: #1f65d6;
  --shadow: 0 20px 60px rgba(18, 33, 54, 0.14);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--paper);
}

body.panel-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 227, 236, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: white;
  background: var(--brand);
  border-radius: 8px;
  letter-spacing: 0;
}

.main-nav,
.header-actions,
.footer-links,
.rating-row,
.filter-row,
.search-options {
  display: flex;
  align-items: center;
}

.main-nav {
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--brand-dark);
}

.header-actions {
  gap: 10px;
}

.primary-button,
.ghost-button,
.filter-chip,
.icon-button,
.menu-button {
  border: 0;
  border-radius: 8px;
  min-height: 42px;
}

.primary-button,
.ghost-button,
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  font-weight: 750;
}

.primary-button {
  color: white;
  background: var(--brand);
  box-shadow: 0 10px 25px rgba(13, 124, 102, 0.24);
}

.primary-button:hover {
  background: var(--brand-dark);
}

.ghost-button,
.filter-chip {
  color: var(--ink);
  background: var(--soft);
}

.filter-chip.active,
.filter-chip:hover {
  color: white;
  background: var(--ink);
}

.icon-button,
.menu-button {
  display: grid;
  place-items: center;
  width: 42px;
  color: var(--ink);
  background: var(--soft);
}

.menu-button {
  display: none;
}

i[data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 2.25;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: end;
  padding: clamp(24px, 5vw, 64px);
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 18, 28, 0.82), rgba(12, 18, 28, 0.38) 52%, rgba(12, 18, 28, 0.12)),
    url("https://images.unsplash.com/photo-1549925862-99049e27b5b6?auto=format&fit=crop&w=2200&q=80")
      center / cover;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 18%;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
}

.hero-content {
  width: min(1120px, 100%);
  color: white;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #b6f2df;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 7vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3.4vw, 3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
  line-height: 1.6;
}

.search-card {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr) auto;
  gap: 12px;
  max-width: 1160px;
  margin-top: 28px;
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(13, 124, 102, 0.12);
}

.search-button {
  align-self: end;
  min-height: 46px;
  white-space: nowrap;
}

.search-options {
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 18px;
}

.check-row {
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.check-row input {
  width: 16px;
  min-height: 16px;
}

.rating-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.rating-row span {
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
}

.supplier-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 4vw, 56px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  transform: translateY(-22px);
  background: var(--line);
}

.supplier-strip span {
  display: grid;
  min-height: 72px;
  place-items: center;
  color: var(--muted);
  background: white;
  font-weight: 800;
}

.section-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 78px 0;
}

.benefits {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
}

.benefit-grid,
.cars-grid,
.location-grid {
  display: grid;
  gap: 18px;
}

.benefit-grid {
  grid-template-columns: repeat(3, 1fr);
}

.benefit-grid article,
.car-card,
.steps article,
.faq details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.benefit-grid article {
  padding: 24px;
}

.benefit-grid i {
  color: var(--brand);
}

.benefit-grid p,
.steps p,
.faq p,
.workflow-copy p,
.commission-panel p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.catalog {
  padding-top: 42px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.filter-row {
  align-self: end;
  flex-wrap: wrap;
  gap: 8px;
}

.cars-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.car-card {
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(18, 33, 54, 0.08);
}

.car-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.car-body {
  padding: 18px;
}

.car-meta,
.car-footer,
.booking-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.car-meta {
  margin-bottom: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--brand-dark);
  background: #e8f7f2;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.rating {
  color: #9a6a00;
  font-weight: 850;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 16px 0;
  list-style: none;
}

.features li {
  padding: 7px 9px;
  color: var(--muted);
  background: var(--soft);
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 700;
}

.price {
  font-size: 1.6rem;
  font-weight: 900;
}

.price small {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: 82px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: white;
}

.workflow .eyebrow {
  color: #b6f2df;
}

.workflow-copy {
  align-self: center;
}

.workflow-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.steps span {
  color: var(--accent);
  font-weight: 900;
}

.steps p {
  color: rgba(255, 255, 255, 0.72);
}

.commission {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 30px;
}

.commission-panel,
.commission-summary {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.commission-controls {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.commission-summary {
  display: grid;
  gap: 14px;
  background: var(--soft);
}

.commission-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  background: white;
  border-radius: 8px;
}

.commission-summary span {
  color: var(--muted);
  font-weight: 800;
}

.commission-summary strong {
  font-size: 1.7rem;
}

.locations {
  background: var(--soft);
}

.location-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.location-grid a {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq h2 {
  margin-bottom: 14px;
}

.faq details {
  padding: 20px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
}

.faq p {
  margin: 12px 0 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px clamp(18px, 4vw, 56px);
  background: #111923;
  color: white;
}

.footer-links {
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.panel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(10, 18, 28, 0.46);
}

.side-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: min(470px, 100%);
  height: 100vh;
  padding: 26px;
  overflow-y: auto;
  background: white;
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 180ms ease;
}

.side-panel.open {
  transform: translateX(0);
}

.panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.panel-header h2 {
  margin-bottom: 0;
  font-size: 1.7rem;
}

.panel-form {
  display: grid;
  gap: 14px;
}

.booking-summary {
  display: grid;
  gap: 12px;
  padding: 18px;
  margin-bottom: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.booking-line {
  color: var(--muted);
}

.booking-line strong {
  color: var(--ink);
}

.portal-body {
  background: var(--soft);
}

.portal-shell {
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  padding: 48px 0 78px;
}

.login-card {
  width: min(520px, 100%);
  margin: 42px auto;
  padding: clamp(24px, 4vw, 40px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.login-card h1,
.dashboard-heading h1 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.login-card p,
.dashboard-heading p,
.form-note,
.admin-row span,
.table-heading span {
  color: var(--muted);
  line-height: 1.55;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.dashboard {
  display: grid;
  gap: 24px;
}

.dashboard-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.dashboard-heading p {
  max-width: 720px;
  margin-bottom: 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-grid article {
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stat-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 22px;
  align-items: start;
}

.admin-table-wrap,
.edit-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(18, 33, 54, 0.07);
}

.admin-table-wrap {
  overflow: hidden;
}

.full-width-table {
  width: 100%;
}

.table-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.table-heading h2,
.edit-card h2 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.admin-table {
  display: grid;
}

.admin-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1.35fr) minmax(130px, 0.8fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}

.company-row {
  grid-template-columns: minmax(0, 1.4fr) minmax(130px, 0.8fr) minmax(120px, 0.7fr) auto auto;
}

.admin-row:last-child {
  border-bottom: 0;
}

.admin-row img {
  width: 70px;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.admin-row div {
  min-width: 0;
}

.admin-row strong,
.admin-row span {
  display: block;
}

.admin-row strong {
  overflow-wrap: anywhere;
}

.admin-row span {
  font-size: 0.88rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: capitalize;
}

.status-pill.active {
  color: var(--brand-dark);
  background: #e8f7f2;
}

.status-pill.disabled {
  color: #8b1f1f;
  background: #ffe8e8;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.edit-card {
  position: sticky;
  top: 94px;
  padding: 22px;
}

@media (max-width: 980px) {
  .main-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .site-header.menu-open .main-nav,
  .site-header.menu-open .header-actions {
    position: absolute;
    right: 18px;
    left: 18px;
    display: grid;
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .main-nav {
    top: 72px;
  }

  .site-header.menu-open .header-actions {
    top: 222px;
  }

  .search-card,
  .benefits,
  .benefit-grid,
  .cars-grid,
  .workflow,
  .commission,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .edit-card {
    position: static;
  }

  .admin-row {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .company-row {
    grid-template-columns: 1fr;
  }

  .admin-row .status-pill,
  .admin-row .row-actions,
  .admin-row > button {
    justify-self: start;
  }

  .section-heading {
    display: grid;
  }

  .filter-row {
    align-self: start;
  }

  .supplier-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
  }

  .hero {
    min-height: auto;
    padding: 64px 18px 36px;
  }

  h1 {
    font-size: 2.65rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .search-card {
    margin-top: 22px;
  }

  .supplier-strip,
  .location-grid,
  .commission-controls,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .section-shell {
    padding: 56px 0;
  }

  .commission-summary div,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .side-panel {
    padding: 20px;
  }
}
.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 20px;
}

.admin-tab {
  border: 0;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 850;
  background: var(--paper);
  color: var(--muted);
  box-shadow: 0 4px 14px rgba(18, 33, 54, 0.06);
}

.admin-tab.active {
  background: var(--brand);
  color: white;
}

[data-admin-section] {
  display: grid;
  gap: 22px;
}

.reservation-row {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(120px, 0.7fr) auto;
}

.status-pill.pending {
  color: #9a6a00;
  background: #fff3d6;
}

.status-pill.accepted {
  color: var(--brand-dark);
  background: #e8f7f2;
}

.status-pill.rejected {
  color: #8b1f1f;
  background: #ffe8e8;
}

.calendar-booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}

.calendar-booking:last-child {
  border-bottom: 0;
}

.calendar-booking strong,
.calendar-booking span {
  display: block;
}

.calendar-booking span {
  color: var(--muted);
  font-size: 0.9rem;
}

.vehicle-calendar-card {
  display: grid;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.vehicle-calendar-card:last-child {
  border-bottom: 0;
}

.vehicle-calendar-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vehicle-calendar-header img {
  width: 76px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
}

.vehicle-calendar-header strong,
.vehicle-calendar-header span {
  display: block;
}

.vehicle-calendar-header span {
  color: var(--muted);
  font-size: 0.9rem;
}

.vehicle-bookings {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vehicle-booking-pill {
  padding: 10px 12px;
  background: #e8f7f2;
  border: 1px solid rgba(13, 124, 102, 0.18);
  border-radius: 10px;
}

.vehicle-booking-pill strong,
.vehicle-booking-pill span {
  display: block;
}

.vehicle-booking-pill span,
.empty-calendar {
  color: var(--muted);
  font-size: 0.88rem;
}
.reservation-card {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(220px, 1.2fr) minmax(120px, 0.6fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: white;
}

.reservation-card:last-child {
  border-bottom: 0;
}

.reservation-card strong,
.reservation-card span {
  display: block;
}

.reservation-main span,
.reservation-details span,
.reservation-money span {
  color: var(--muted);
  font-size: 0.9rem;
}

.reservation-money strong {
  font-size: 1rem;
}

.reservation-card .row-actions {
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .reservation-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .reservation-card .row-actions {
    justify-content: flex-start;
  }
}
.marketplace-results {
  width: min(1220px, calc(100% - 36px));
}

.results-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.results-subtitle {
  max-width: 620px;
  color: var(--muted);
}

.results-count-box {
  min-width: 130px;
  padding: 16px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(18, 33, 54, 0.06);
}

.results-count-box strong {
  display: block;
  font-size: 2rem;
}

.results-count-box span {
  color: var(--muted);
  font-weight: 800;
}

.market-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.market-filters {
  position: sticky;
  top: 96px;
}

.filter-box {
  display: grid;
  gap: 18px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(18, 33, 54, 0.06);
}

.filter-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.clear-filter-button {
  border: 0;
  background: transparent;
  color: var(--brand);
  font-weight: 850;
}

.filter-group {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.filter-group h3 {
  margin: 0;
  font-size: 0.95rem;
}

.market-results {
  display: grid;
  gap: 16px;
}

.results-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.results-toolbar strong,
.results-toolbar span {
  display: block;
}

.results-toolbar span {
  color: var(--muted);
  font-size: 0.9rem;
}

.results-toolbar label {
  min-width: 210px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.marketplace-results .cars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.market-car-card {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 190px;
  gap: 18px;
  align-items: stretch;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(18, 33, 54, 0.08);
}

.market-car-image {
  position: relative;
  overflow: hidden;
  border-radius: 13px;
  background: var(--soft);
}

.market-car-image img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  display: block;
}

.supplier-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.market-car-info {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 6px 0;
}

.market-car-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.market-car-top h3 {
  margin: 0;
  font-size: 1.3rem;
}

.market-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.market-features span {
  padding: 8px 10px;
  background: var(--soft);
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.market-location,
.market-supplier {
  margin: 0;
  color: var(--muted);
}

.market-location {
  display: flex;
  align-items: center;
  gap: 8px;
}

.market-location i {
  width: 16px;
  height: 16px;
  color: var(--brand);
}

.market-price-box {
  display: grid;
  align-content: center;
  justify-items: stretch;
  gap: 8px;
  padding: 16px;
  background: var(--soft);
  border-radius: 13px;
  text-align: center;
}

.market-price-box span,
.market-price-box small {
  color: var(--muted);
  font-weight: 750;
}

.market-price-box strong {
  font-size: 1.8rem;
}

.market-price-box .primary-button {
  margin-top: 8px;
}

.empty-results {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
}

@media (max-width: 980px) {
  .results-header,
  .results-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .market-layout {
    grid-template-columns: 1fr;
  }

  .market-filters {
    position: static;
  }

  .market-car-card {
    grid-template-columns: 1fr;
  }

  .market-car-image img {
    min-height: 220px;
  }

  .market-price-box {
    text-align: left;
    justify-items: start;
  }
}
.image-preview {
  display: grid;
  gap: 8px;
  padding: 10px;
  background: var(--soft);
  border: 1px dashed var(--line);
  border-radius: 10px;
}

.image-preview img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.image-preview span {
  color: var(--muted);
  font-size: 0.88rem;
}
.section-intro {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-intro h2 {
  margin-bottom: 12px;
  color: var(--ink);
}

.section-intro h2::after {
  display: block;
  width: 72px;
  height: 4px;
  margin: 14px auto 0;
  content: "";
  background: var(--brand);
  border-radius: 999px;
}

.section-intro p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.category-showcase {
  padding: 76px clamp(18px, 4vw, 56px);
  background: #fff4f1;
}

.category-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.category-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(18, 33, 54, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(18, 33, 54, 0.12);
}

.category-card h3 {
  margin: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.category-card img {
  width: 100%;
  height: 112px;
  object-fit: contain;
}

.category-card strong {
  color: var(--brand);
  font-size: 1.2rem;
}

.category-card span {
  color: var(--muted);
}

.category-card small {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: white;
  background: var(--brand);
  border-radius: 8px;
  font-weight: 850;
}

.location-showcase {
  padding: 76px clamp(18px, 4vw, 56px);
  background: white;
}

.location-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.location-card {
  overflow: hidden;
  padding: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(18, 33, 54, 0.06);
  text-align: center;
}

.location-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  display: block;
}

.location-card strong {
  display: block;
  padding: 18px 16px 6px;
  font-size: 1.05rem;
}

.location-card span {
  display: block;
  padding: 0 16px 18px;
  color: var(--brand);
  font-weight: 850;
}

.faq-showcase {
  padding: 76px clamp(18px, 4vw, 56px);
  background: var(--soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.faq-grid article {
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.faq-grid h3 {
  font-size: 1.1rem;
}

.faq-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.new-footer {
  padding: 56px clamp(18px, 4vw, 56px);
  color: white;
  background: #151515;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 36px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.footer-grid a:hover {
  color: white;
}

.footer-brand {
  margin-bottom: 14px;
}

@media (max-width: 980px) {
  .category-card-grid,
  .location-card-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .category-card-grid,
  .location-card-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.rental-hero {
  min-height: calc(100vh - 74px);
  align-items: center;
  padding: clamp(34px, 5vw, 76px);
}

.rental-hero::after {
  height: 30%;
}

.rental-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  width: min(1220px, 100%);
  margin: 0 auto;
  color: white;
}

.hero-text h1 {
  max-width: 650px;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-trust-row span {
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-weight: 800;
}

.rental-search-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 1fr 0.8fr;
  gap: 12px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.rental-search-card label {
  min-width: 0;
}

.rental-search-card input,
.rental-search-card select {
  min-height: 50px;
  border-radius: 12px;
}

.rental-search-card label:nth-of-type(6) {
  grid-column: span 2;
}

.rental-search-button {
  grid-column: span 3;
  min-height: 50px;
  border-radius: 12px;
}

.rental-search-note {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.rental-search-note span {
  padding: 8px 10px;
  color: var(--brand-dark);
  background: #e8f7f2;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
}

@media (max-width: 1080px) {
  .rental-hero-content {
    grid-template-columns: 1fr;
  }

  .rental-search-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rental-search-card label:nth-of-type(6),
  .rental-search-button {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .rental-hero {
    padding: 46px 18px;
  }

  .rental-search-card {
    grid-template-columns: 1fr;
  }

  .rental-search-card label:nth-of-type(6),
  .rental-search-button {
    grid-column: auto;
  }

  .hero-trust-row span {
    width: 100%;
  }
}
.rental-hero {
  min-height: 720px;
  padding: 70px clamp(18px, 5vw, 72px);
  background: #111923;
}

.rental-hero .hero-media {
  background:
    linear-gradient(90deg, rgba(9, 15, 24, 0.88), rgba(9, 15, 24, 0.55) 46%, rgba(255, 255, 255, 0.22)),
    url("https://images.unsplash.com/photo-1549925862-99049e27b5b6?auto=format&fit=crop&w=2200&q=80")
      center / cover;
}

.rental-hero-content {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.hero-text h1 {
  max-width: 600px;
  font-size: clamp(3.2rem, 6.6vw, 6.1rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy {
  max-width: 560px;
  font-size: 1.08rem;
}

.rental-search-card {
  max-width: 520px;
  justify-self: end;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
}

.rental-search-card label:first-child {
  grid-column: 1 / -1;
}

.rental-search-card label:nth-of-type(6) {
  grid-column: 1 / -1;
}

.rental-search-button {
  grid-column: 1 / -1;
}

.rental-search-note {
  justify-content: center;
}

.rental-search-note span {
  font-size: 0.78rem;
}

.hero-trust-row {
  max-width: 520px;
}

@media (max-width: 1080px) {
  .rental-search-card {
    justify-self: start;
    max-width: 100%;
  }
}
.category-showcase {
  padding: 76px clamp(18px, 4vw, 56px);
  background: #fff7f4;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-intro h2 {
  margin-bottom: 12px;
  color: var(--ink);
}

.section-intro h2::after {
  display: block;
  width: 72px;
  height: 4px;
  margin: 14px auto 0;
  content: "";
  background: var(--brand);
  border-radius: 999px;
}

.section-intro p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.category-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.category-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 20px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(18, 33, 54, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(18, 33, 54, 0.12);
}

.category-card h3 {
  margin: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.category-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}

.category-card strong {
  color: var(--brand);
  font-size: 1.2rem;
}

.category-card span {
  color: var(--muted);
}

.category-card small {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: white;
  background: var(--brand);
  border-radius: 9px;
  font-weight: 850;
}

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

@media (max-width: 640px) {
  .category-card-grid {
    grid-template-columns: 1fr;
  }
}
.location-showcase {
  padding: 76px clamp(18px, 4vw, 56px);
  background: white;
}

.location-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.location-card {
  overflow: hidden;
  padding: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(18, 33, 54, 0.06);
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(18, 33, 54, 0.12);
}

.location-card img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  display: block;
}

.location-card strong {
  display: block;
  padding: 18px 16px 6px;
  font-size: 1.05rem;
}

.location-card span {
  display: block;
  padding: 0 16px 20px;
  color: var(--brand);
  font-weight: 850;
}

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

@media (max-width: 640px) {
  .location-card-grid {
    grid-template-columns: 1fr;
  }
}
.partners-showcase {
  padding: 76px clamp(18px, 4vw, 56px);
  background: #f1f3f6;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.partner-card {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 150px;
  padding: 20px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(18, 33, 54, 0.06);
}

.partner-card img {
  width: 120px;
  height: 62px;
  object-fit: contain;
}

.partner-initials {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: white;
  background: var(--brand);
  border-radius: 18px;
  font-size: 1.35rem;
  font-weight: 900;
}

.partner-card strong {
  display: block;
  font-size: 0.95rem;
}

.partner-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .partners-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.hero-partners-strip {
  position: relative;
  z-index: 5;
  margin-top: -46px;
  padding: 0 clamp(18px, 4vw, 56px);
}

.hero-partners-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(220, 227, 236, 0.9);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(18, 33, 54, 0.14);
  backdrop-filter: blur(16px);
}

.hero-partners-title {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-partners-logos {
  display: flex;
  gap: 10px;
  align-items: center;
  overflow-x: auto;
  padding-bottom: 2px;
}

.hero-partner-logo {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 92px;
  height: 44px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.hero-partner-logo img {
  width: 76px;
  height: 30px;
  object-fit: contain;
}

.hero-partner-logo span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 30px;
  color: white;
  background: var(--brand);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 900;
}

@media (max-width: 760px) {
  .hero-partners-strip {
    margin-top: 0;
    padding-top: 14px;
    background: var(--soft);
  }

  .hero-partners-inner {
    grid-template-columns: 1fr;
  }
}
.booking-flow-section {
  padding: 42px clamp(18px, 4vw, 56px) 80px;
  background: #f7f8fa;
}

.booking-flow-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.booking-progress span {
  display: grid;
  place-items: center;
  min-height: 44px;
  color: var(--muted);
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 850;
}

.booking-progress span.active {
  color: var(--brand-dark);
  background: #e8f7f2;
}

.booking-flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
  align-items: start;
}

.booking-flow-main {
  display: grid;
  gap: 18px;
}

.back-results-button {
  width: fit-content;
}

.booking-detail-card,
.booking-summary-sticky {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(18, 33, 54, 0.06);
}

.booking-detail-card {
  padding: 22px;
}

.booking-detail-card h2 {
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.booking-visual-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.booking-car-image-box {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: var(--soft);
  border-radius: 12px;
}

.booking-car-image-box img {
  width: 100%;
  height: 230px;
  object-fit: contain;
}

.flow-supplier-row {
  display: flex;
  gap: 10px;
}

.flow-supplier-row span {
  padding: 9px 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
}

.booking-map-box {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(13, 124, 102, 0.12), rgba(24, 33, 47, 0.06));
  border: 1px dashed var(--line);
  border-radius: 12px;
  text-align: center;
}

.booking-map-box i {
  color: var(--brand);
  width: 42px;
  height: 42px;
}

.vehicle-detail-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.vehicle-detail-grid div {
  padding: 14px 10px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.vehicle-detail-grid div:last-child {
  border-right: 0;
}

.vehicle-detail-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 6px;
}

.vehicle-detail-grid strong {
  display: block;
}

.extra-row {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.extra-row:last-child {
  border-bottom: 0;
}

.extra-row input {
  width: 18px;
  min-height: 18px;
}

.extra-row span {
  color: var(--muted);
  font-weight: 600;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.included-grid span {
  color: var(--ink);
  font-weight: 750;
}

.booking-summary-sticky {
  position: sticky;
  top: 96px;
  overflow: hidden;
}

.summary-head {
  padding: 16px 18px;
  color: white;
  background: #4b403c;
  font-size: 1.1rem;
  font-weight: 900;
}

.summary-body {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.summary-body h3 {
  margin: 0;
}

.summary-body p,
.summary-route span {
  color: var(--muted);
  margin: 0;
}

.summary-route {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.summary-route strong,
.summary-route span {
  display: block;
}

.summary-price-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.summary-price-line.total {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 1.1rem;
}

.instant-confirmation {
  padding: 12px;
  color: var(--brand-dark);
  background: #e8f7f2;
  border-radius: 8px;
  text-align: center;
  font-weight: 850;
}

@media (max-width: 980px) {
  .booking-progress,
  .booking-flow-layout,
  .booking-visual-card,
  .vehicle-detail-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .booking-summary-sticky {
    position: static;
  }
}
.booking-page-body {
  background: #f7f8fa;
}

.booking-page-shell,
.reservation-detail-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0 80px;
}

.booking-trip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.reservation-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.reservation-detail-header h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.reservation-detail-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.detail-list {
  display: grid;
  gap: 10px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.detail-row:last-child {
  border-bottom: 0;
}

.detail-row span {
  color: var(--muted);
}

.detail-row strong {
  text-align: right;
}

@media (max-width: 900px) {
  .booking-trip-grid,
  .reservation-detail-layout {
    grid-template-columns: 1fr;
  }

  .reservation-detail-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
.payment-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: capitalize;
}

.payment-pill.paid {
  color: var(--brand-dark);
  background: #e8f7f2;
}

.payment-pill.unpaid {
  color: #9a6a00;
  background: #fff3d6;
}

.payment-pill.cancelled {
  color: #8b1f1f;
  background: #ffe8e8;
}

.payment-result-shell {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 80px 0;
}

.payment-result-card {
  text-align: center;
}

.payment-result-card h1 {
  margin: 0 auto 18px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}
.summary-form-box,
.payment-choice-box {
  display: grid;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.summary-form-box h3,
.payment-choice-box h3 {
  margin: 0;
  font-size: 1rem;
}

.summary-form-box label {
  gap: 6px;
}

.summary-form-box input {
  min-height: 42px;
}

.payment-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.payment-choice input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.payment-choice strong,
.payment-choice span {
  display: block;
}

.payment-choice span {
  color: var(--muted);
  font-size: 0.85rem;
}

.payment-choice.active {
  border-color: rgba(13, 124, 102, 0.35);
  background: #e8f7f2;
}

.payment-choice.disabled {
  opacity: 0.6;
}
@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand span:last-child {
    font-size: 1rem;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .ghost-button,
  .header-actions .primary-button {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .rental-hero {
    min-height: auto;
    padding: 34px 16px 28px;
  }

  .rental-hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-text h1 {
    max-width: 100%;
    font-size: 2.65rem;
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-trust-row {
    gap: 8px;
  }

  .hero-trust-row span {
    width: auto;
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .rental-search-card {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 16px;
    border-radius: 18px;
  }

  .rental-search-card label,
  .rental-search-card label:nth-of-type(6),
  .rental-search-button {
    grid-column: auto;
  }

  .rental-search-card input,
  .rental-search-card select {
    min-height: 46px;
  }

  .rental-search-note {
    justify-content: flex-start;
  }

  .hero-partners-strip {
    margin-top: 0;
    padding: 12px 16px 0;
    background: #f7f8fa;
  }

  .hero-partners-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    border-radius: 14px;
  }

  .hero-partners-logos {
    overflow-x: auto;
  }

  .hero-partner-logo {
    width: 82px;
    height: 42px;
  }

  /* Hide long homepage content on mobile before search */
  .category-showcase,
  .section-shell.benefits,
  .location-showcase,
  .partners-showcase,
  .faq-showcase,
  .new-footer,
  .workflow,
  #commission {
    display: none;
  }

  /* Hide car results before search on mobile */
  .marketplace-results {
    display: none;
  }

  /* After pressing search, show only categories + cars */
  body.mobile-search-active .marketplace-results {
    display: block;
  }

  body.mobile-search-active .category-showcase {
    display: block;
  }

  body.mobile-search-active .rental-hero {
    min-height: auto;
    padding-bottom: 18px;
  }

  body.mobile-search-active .hero-text,
  body.mobile-search-active .hero-partners-strip {
    display: none;
  }

  body.mobile-search-active .rental-search-card {
    margin-top: 0;
  }

  .marketplace-results {
    width: 100%;
    padding: 28px 16px;
  }

  .results-header {
    display: none;
  }

  .market-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .market-filters {
    display: none;
  }

  .results-toolbar {
    display: none;
  }

  .category-tabs {
    position: sticky;
    top: 68px;
    z-index: 20;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px 0;
    background: #f7f8fa;
  }

  .filter-chip {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 12px;
  }

  .marketplace-results .cars-grid {
    gap: 14px;
  }

  .market-car-card {
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 16px;
  }

  .market-car-image img {
    min-height: 190px;
    max-height: 220px;
  }

  .market-car-top {
    align-items: flex-start;
  }

  .market-car-top h3 {
    font-size: 1.2rem;
  }

  .market-features {
    gap: 6px;
  }

  .market-features span {
    padding: 7px 9px;
    font-size: 0.78rem;
  }

  .market-price-box {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
    justify-items: start;
    gap: 4px 12px;
    padding: 14px;
  }

  .market-price-box span,
  .market-price-box small {
    grid-column: 1;
  }

  .market-price-box strong {
    grid-column: 1;
    font-size: 1.45rem;
  }

  .market-price-box .primary-button {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin-top: 0;
    min-height: 46px;
    padding: 0 18px;
  }
}
@media (max-width: 760px) {
  body.mobile-search-active .category-showcase {
    padding: 22px 16px 8px;
    background: #f7f8fa;
  }

  body.mobile-search-active .category-showcase .section-intro {
    display: none;
  }

  body.mobile-search-active .category-card-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    width: 100%;
  }

  body.mobile-search-active .category-card {
    flex: 0 0 135px;
    padding: 12px;
    border-radius: 14px;
  }

  body.mobile-search-active .category-card img {
    height: 72px;
  }

  body.mobile-search-active .category-card h3 {
    font-size: 0.8rem;
  }

  body.mobile-search-active .category-card strong,
  body.mobile-search-active .category-card span {
    display: none;
  }

  body.mobile-search-active .category-card small {
    min-height: 30px;
    font-size: 0.75rem;
  }
}
@media (max-width: 760px) {
  .booking-page-shell {
    width: 100%;
    padding: 18px 16px 48px;
  }

  .booking-progress {
    display: none;
  }

  .booking-flow-layout {
    grid-template-columns: 1fr;
  }

  .booking-visual-card {
    grid-template-columns: 1fr;
  }

  .booking-car-image-box img {
    height: 210px;
    object-fit: contain;
  }

  .booking-map-box {
    display: none;
  }

  .vehicle-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-trip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-summary-sticky {
    position: static;
    order: -1;
  }

  .summary-head {
    border-radius: 14px 14px 0 0;
  }

  .summary-body {
    gap: 12px;
  }

  .summary-form-box input {
    min-height: 44px;
  }

  .extra-row {
    grid-template-columns: auto 1fr;
  }

  .extra-row > strong {
    grid-column: 2;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }
}
/* CATEGORY-FIRST HOMEPAGE FLOW */

.marketplace-results {
  display: none;
}

body.category-selected .marketplace-results {
  display: block;
}

.back-to-categories-button {
  margin-bottom: 18px;
}

/* When user selects category, hide homepage marketing sections */
body.category-selected .rental-hero,
body.category-selected .hero-partners-strip,
body.category-selected .section-shell.benefits,
body.category-selected .location-showcase,
body.category-selected .partners-showcase,
body.category-selected .faq-showcase,
body.category-selected .new-footer,
body.category-selected .workflow,
body.category-selected #commission {
  display: none;
}

/* Keep category strip visible but compact after selection */
body.category-selected .category-showcase {
  padding: 24px clamp(18px, 4vw, 56px);
  background: #f7f8fa;
}

body.category-selected .category-showcase .section-intro {
  display: none;
}

body.category-selected .category-card-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  width: min(1180px, 100%);
}

body.category-selected .category-card {
  flex: 0 0 150px;
  padding: 14px;
}

body.category-selected .category-card img {
  height: 78px;
}

body.category-selected .category-card strong,
body.category-selected .category-card span {
  display: none;
}

/* Mobile clean version */
@media (max-width: 760px) {
  .rental-hero {
    min-height: auto;
    padding: 34px 16px 22px;
  }

  .rental-hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2.45rem;
    line-height: 1;
  }

  .rental-search-card {
    display: none;
  }

  .hero-partners-strip,
  .section-shell.benefits,
  .location-showcase,
  .partners-showcase,
  .faq-showcase,
  .new-footer,
  .workflow,
  #commission {
    display: none;
  }

  .category-showcase {
    padding: 28px 16px;
    background: #fff7f4;
  }

  .category-showcase .section-intro h2 {
    font-size: 1.65rem;
  }

  .category-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .category-card {
    padding: 14px 12px;
  }

  .category-card img {
    height: 88px;
  }

  .category-card h3 {
    font-size: 0.82rem;
  }

  .category-card strong {
    font-size: 1rem;
  }

  body.category-selected .category-showcase {
    position: sticky;
    top: 68px;
    z-index: 20;
    padding: 10px 16px;
    background: #f7f8fa;
  }

  body.category-selected .category-card-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
  }

  body.category-selected .category-card {
    flex: 0 0 122px;
    padding: 10px;
  }

  body.category-selected .category-card img {
    height: 58px;
  }

  body.category-selected .category-card h3 {
    font-size: 0.75rem;
  }

  body.category-selected .category-card small {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.7rem;
  }

  .marketplace-results {
    width: 100%;
    padding: 18px 16px 38px;
  }

  body.category-selected .marketplace-results {
    display: block;
  }

  .results-header,
  .market-filters,
  .results-toolbar {
    display: none;
  }

  .market-layout {
    grid-template-columns: 1fr;
  }

  .category-tabs {
    display: none;
  }

  .market-car-card {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .market-car-image img {
    min-height: 185px;
    max-height: 220px;
  }

  .market-price-box {
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
  }

  .market-price-box .primary-button {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin-top: 0;
  }
}
/* FINAL MOBILE FIX - category first layout */

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    position: relative;
    z-index: 50;
    height: auto;
    min-height: 76px;
    padding: 14px 18px;
    background: white;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
    font-size: 1.35rem;
  }

  .brand span:last-child {
    font-size: 1.4rem;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions .ghost-button,
  .header-actions .primary-button {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .rental-hero {
    min-height: auto !important;
    height: auto !important;
    padding: 34px 18px 36px !important;
    overflow: hidden;
  }

  .rental-hero-content {
    display: block !important;
    width: 100%;
  }

  .hero-text h1 {
    max-width: 100%;
    font-size: 3rem;
    line-height: 1.03;
    letter-spacing: -0.04em;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-trust-row span {
    width: auto !important;
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .rental-search-card,
  .hero-partners-strip {
    display: none !important;
  }

  .category-showcase {
    display: block !important;
    padding: 34px 16px 42px !important;
    background: #fff7f4;
  }

  .category-showcase .section-intro {
    display: block !important;
    margin-bottom: 22px;
  }

  .category-showcase .section-intro h2 {
    font-size: 1.85rem;
    line-height: 1.1;
  }

  .category-showcase .section-intro p {
    font-size: 0.95rem;
  }

  .category-card-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .category-card {
    display: grid !important;
    gap: 8px;
    padding: 14px 10px !important;
    min-height: 210px;
    border-radius: 14px;
  }

  .category-card img {
    width: 100%;
    height: 90px !important;
    object-fit: contain;
  }

  .category-card h3 {
    font-size: 0.82rem;
  }

  .category-card strong {
    display: block !important;
    font-size: 1rem;
  }

  .category-card span {
    display: block !important;
    font-size: 0.8rem;
  }

  .category-card small {
    min-height: 32px;
    font-size: 0.72rem;
  }

  .section-shell.benefits,
  .location-showcase,
  .partners-showcase,
  .faq-showcase,
  .new-footer,
  .workflow,
  #commission {
    display: none !important;
  }

  .marketplace-results {
    display: none !important;
  }

  body.category-selected .rental-hero {
    display: none !important;
  }

  body.category-selected .category-showcase {
    position: sticky;
    top: 0;
    z-index: 40;
    display: block !important;
    padding: 10px 12px !important;
    background: #f7f8fa;
  }

  body.category-selected .category-showcase .section-intro {
    display: none !important;
  }

  body.category-selected .category-card-grid {
    display: flex !important;
    gap: 10px !important;
    overflow-x: auto;
  }

  body.category-selected .category-card {
    flex: 0 0 118px;
    min-height: 128px;
    padding: 10px !important;
  }

  body.category-selected .category-card img {
    height: 56px !important;
  }

  body.category-selected .category-card strong,
  body.category-selected .category-card span {
    display: none !important;
  }

  body.category-selected .category-card small {
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.68rem;
  }

  body.category-selected .marketplace-results {
    display: block !important;
    width: 100% !important;
    padding: 18px 14px 42px !important;
  }

  body.category-selected .results-header,
  body.category-selected .market-filters,
  body.category-selected .results-toolbar,
  body.category-selected .category-tabs {
    display: none !important;
  }

  body.category-selected .market-layout {
    display: block !important;
  }

  body.category-selected .market-results {
    display: block !important;
  }

  body.category-selected .cars-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  body.category-selected .market-car-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px;
    padding: 12px !important;
    border-radius: 16px;
  }

  body.category-selected .market-car-image img {
    min-height: 190px !important;
    max-height: 220px;
  }

  body.category-selected .market-price-box {
    display: grid !important;
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
    gap: 4px 12px;
  }

  body.category-selected .market-price-box .primary-button {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin-top: 0;
    min-height: 46px;
  }
}

.integration-panel {
  padding: 0;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
}

.integration-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.integration-card h3 {
  margin: 0;
}

.integration-card p {
  color: var(--muted);
  margin: 0;
}

.integration-wide {
  grid-column: 1 / -1;
}

.copy-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.copy-box code,
.integration-card pre {
  display: block;
  padding: 12px;
  background: #0f172a;
  color: #d9f99d;
  border-radius: 10px;
  overflow-x: auto;
  font-size: 0.85rem;
}

.integration-status-box {
  display: grid;
  gap: 8px;
}

@media (max-width: 800px) {
  .integration-grid {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .copy-box {
    grid-template-columns: 1fr;
  }
}
/* EXPLORER STYLE SEARCH RESULTS PAGE */

.results-page {
  min-height: 100vh;
  background: #f5f7fb;
}

.results-search-bar {
  padding: 22px clamp(18px, 4vw, 56px);
  background: #111827;
}

.results-search-form {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
}

.results-search-form label {
  display: grid;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #475569;
}

.results-search-form input,
.results-search-form select {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #dbe4ef;
  border-radius: 10px;
  background: #f8fafc;
  font-weight: 700;
  color: #0f172a;
}

.results-search-form .primary-button {
  min-height: 44px;
  white-space: nowrap;
}

.results-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px clamp(18px, 4vw, 56px) 60px;
}

.results-sidebar {
  position: sticky;
  top: 20px;
  align-self: start;
  display: grid;
  gap: 16px;
  padding: 20px;
  background: white;
  border: 1px solid #dbe4ef;
  border-radius: 18px;
}

.results-sidebar h3 {
  margin: 0;
}

.results-sidebar label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: #475569;
}

.results-sidebar select {
  min-height: 44px;
  border: 1px solid #dbe4ef;
  border-radius: 10px;
  padding: 0 12px;
}

.filter-box {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #f8fafc;
  border-radius: 14px;
  color: #475569;
}

.filter-box strong {
  color: #0f172a;
}

.results-main {
  display: grid;
  gap: 18px;
}

.results-page-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 4px 0 10px;
}

.results-page-heading h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.search-results-grid {
  display: grid;
  gap: 16px;
}

.explorer-result-card {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 220px;
  gap: 18px;
  padding: 16px;
  background: white;
  border: 1px solid #dbe4ef;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.explorer-car-image {
  display: grid;
  place-items: center;
  background: #f8fafc;
  border-radius: 16px;
  overflow: hidden;
}

.explorer-car-image img {
  width: 100%;
  height: 165px;
  object-fit: contain;
}

.explorer-car-content {
  display: grid;
  gap: 14px;
}

.explorer-car-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.explorer-car-top h2 {
  margin: 4px 0;
  font-size: 1.35rem;
}

.explorer-feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.explorer-feature-grid span {
  padding: 8px 10px;
  background: #f1f5f9;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #334155;
}

.explorer-price-box {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 16px;
  text-align: right;
}

.explorer-price-box strong {
  font-size: 1.8rem;
  color: #047857;
}

.explorer-price-box small,
.explorer-price-box span {
  color: #64748b;
}

.explorer-price-box .primary-button {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .results-search-form {
    grid-template-columns: 1fr 1fr;
  }

  .results-search-form .primary-button {
    grid-column: 1 / -1;
  }

  .results-layout {
    grid-template-columns: 1fr;
    padding: 18px 14px 44px;
  }

  .results-sidebar {
    position: static;
  }

  .explorer-result-card {
    grid-template-columns: 1fr;
  }

  .explorer-car-image img {
    height: 190px;
  }

  .explorer-price-box {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .results-search-bar {
    padding: 14px;
  }

  .results-search-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .results-sidebar {
    display: none;
  }

  .results-page-heading h1 {
    font-size: 1.8rem;
  }

  .explorer-result-card {
    padding: 12px;
    border-radius: 16px;
  }

  .explorer-feature-grid span {
    font-size: 0.75rem;
  }
}
/* EXPLORER-STYLE MOBILE HOME */

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
    background: #f5f7fb;
  }

  .site-header {
    min-height: 74px;
    padding: 14px 18px;
    background: #ffffff;
    border-bottom: 1px solid #e5edf5;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    font-size: 1.25rem;
  }

  .brand span:last-child {
    font-size: 1.35rem;
  }

  .main-nav,
  .header-actions .ghost-button,
  .header-actions .primary-button {
    display: none !important;
  }

  .menu-button {
    display: inline-flex !important;
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  /* HERO */
  .rental-hero {
    display: block !important;
    min-height: auto !important;
    height: auto !important;
    padding: 34px 18px 26px !important;
    background: linear-gradient(135deg, #06111f 0%, #111827 55%, #263648 100%);
  }

  .rental-hero-content {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100%;
  }

  .hero-text {
    display: block !important;
  }

  .hero-text .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    color: #8ef0c3;
  }

  .hero-text h1 {
    max-width: 100%;
    margin-top: 14px;
    font-size: 2.55rem;
    line-height: 1.03;
    letter-spacing: -0.045em;
    color: #ffffff;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.86);
  }

  .hero-trust-row {
    display: flex !important;
    flex-wrap: wrap;
    gap: 9px;
  }

  .hero-trust-row span {
    width: auto !important;
    padding: 9px 13px;
    font-size: 0.85rem;
    color: #0f172a;
    background: #ffffff;
  }

  /* SEARCH BOX LIKE EXPLORER */
  .rental-search-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100%;
    max-width: 100%;
    margin-top: 4px;
    padding: 16px !important;
    border-radius: 18px !important;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  }

  .rental-search-card label,
  .rental-search-card label:nth-of-type(6),
  .rental-search-button {
    grid-column: auto !important;
  }

  .rental-search-card label {
    display: grid;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #334155;
  }

  .rental-search-card input,
  .rental-search-card select {
    min-height: 46px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid #dbe4ef;
    background: #f8fafc;
    font-size: 0.95rem;
    font-weight: 700;
  }

  .rental-search-button,
  .rental-search-card .primary-button {
    min-height: 50px;
    width: 100%;
    border-radius: 10px;
    font-size: 1rem;
  }

  .rental-search-note {
    justify-content: flex-start;
    font-size: 0.82rem;
  }

  /* PARTNERS STRIP SMALL */
  .hero-partners-strip {
    display: block !important;
    padding: 14px 16px 0 !important;
    background: #f5f7fb;
  }

  .hero-partners-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
  }

  .hero-partners-inner strong {
    font-size: 0.85rem;
  }

  .hero-partners-logos {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-partner-logo {
    flex: 0 0 88px;
    width: 88px;
    height: 44px;
  }

  /* CATEGORY SECTION LIKE EXPLORER CAR TYPES */
  .category-showcase {
    display: block !important;
    padding: 30px 16px 36px !important;
    background: #ffffff;
  }

  .category-showcase .section-intro {
    display: block !important;
    margin-bottom: 20px;
    text-align: center;
  }

  .category-showcase .section-intro .eyebrow {
    color: #0f8f6e;
  }

  .category-showcase .section-intro h2 {
    max-width: 340px;
    margin: 0 auto 10px;
    font-size: 1.8rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
  }

  .category-showcase .section-intro p {
    font-size: 0.95rem;
  }

  .category-card-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .category-card {
    display: grid !important;
    justify-items: center;
    gap: 8px;
    min-height: 205px;
    padding: 14px 10px !important;
    border: 1px solid #dbe4ef;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    text-align: center;
  }

  .category-card h3 {
    font-size: 0.82rem;
    letter-spacing: 0.02em;
  }

  .category-card img {
    width: 100%;
    height: 86px !important;
    object-fit: contain;
  }

  .category-card strong {
    display: block !important;
    font-size: 1rem;
    color: #047857;
  }

  .category-card span {
    display: block !important;
    font-size: 0.78rem;
    color: #64748b;
  }

  .category-card small {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 8px;
    background: #0f8f6e;
    color: #ffffff;
    font-size: 0.72rem;
  }

  /* Keep homepage simple on mobile */
  .marketplace-results {
    display: none !important;
  }

  .section-shell.benefits {
    display: grid !important;
    padding: 32px 16px !important;
    background: #f5f7fb;
  }

  .section-shell.benefits .section-intro {
    text-align: center;
  }

  .benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .benefit-card {
    padding: 18px;
    border-radius: 16px;
  }

  /* Hide heavy sections for mobile */
  .location-showcase,
  .partners-showcase,
  .workflow,
  #commission {
    display: none !important;
  }

  .faq-showcase {
    display: block !important;
    padding: 32px 16px !important;
    background: #ffffff;
  }

  .faq-grid {
    grid-template-columns: 1fr !important;
  }

  .new-footer {
    display: block !important;
    padding: 28px 16px;
  }
}
/* EXPLORER STYLE BOOKING PROTECTION */

.booking-section {
  display: grid;
  gap: 18px;
  padding: 22px;
  background: white;
  border: 1px solid #dbe4ef;
  border-radius: 18px;
}

.booking-section-heading {
  display: grid;
  gap: 6px;
}

.booking-section-heading h2 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.booking-section-heading span {
  color: #64748b;
}

.protection-options {
  display: grid;
  gap: 12px;
}

.protection-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid #dbe4ef;
  border-radius: 16px;
  background: #f8fafc;
  cursor: pointer;
}

.protection-card:hover {
  border-color: #0f8f6e;
}

.protection-card.recommended {
  border-color: #0f8f6e;
  background: #ecfdf5;
}

.protection-card input {
  margin-top: 4px;
}

.protection-card strong {
  display: block;
  color: #0f172a;
}

.protection-card span {
  display: inline-flex;
  margin: 5px 0;
  padding: 4px 8px;
  border-radius: 999px;
  background: white;
  color: #0f8f6e;
  font-size: 0.75rem;
  font-weight: 800;
}

.protection-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}

.protection-card b {
  color: #047857;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .booking-section {
    padding: 16px;
    border-radius: 16px;
  }

  .protection-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .protection-card b {
    grid-column: 2;
  }
}
/* PAYMENT SUCCESS CONFIRMATION */

.success-page-shell {
  min-height: calc(100vh - 90px);
  display: grid;
  place-items: start center;
  padding: 70px 18px;
  background: #f5f7fb;
}

.success-card {
  width: min(900px, 100%);
  display: grid;
  gap: 18px;
  padding: clamp(24px, 5vw, 46px);
  background: white;
  border: 1px solid #dbe4ef;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.success-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 2.4rem;
  font-weight: 900;
}

.success-card h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4rem);
  letter-spacing: -0.05em;
}

.success-card > p {
  max-width: 620px;
  margin: 0 auto;
  color: #475569;
}

.success-details {
  margin-top: 14px;
  text-align: left;
}

.confirmation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.confirmation-grid article {
  display: grid;
  gap: 5px;
  padding: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.confirmation-grid span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
}

.confirmation-grid strong {
  color: #0f172a;
}

.confirmation-extras {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 14px;
}

.confirmation-extras h3 {
  margin: 0;
}

.confirmation-extras div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.confirmation-note {
  margin-top: 14px;
  padding: 16px;
  background: #ecfdf5;
  border-radius: 14px;
  color: #065f46;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .success-page-shell {
    padding: 32px 14px;
  }

  .confirmation-grid {
    grid-template-columns: 1fr;
  }

  .success-card {
    padding: 22px;
    border-radius: 18px;
  }
}
.supplier-message-box {
  white-space: pre-wrap;
  padding: 16px;
  background: #0f172a;
  color: #d9f99d;
  border-radius: 14px;
  overflow-x: auto;
  font-size: 0.9rem;
  line-height: 1.6;
}
.supplier-message-box {
  white-space: pre-wrap;
  padding: 16px;
  background: #0f172a;
  color: #d9f99d;
  border-radius: 14px;
  overflow-x: auto;
  font-size: 0.9rem;
  line-height: 1.6;
}
.supplier-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.supplier-contact-status {
  margin-bottom: 14px;
}

.contacted-badge,
.pending-contact-badge {
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
}

.contacted-badge {
  background: #ecfdf5;
  color: #047857;
}

.pending-contact-badge {
  background: #fff7ed;
  color: #c2410c;
}

.supplier-message-box {
  white-space: pre-wrap;
  padding: 16px;
  background: #0f172a;
  color: #d9f99d;
  border-radius: 14px;
  overflow-x: auto;
  font-size: 0.9rem;
  line-height: 1.6;
}
/* EXPLORER STYLE LEFT FILTER SIDEBAR */

.explorer-sidebar {
  position: sticky;
  top: 18px;
  align-self: start;
  display: grid;
  gap: 22px;
  padding: 0;
  background: transparent;
  border: 0;
}

.explorer-search-card,
.explorer-filter-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.045);
}

.explorer-search-card h3,
.explorer-filter-card h3 {
  position: relative;
  margin: 0 0 6px;
  color: #14326b;
  font-size: 1.3rem;
  font-weight: 900;
}

.explorer-search-card h3::after,
.explorer-filter-card h3::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin-top: 8px;
  background: #35b84b;
  border-radius: 999px;
}

.explorer-search-card label,
.explorer-filter-card label {
  display: grid;
  gap: 7px;
  color: #8a96aa;
  font-size: 0.9rem;
  font-weight: 700;
}

.explorer-search-card input,
.explorer-search-card select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid #dbe4ef;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 700;
}

.sidebar-date-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 8px;
}

.driver-age-line {
  margin: 2px 0;
  color: #6b7890;
  font-size: 0.9rem;
  line-height: 1.5;
}

.driver-age-line strong {
  color: #14326b;
  text-decoration: underline;
}

.explorer-search-card .primary-button {
  min-height: 48px;
  border-radius: 12px;
  background: #35b84b;
}

.check-row {
  display: flex !important;
  grid-template-columns: none !important;
  flex-direction: row;
  align-items: center;
  gap: 10px !important;
  color: #73819a !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
}

.check-row input {
  width: 16px;
  height: 16px;
  accent-color: #35b84b;
}

.explorer-filter-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .explorer-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .explorer-sidebar {
    display: none;
  }
}
/* FIX EXPLORER SIDEBAR DATE/TIME OVERLAP */

.sidebar-date-grid {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 8px;
  align-items: end;
}

.sidebar-date-grid label {
  min-width: 0;
}

.sidebar-date-grid input {
  min-width: 0;
  width: 100%;
}

@media (max-width: 1200px) {
  .sidebar-date-grid {
    grid-template-columns: 1fr;
  }
}
.results-sort-box select {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid #dbe4ef;
  border-radius: 12px;
  background: white;
  color: #0f172a;
  font-weight: 800;
}

@media (max-width: 760px) {
  .results-page-heading {
    display: grid;
    gap: 12px;
  }

  .results-sort-box select {
    width: 100%;
  }
}
/* =========================================================
   RENTLINK PREMIUM DESIGN V2
   Safe override layer. Keep this at the bottom of styles.css
   ========================================================= */
:root {
  --ink: #111827;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --paper: #ffffff;
  --brand: #0f766e;
  --brand-dark: #0b4f4a;
  --accent: #f59e0b;
  --premium-dark: #08111f;
  --premium-card: rgba(255, 255, 255, 0.92);
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.16);
  --soft-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

body {
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.site-header {
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(226, 232, 240, 0.76);
  backdrop-filter: blur(22px);
}

.brand {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #14b8a6);
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.26);
}

.main-nav {
  gap: 24px;
  font-weight: 750;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.primary-button,
.ghost-button,
.filter-chip,
.icon-button,
.menu-button {
  border-radius: 14px;
}

.primary-button {
  background: linear-gradient(135deg, var(--brand), #14b8a6);
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.primary-button:hover {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  transform: translateY(-1px);
  box-shadow: 0 20px 44px rgba(15, 118, 110, 0.34);
}

.ghost-button,
.filter-chip,
.icon-button,
.menu-button {
  background: #f1f5f9;
  border: 1px solid rgba(226, 232, 240, 0.86);
}

.rental-hero {
  min-height: 760px;
  padding: 82px clamp(18px, 5vw, 76px) 94px;
  background: var(--premium-dark);
}

.rental-hero .hero-media {
  background:
    radial-gradient(circle at 72% 28%, rgba(20, 184, 166, 0.36), transparent 24%),
    linear-gradient(90deg, rgba(3, 7, 18, 0.93), rgba(15, 23, 42, 0.72) 48%, rgba(15, 23, 42, 0.34)),
    url("https://images.unsplash.com/photo-1549925862-99049e27b5b6?auto=format&fit=crop&w=2400&q=85") center / cover;
}

.rental-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.65), transparent 82%);
}

.rental-hero::after {
  height: 36%;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0), #f8fafc 84%);
}

.rental-hero-content {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 520px);
  gap: clamp(36px, 7vw, 96px);
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  color: #a7f3d0;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(167, 243, 208, 0.22);
  border-radius: 999px;
}

.hero-text h1 {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(3.3rem, 7vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.hero-trust-row {
  gap: 12px;
  max-width: 620px;
}

.hero-trust-row span {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-trust-row strong {
  color: #5eead4;
}

.rental-search-card {
  position: relative;
  max-width: 540px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.rental-search-card::before {
  grid-column: 1 / -1;
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  content: "Search your rental";
  font-size: 1.25rem;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.rental-search-card::after {
  position: absolute;
  top: 18px;
  right: 20px;
  padding: 7px 10px;
  color: var(--brand-dark);
  content: "Best price first";
  background: #ccfbf1;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
}

.rental-search-card label {
  color: #475569;
  letter-spacing: 0.01em;
}

.rental-search-card input,
.rental-search-card select,
input,
select {
  border-color: #dbe4ee;
  border-radius: 14px;
  background: #ffffff;
}

.rental-search-card input:focus,
.rental-search-card select:focus {
  border-color: #14b8a6;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.13);
}

.rental-search-note {
  justify-content: start;
}

.rental-search-note span {
  color: #0f766e;
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
}

.hero-partners-strip {
  margin-top: -58px;
}

.hero-partners-inner {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
}

.hero-partner-logo,
.partner-card,
.category-card,
.location-card,
.filter-box,
.results-toolbar,
.results-count-box,
.market-car-card,
.booking-detail-card,
.booking-summary-sticky,
.faq-grid article {
  border-color: rgba(226, 232, 240, 0.9);
  box-shadow: var(--soft-shadow);
}

.section-shell,
.category-showcase,
.location-showcase,
.partners-showcase,
.faq-showcase {
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(64px, 7vw, 96px);
}

.section-intro h2,
.results-header h2,
.benefits h2 {
  letter-spacing: -0.045em;
}

.section-intro h2::after {
  width: 96px;
  background: linear-gradient(90deg, var(--brand), #14b8a6, var(--accent));
}

.benefits {
  width: min(1180px, calc(100% - 36px));
  margin-top: 24px;
  border-radius: 32px;
  padding: clamp(42px, 5vw, 62px);
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.14), transparent 34%),
    white;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--soft-shadow);
}

.benefit-grid article {
  border-radius: 22px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.benefit-grid article:hover,
.category-card:hover,
.location-card:hover,
.partner-card:hover,
.market-car-card:hover,
.faq-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.category-showcase {
  background:
    radial-gradient(circle at 12% 12%, rgba(245, 158, 11, 0.12), transparent 30%),
    linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
}

.category-card-grid {
  gap: 18px;
}

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 252px;
  border-radius: 24px;
}

.category-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(15, 118, 110, 0), rgba(15, 118, 110, 0.05));
  pointer-events: none;
}

.category-card img {
  height: 132px;
  filter: drop-shadow(0 20px 16px rgba(15, 23, 42, 0.12));
  transform: scale(1.02);
}

.category-card small,
.category-tabs .filter-chip.active,
.filter-chip:hover {
  background: linear-gradient(135deg, var(--premium-dark), #1f2937);
}

.marketplace-results {
  width: min(1240px, calc(100% - 36px));
}

.results-header {
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(245, 158, 11, 0.08)),
    white;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.market-layout {
  gap: 26px;
}

.filter-box,
.results-toolbar,
.market-car-card {
  border-radius: 24px;
}

.market-car-card {
  grid-template-columns: 260px minmax(0, 1fr) 210px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.96);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.market-car-card:hover {
  border-color: rgba(20, 184, 166, 0.36);
}

.market-car-image {
  border-radius: 20px;
}

.market-car-image img {
  min-height: 190px;
  transition: transform 220ms ease;
}

.market-car-card:hover .market-car-image img {
  transform: scale(1.04);
}

.supplier-badge {
  left: 12px;
  bottom: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(10px);
}

.market-car-top h3 {
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.market-features span {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.market-price-box {
  border-radius: 20px;
  background:
    radial-gradient(circle at top, rgba(20, 184, 166, 0.16), transparent 45%),
    #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.market-price-box strong {
  color: var(--brand-dark);
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.location-card,
.partner-card,
.faq-grid article {
  border-radius: 24px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.location-card img {
  height: 180px;
}

.partners-showcase {
  background:
    radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.12), transparent 30%),
    #f8fafc;
}

.new-footer {
  background:
    radial-gradient(circle at 18% 20%, rgba(20, 184, 166, 0.22), transparent 25%),
    linear-gradient(135deg, #030712, #111827 56%, #0f172a);
}

.footer-grid {
  align-items: start;
}

.booking-summary-sticky .summary-head {
  background: linear-gradient(135deg, var(--premium-dark), #334155);
}

@media (max-width: 1080px) {
  .rental-hero {
    min-height: auto;
    padding-top: 58px;
  }

  .rental-hero-content,
  .benefits,
  .market-layout,
  .booking-flow-layout {
    grid-template-columns: 1fr;
  }

  .rental-search-card {
    justify-self: stretch;
  }

  .market-filters {
    position: static;
  }
}

@media (max-width: 980px) {
  .site-header.menu-open .main-nav,
  .site-header.menu-open .header-actions {
    border-radius: 22px;
  }

  .benefit-grid,
  .category-card-grid,
  .location-card-grid,
  .faq-grid,
  .footer-grid,
  .partners-grid {
    grid-template-columns: 1fr 1fr;
  }

  .market-car-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
  }

  .brand span:last-child {
    font-size: 1rem;
  }

  .rental-hero {
    padding: 42px 18px 58px;
  }

  .hero-text h1 {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .rental-search-card {
    padding: 18px;
    border-radius: 24px;
  }

  .rental-search-card::after {
    position: static;
    grid-column: 1 / -1;
    width: fit-content;
    margin-bottom: 4px;
  }

  .hero-trust-row span {
    width: auto;
  }

  .hero-partners-strip {
    margin-top: 0;
  }

  .benefit-grid,
  .category-card-grid,
  .location-card-grid,
  .faq-grid,
  .footer-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .marketplace-results,
  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .results-header {
    padding: 20px;
  }

  .market-car-image img {
    min-height: 220px;
  }
}

/* Premium admin dashboard refresh v3 */
.portal-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(13, 124, 102, 0.13), transparent 34rem),
    radial-gradient(circle at top right, rgba(240, 180, 60, 0.12), transparent 32rem),
    linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.portal-body .site-header {
  min-height: 76px;
  padding-inline: clamp(22px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(207, 216, 226, 0.72);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.055);
}

.portal-body .brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0d9488, #087563);
  box-shadow: 0 14px 30px rgba(13, 124, 102, 0.28);
}

.portal-shell {
  width: min(1420px, calc(100% - 48px));
  padding-top: 36px;
}

.dashboard {
  gap: 28px;
}

.dashboard-heading {
  position: relative;
  overflow: hidden;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  color: white;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.22), transparent 13rem),
    linear-gradient(135deg, #101827 0%, #0c3d3a 58%, #0d7c66 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
}

.dashboard-heading::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 360px;
  height: 360px;
  content: "";
  background: radial-gradient(circle, rgba(240, 180, 60, 0.35), transparent 65%);
  border-radius: 50%;
}

.dashboard-heading > * {
  position: relative;
  z-index: 1;
}

.dashboard-heading .eyebrow {
  color: #9ff4da;
}

.dashboard-heading h1 {
  max-width: 860px;
  color: white;
  text-wrap: balance;
}

.dashboard-heading p {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 650;
}

.admin-tabs {
  display: flex;
  gap: 12px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 8px;
  margin-top: -12px;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(220, 227, 236, 0.9);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
  backdrop-filter: blur(18px);
}

.admin-tab {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 13px;
  box-shadow: none;
  white-space: nowrap;
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.admin-tab:hover {
  transform: translateY(-1px);
  background: #edf3f7;
}

.admin-tab.active {
  background: linear-gradient(135deg, #0d9488, #087563);
  box-shadow: 0 14px 24px rgba(13, 124, 102, 0.24);
}

.stat-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.stat-grid article,
.admin-table-wrap,
.edit-card {
  border: 1px solid rgba(220, 227, 236, 0.88);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.stat-grid article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
}

.stat-grid article::after {
  position: absolute;
  right: -36px;
  top: -44px;
  width: 110px;
  height: 110px;
  content: "";
  background: rgba(13, 124, 102, 0.08);
  border-radius: 50%;
}

.stat-grid strong {
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  letter-spacing: -0.04em;
}

.table-heading {
  min-height: 76px;
  padding: 22px 26px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.table-heading h2 {
  letter-spacing: -0.03em;
}

#companyReservationsTable {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: #f8fafc;
}

.reservation-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 1.1fr) minmax(240px, 1.15fr) minmax(130px, 0.65fr) minmax(170px, 0.8fr) auto;
  gap: 20px;
  align-items: center;
  padding: 20px 22px 20px 24px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(220, 227, 236, 0.95);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.055);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.reservation-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: #f0b43c;
}

.reservation-card.accepted::before {
  background: #0d9488;
}

.reservation-card.rejected::before,
.reservation-card.cancelled::before {
  background: #ef4444;
}

.reservation-card:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 124, 102, 0.25);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
}

.reservation-label {
  display: block;
  margin-bottom: 7px;
  color: #94a3b8 !important;
  font-size: 0.72rem !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reservation-card strong {
  color: #0f172a;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.reservation-main span,
.reservation-details span,
.reservation-money span {
  color: #64748b;
  font-weight: 600;
}

.reservation-money strong {
  font-size: 1.14rem;
}

.reservation-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.status-pill,
.payment-pill {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.payment-pill.paid,
.status-pill.accepted {
  color: #047857;
  background: #dff8ef;
}

.payment-pill.unpaid,
.status-pill.pending {
  color: #a16207;
  background: #fff2cc;
}

.payment-pill.cancelled,
.status-pill.rejected,
.status-pill.cancelled {
  color: #b91c1c;
  background: #ffe4e6;
}

.reservation-actions {
  gap: 9px;
  justify-content: flex-end;
}

.reservation-actions .ghost-button {
  min-height: 38px;
  border: 1px solid #dbe4ee;
  border-radius: 12px;
  background: #f8fafc;
  box-shadow: none;
}

.reservation-actions .ghost-button:hover {
  transform: translateY(-1px);
}

.reservation-actions .accept-action {
  color: white;
  background: linear-gradient(135deg, #0d9488, #087563);
  border-color: transparent;
}

.reservation-actions .reject-action {
  color: #b91c1c;
  background: #fff1f2;
  border-color: #fecdd3;
}

.reservation-actions .details-action {
  color: #0f172a;
  background: white;
}

.admin-row {
  border-bottom-color: rgba(220, 227, 236, 0.72);
}

.admin-row img {
  border-radius: 16px;
}

.edit-card {
  border-radius: 24px;
}

@media (max-width: 1180px) {
  .stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reservation-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .reservation-badges,
  .reservation-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .portal-shell {
    width: min(100% - 28px, 1420px);
    padding-top: 22px;
  }

  .dashboard-heading {
    border-radius: 22px;
  }

  .admin-tabs {
    width: 100%;
  }

  .stat-grid,
  .reservation-card {
    grid-template-columns: 1fr;
  }

  #companyReservationsTable {
    padding: 12px;
  }
}


/* =========================================================
   RENTLINK PUBLIC PREMIUM V4
   Homepage + public search/booking polish. Keep at bottom.
   ========================================================= */
:root {
  --rl-bg: #f6f8fb;
  --rl-ink: #07111f;
  --rl-muted: #607089;
  --rl-line: #dbe5f0;
  --rl-brand: #0f766e;
  --rl-brand-2: #14b8a6;
  --rl-gold: #f59e0b;
  --rl-navy: #06111f;
  --rl-card: rgba(255,255,255,.92);
}

.public-home,
.results-page,
.booking-page-body {
  background:
    radial-gradient(circle at 12% 8%, rgba(20,184,166,.14), transparent 26rem),
    radial-gradient(circle at 85% 16%, rgba(245,158,11,.10), transparent 25rem),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 52%, #eef5f8 100%);
  color: var(--rl-ink);
}

.premium-header.site-header {
  min-height: 82px;
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(219,229,240,.85);
  box-shadow: 0 12px 40px rgba(15,23,42,.06);
  backdrop-filter: blur(24px);
}

.premium-header .brand-mark,
.public-home .brand-mark {
  border-radius: 15px;
  background: linear-gradient(145deg, #0f766e 0%, #14b8a6 100%);
  box-shadow: 0 16px 34px rgba(15,118,110,.28);
}

.premium-hero.rental-hero {
  min-height: 820px;
  align-items: center;
  padding: clamp(54px, 7vw, 94px) clamp(18px, 5vw, 84px) 112px;
  background: var(--rl-navy);
  overflow: hidden;
}

.premium-hero .hero-media {
  background:
    linear-gradient(90deg, rgba(3,7,18,.96) 0%, rgba(7,17,31,.80) 46%, rgba(7,17,31,.32) 100%),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=2600&q=88") center / cover no-repeat;
  transform: scale(1.02);
}

.premium-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 28%, rgba(20,184,166,.36), transparent 20rem),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: auto, 54px 54px, 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.82), transparent 88%);
}

.premium-hero.rental-hero::after {
  height: 42%;
  background: linear-gradient(180deg, rgba(246,248,251,0), #f6f8fb 86%);
}

.premium-hero-content.rental-hero-content {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 540px);
  gap: clamp(42px, 7vw, 108px);
  width: min(1280px, 100%);
}

.premium-hero-text .eyebrow,
.public-home .eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: #99f6e4;
  background: rgba(20,184,166,.13);
  border: 1px solid rgba(153,246,228,.22);
}

.premium-hero-text h1 {
  max-width: 760px;
  margin: 18px 0 22px;
  color: #fff;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  line-height: .88;
  letter-spacing: -.075em;
  text-wrap: balance;
}

.premium-hero-text .hero-copy {
  max-width: 650px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.02rem, 1.4vw, 1.23rem);
}

.premium-trust-row span {
  color: #fff;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(16px);
}

.premium-trust-row strong { color: #5eead4; }

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 630px;
  margin-top: 26px;
}

.hero-stat-grid article {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.hero-stat-grid strong,
.hero-stat-grid span { display: block; }
.hero-stat-grid strong { color: #fff; font-size: 1.55rem; line-height: 1; }
.hero-stat-grid span { margin-top: 6px; color: rgba(255,255,255,.66); font-weight: 750; font-size: .88rem; }

.premium-search-card.rental-search-card {
  position: relative;
  max-width: 560px;
  padding: 24px;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 32px;
  box-shadow: 0 34px 100px rgba(0,0,0,.30);
  backdrop-filter: blur(22px);
}

.premium-search-card::before,
.premium-search-card::after { content: none !important; }
.search-card-head,
.premium-search-card .full-field,
.premium-search-card .rental-search-button,
.premium-search-card .premium-search-note { grid-column: 1 / -1; }

.search-card-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 4px;
}
.search-card-head span,
.search-card-head strong { display: block; }
.search-card-head span { color: var(--rl-brand); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
.search-card-head strong { font-size: 1.55rem; letter-spacing: -.04em; }
.search-card-head em {
  padding: 8px 11px;
  color: #0b4f4a;
  background: #ccfbf1;
  border-radius: 999px;
  font-style: normal;
  font-size: .75rem;
  font-weight: 900;
  white-space: nowrap;
}

.premium-search-card label { color: #475569; }
.premium-search-card input,
.premium-search-card select {
  min-height: 54px;
  border: 1px solid #dbe5f0;
  border-radius: 16px;
  background: #fff;
  font-weight: 800;
}
.premium-search-card input:focus,
.premium-search-card select:focus {
  border-color: var(--rl-brand-2);
  box-shadow: 0 0 0 4px rgba(20,184,166,.14);
}
.premium-search-card .primary-button { min-height: 56px; border-radius: 16px; font-size: 1rem; }
.premium-search-note { justify-content: center; }
.premium-search-note span { background: #f0fdfa; border: 1px solid #ccfbf1; color: #0f766e; }

.premium-partners-strip { margin-top: -62px; }
.premium-partners-strip .hero-partners-inner {
  width: min(1160px, 100%);
  border-radius: 26px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 22px 54px rgba(15,23,42,.15);
}

.premium-category-section.category-showcase {
  padding: clamp(78px, 8vw, 116px) clamp(18px, 4vw, 64px);
  background:
    radial-gradient(circle at 10% 8%, rgba(245,158,11,.16), transparent 28rem),
    linear-gradient(180deg, #fff7ed 0%, #fff 70%);
}

.premium-category-grid.category-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  width: min(1240px, 100%);
}

.premium-category-card.category-card {
  align-content: stretch;
  justify-items: stretch;
  min-height: 310px;
  overflow: hidden;
  padding: 0;
  border-radius: 28px;
  background: #fff;
  text-align: left;
  box-shadow: 0 18px 46px rgba(15,23,42,.09);
}
.premium-category-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  filter: none;
  transform: none;
}
.premium-category-card div { display: grid; gap: 4px; padding: 18px 18px 0; }
.premium-category-card h3 { margin: 0; font-size: .9rem; letter-spacing: .08em; color: #0f172a; }
.premium-category-card strong { font-size: 1.35rem; color: var(--rl-brand); }
.premium-category-card span { color: var(--rl-muted); font-weight: 700; }
.premium-category-card small {
  width: fit-content;
  margin: 8px 18px 18px;
  background: linear-gradient(135deg, var(--rl-navy), #1f2937);
}

.premium-route-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(74px, 8vw, 112px) 0;
}
.route-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  min-height: 520px;
  box-shadow: 0 30px 80px rgba(15,23,42,.16);
}
.route-image-card img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; display: block; }
.route-image-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 40%, rgba(3,7,18,.74)); }
.route-image-card span {
  position: absolute; left: 24px; bottom: 24px; z-index: 1;
  padding: 10px 14px; border-radius: 999px;
  color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  font-weight: 900; backdrop-filter: blur(12px);
}
.route-copy h2 { font-size: clamp(2.4rem, 4.6vw, 4.6rem); letter-spacing: -.07em; }
.route-copy p:not(.eyebrow) { color: var(--rl-muted); font-size: 1.08rem; line-height: 1.7; }
.premium-benefit-list { display: grid; gap: 14px; margin-top: 24px; }
.premium-benefit-list article {
  display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; align-items: start;
  padding: 18px; border: 1px solid var(--rl-line); border-radius: 22px; background: #fff; box-shadow: 0 12px 28px rgba(15,23,42,.055);
}
.premium-benefit-list i { grid-row: span 2; color: var(--rl-brand); }
.premium-benefit-list strong { font-size: 1.05rem; }
.premium-benefit-list span { color: var(--rl-muted); }

.premium-locations.location-showcase {
  padding: clamp(78px, 8vw, 116px) clamp(18px, 4vw, 64px);
  background:
    radial-gradient(circle at 85% 10%, rgba(20,184,166,.14), transparent 26rem),
    #ffffff;
}
.premium-location-grid.location-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1160px, 100%);
}
.premium-location-card.location-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  border-radius: 30px;
  text-align: left;
  border: 1px solid rgba(219,229,240,.9);
  box-shadow: 0 20px 50px rgba(15,23,42,.10);
}
.premium-location-card img { height: 100%; min-height: 285px; object-fit: cover; filter: saturate(1.08) contrast(1.04); }
.premium-location-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(3,7,18,.05) 25%, rgba(3,7,18,.78) 100%); }
.premium-location-card div { position: absolute; z-index: 1; left: 22px; right: 22px; bottom: 20px; }
.premium-location-card strong { padding: 0; color: #fff; font-size: 1.28rem; letter-spacing: -.03em; }
.premium-location-card span { padding: 8px 0 0; color: #99f6e4; }

.premium-approved.partners-showcase {
  background:
    linear-gradient(135deg, rgba(20,184,166,.12), rgba(245,158,11,.08)),
    #f8fafc;
}
.partner-card { border-radius: 24px; }

.premium-faq.faq-showcase { background: #fff; }
.premium-faq .faq-grid article { border-radius: 24px; }

.premium-footer.new-footer {
  background:
    radial-gradient(circle at 18% 22%, rgba(20,184,166,.23), transparent 24rem),
    linear-gradient(135deg, #020617, #0f172a 60%, #111827);
}

.public-home .marketplace-results { display: none; }
.public-home.category-selected .marketplace-results { display: block; }
.public-home.category-selected .premium-route-section,
.public-home.category-selected .premium-locations,
.public-home.category-selected .premium-approved,
.public-home.category-selected .premium-faq { display: none; }

/* Search results public page premium */
.results-search-bar {
  padding: 34px clamp(18px, 4vw, 64px);
  background:
    linear-gradient(90deg, rgba(3,7,18,.94), rgba(15,23,42,.68)),
    url("https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&w=2200&q=85") center / cover no-repeat;
}
.results-search-form,
.explorer-search-card,
.explorer-filter-card,
.explorer-result-card,
.booking-detail-card,
.booking-section,
.booking-summary-sticky {
  border-radius: 24px;
  border-color: rgba(219,229,240,.9);
  box-shadow: 0 18px 48px rgba(15,23,42,.08);
}
.explorer-result-card { transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease; }
.explorer-result-card:hover { transform: translateY(-4px); border-color: rgba(20,184,166,.38); box-shadow: 0 24px 60px rgba(15,23,42,.12); }
.explorer-car-image img { object-fit: cover; }
.explorer-price-box { background: radial-gradient(circle at top, rgba(20,184,166,.16), transparent 42%), #f8fafc; }
.explorer-price-box strong { color: var(--rl-brand); }

/* Booking page premium */
.booking-page-shell { padding-top: 52px; }
.booking-page-body .booking-flow-layout { align-items: start; }
.booking-page-body .booking-car-image-box { border-radius: 22px; background: radial-gradient(circle at top, rgba(20,184,166,.10), transparent 44%), #f8fafc; }
.booking-page-body .booking-car-image-box img { object-fit: cover; border-radius: 18px; }
.booking-page-body .summary-head { background: linear-gradient(135deg, #06111f, #0f766e); }
.protection-card.recommended { background: #f0fdfa; border-color: rgba(20,184,166,.42); }

@media (max-width: 1080px) {
  .premium-hero-content.rental-hero-content,
  .premium-route-section { grid-template-columns: 1fr; }
  .premium-search-card.rental-search-card { justify-self: start; max-width: 100%; }
  .route-image-card, .route-image-card img { min-height: 360px; }
  .premium-category-grid.category-card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  .premium-location-grid.location-card-grid { grid-template-columns: 1fr 1fr; }
  .hero-stat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .premium-header.site-header { min-height: 72px; }
  .premium-hero.rental-hero { padding: 36px 16px 40px !important; }
  .premium-hero .hero-media { background-position: center; }
  .premium-hero-text h1 { font-size: clamp(2.55rem, 14vw, 3.9rem); line-height: .95; }
  .hero-stat-grid { grid-template-columns: 1fr; }
  .premium-search-card.rental-search-card { grid-template-columns: 1fr; padding: 18px !important; border-radius: 24px; }
  .search-card-head { display: grid; }
  .search-card-head em { width: fit-content; }
  .premium-category-section.category-showcase,
  .premium-locations.location-showcase,
  .premium-approved.partners-showcase,
  .premium-faq.faq-showcase { display: block !important; padding: 46px 16px !important; }
  .premium-category-grid.category-card-grid,
  .premium-location-grid.location-card-grid,
  .partners-grid,
  .faq-grid,
  .footer-grid { grid-template-columns: 1fr !important; }
  .premium-category-card.category-card { min-height: auto; }
  .premium-category-card img { height: 190px !important; object-fit: cover !important; }
  .premium-route-section { width: calc(100% - 32px); padding: 46px 0; }
  .route-copy h2 { font-size: 2.35rem; }
  .premium-location-card.location-card { min-height: 245px; }
  .premium-location-card img { min-height: 245px; }
  .public-home .marketplace-results { display: none !important; }
  .public-home.category-selected .marketplace-results { display: block !important; }
  .results-search-form { grid-template-columns: 1fr !important; }
  .explorer-result-card { border-radius: 20px; }
}


/* RentLink official transparent logo integration */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  text-decoration: none;
}
.brand-logo {
  display: block;
  width: auto;
  height: 54px;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(2, 21, 40, 0.10));
}
.premium-header .brand-logo,
.public-home .brand-logo,
.site-header .brand-logo {
  height: 56px;
  max-width: 230px;
}
.portal-body .brand-logo,
.admin-shell .brand-logo {
  height: 54px;
  max-width: 220px;
}
.footer-brand .brand-logo,
.footer-logo {
  height: 68px;
  max-width: 260px;
}
.brand-mark {
  display: none !important;
}
@media (max-width: 760px) {
  .brand-logo,
  .premium-header .brand-logo,
  .public-home .brand-logo,
  .site-header .brand-logo,
  .portal-body .brand-logo,
  .admin-shell .brand-logo {
    height: 44px;
    max-width: 180px;
  }
  .footer-brand .brand-logo,
  .footer-logo {
    height: 54px;
    max-width: 210px;
  }
}

/* =========================================================
   SEARCH RESULTS FIX V5 - animated compare overlay + logo-only suppliers
   ========================================================= */
.price-compare-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 38%, rgba(20, 184, 166, 0.22), transparent 22rem),
    linear-gradient(180deg, rgba(248, 250, 252, 0.88), rgba(241, 245, 249, 0.84));
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.price-compare-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.price-compare-modal {
  width: min(720px, 94vw);
  min-height: 460px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  padding: clamp(28px, 5vw, 52px);
  background:
    radial-gradient(circle at 50% 18%, rgba(20, 184, 166, 0.15), transparent 16rem),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.96));
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-radius: 34px;
  box-shadow: 0 36px 110px rgba(15, 23, 42, 0.18);
  text-align: center;
  transform: translateY(10px) scale(.985);
  transition: transform 280ms ease;
  overflow: hidden;
}

.price-compare-overlay.visible .price-compare-modal {
  transform: translateY(0) scale(1);
}

.price-compare-modal h2 {
  max-width: 520px;
  margin: 0;
  color: #12346b;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.price-compare-modal p:not(.eyebrow) {
  max-width: 500px;
  margin: 0;
  color: #52637c;
  font-weight: 800;
}

.search-animation-stage {
  position: relative;
  width: min(430px, 82vw);
  height: 132px;
  margin-bottom: 4px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 42%, rgba(20,184,166,.14), transparent 9rem),
    linear-gradient(180deg, rgba(239, 253, 250, 0.92), rgba(255, 255, 255, 0));
}

.road-line {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 28px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(203, 213, 225, 0.95);
}

.road-line::after {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(90deg, transparent 0 22px, rgba(15, 118, 110, .9) 22px 42px);
  animation: roadMove 850ms linear infinite;
}

.animated-car {
  position: absolute;
  left: 50%;
  bottom: 36px;
  width: 168px;
  height: 70px;
  transform: translateX(-50%);
  animation: carFloat 1.25s ease-in-out infinite;
}

.car-body {
  position: absolute;
  left: 8px;
  right: 6px;
  bottom: 10px;
  height: 34px;
  border-radius: 30px 42px 18px 18px;
  background: linear-gradient(135deg, #0f766e, #20d5c5 62%, #2563eb);
  box-shadow: 0 16px 34px rgba(15, 118, 110, .28);
}

.car-roof {
  position: absolute;
  left: 44px;
  top: 8px;
  width: 78px;
  height: 44px;
  border-radius: 44px 48px 0 0;
  background: linear-gradient(135deg, #0b4f4a, #14b8a6);
  clip-path: polygon(12% 100%, 30% 18%, 72% 18%, 96% 100%);
}

.car-window {
  position: absolute;
  left: 66px;
  top: 18px;
  width: 42px;
  height: 20px;
  border-radius: 16px 18px 4px 4px;
  background: rgba(240, 253, 250, .92);
  clip-path: polygon(0 100%, 24% 0, 100% 0, 82% 100%);
}

.wheel {
  position: absolute;
  bottom: 0;
  width: 30px;
  height: 30px;
  border: 7px solid #0f172a;
  border-top-color: #14b8a6;
  border-radius: 999px;
  background: #fff;
  animation: wheelSpin 650ms linear infinite;
}

.wheel-left { left: 34px; }
.wheel-right { right: 28px; }

.scan-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #14b8a6;
  box-shadow: 0 0 0 8px rgba(20,184,166,.12);
  opacity: .92;
  animation: scanPulse 1.2s ease-in-out infinite;
}

.dot-one { left: 18%; top: 28px; animation-delay: .1s; }
.dot-two { left: 78%; top: 38px; animation-delay: .35s; }
.dot-three { left: 50%; top: 8px; animation-delay: .6s; }

.compare-progress {
  width: min(420px, 82vw);
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, .08);
}

.compare-progress span {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f766e, #14b8a6, #60a5fa);
  animation: compareLoading 1.15s ease-in-out infinite;
}

.compare-company-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.compare-company-logo,
.supplier-logo-pill {
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(203, 213, 225, .95);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .08);
}

.compare-company-logo {
  width: 84px;
  height: 48px;
  border-radius: 16px;
}

.supplier-logo-pill {
  width: 96px;
  height: 46px;
  border-radius: 15px;
}

.compare-company-logo img,
.supplier-logo-pill img {
  max-width: 82%;
  max-height: 72%;
  object-fit: contain;
}

.compare-company-logo b,
.supplier-logo-pill b {
  display: none;
  color: #0f766e;
  font-size: .95rem;
  font-weight: 950;
  letter-spacing: -.02em;
}

.compare-company-logo.logo-fallback b,
.supplier-logo-pill.logo-fallback b {
  display: block;
}

.supplier-logo-line {
  display: flex;
  align-items: center;
  min-height: 46px;
  margin-top: 6px;
}

.explorer-car-top .rating {
  align-self: start;
}

@keyframes roadMove {
  from { transform: translateX(0); }
  to { transform: translateX(-42px); }
}

@keyframes carFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes wheelSpin {
  to { transform: rotate(360deg); }
}

@keyframes scanPulse {
  0%, 100% { transform: scale(.75); opacity: .45; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes compareLoading {
  0% { transform: translateX(-110%); }
  50% { transform: translateX(70%); }
  100% { transform: translateX(240%); }
}

@media (max-width: 760px) {
  .price-compare-modal {
    min-height: 430px;
    border-radius: 26px;
  }

  .search-animation-stage {
    height: 112px;
  }

  .animated-car {
    transform: translateX(-50%) scale(.84);
  }

  .compare-company-logo {
    width: 68px;
    height: 42px;
  }
}

/* =========================================================
   SEARCH RESULTS V6 - slower premium loader + luxury deal cards
   ========================================================= */
.price-compare-overlay {
  background:
    radial-gradient(circle at 50% 30%, rgba(20, 184, 166, 0.30), transparent 24rem),
    radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.14), transparent 24rem),
    linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(241, 245, 249, 0.88));
}
.price-compare-modal {
  min-height: 500px;
  border-radius: 38px;
  border: 1px solid rgba(191, 219, 254, 0.95);
  box-shadow: 0 48px 140px rgba(15, 23, 42, 0.22);
}
.search-animation-stage {
  height: 150px;
  background:
    radial-gradient(circle at 50% 42%, rgba(20,184,166,.22), transparent 9rem),
    linear-gradient(180deg, rgba(239, 253, 250, 0.95), rgba(255, 255, 255, 0));
}
.compare-progress span {
  animation: compareLoading 2.2s ease-in-out infinite;
}
.animated-car {
  animation: carFloat 1.7s ease-in-out infinite;
}
.wheel {
  animation: wheelSpin 950ms linear infinite;
}
.scan-dot {
  animation: scanPulse 1.8s ease-in-out infinite;
}

.search-results-grid {
  gap: 22px;
}

.explorer-result-card.premium-deal-card {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  border: 1px solid rgba(203, 213, 225, 0.95);
  box-shadow: 0 22px 65px rgba(15, 23, 42, 0.10);
}
.explorer-result-card.premium-deal-card::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, #14b8a6, #22c55e, #f59e0b);
}
.explorer-result-card.premium-deal-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 184, 166, 0.55);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.16);
}
.deal-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px 14px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}
.deal-card-head h2 {
  margin: 0 0 5px;
  color: #0f2747;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.deal-card-head p {
  margin: 0;
  color: #64748b;
  font-weight: 800;
}
.deal-card-head p strong {
  color: #0f766e;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .74rem;
}
.deal-supplier-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.deal-supplier-wrap .supplier-logo-pill {
  width: 98px;
  height: 48px;
  border-radius: 14px;
}
.deal-supplier-wrap .rating {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff7ed;
  color: #b45309;
  font-weight: 950;
  border: 1px solid #fed7aa;
}
.deal-card-body {
  display: grid;
  grid-template-columns: minmax(250px, 34%) minmax(230px, 1fr) 260px;
  gap: 22px;
  align-items: stretch;
  padding: 20px 26px 24px;
}
.deal-media-column {
  display: grid;
  gap: 14px;
  align-content: start;
}
.deal-spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.deal-spec-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: #173a68;
  font-size: .78rem;
  font-weight: 950;
  border: 1px solid rgba(191, 219, 254, .8);
}
.deal-car-image {
  position: relative;
  min-height: 210px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 65%, rgba(20,184,166,.14), transparent 42%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid rgba(226, 232, 240, .95);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}
.deal-car-image::after {
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 22px;
  height: 14px;
  content: "";
  border-radius: 999px;
  background: rgba(15, 23, 42, .12);
  filter: blur(10px);
}
.deal-car-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 220px;
  object-fit: contain !important;
  padding: 14px;
  transform: scale(1.03);
}
.deal-info-column {
  display: grid;
  align-content: center;
  padding: 4px 0;
}
.premium-info-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.premium-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #475569;
  font-weight: 850;
}
.premium-info-list li span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 30px;
  height: 30px;
  border-radius: 10px;
  background: #ecfdf5;
  color: #059669;
  font-weight: 950;
}
.premium-info-list li strong {
  font-size: .92rem;
}
.deal-price-box {
  display: grid;
  align-content: center;
  justify-items: stretch;
  gap: 9px;
  padding: 22px;
  border-radius: 24px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(20,184,166,.22), transparent 48%),
    linear-gradient(180deg, #f8fffd, #f8fafc);
  border: 1px solid rgba(187, 247, 208, .95);
  box-shadow: 0 18px 42px rgba(20, 184, 166, .10);
}
.deal-price-box span {
  color: #64748b;
  font-weight: 850;
}
.deal-price-box strong {
  color: #07906f;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.045em;
}
.deal-price-box small {
  color: #64748b;
  font-weight: 800;
}
.deal-price-box em {
  color: #64748b;
  font-style: normal;
  font-size: .82rem;
  font-weight: 750;
}
.deal-price-box .primary-button {
  justify-content: center;
  min-height: 48px;
  border-radius: 14px;
  box-shadow: 0 16px 28px rgba(15, 118, 110, .22);
}
.deal-info-button {
  min-height: 40px;
  border: 0;
  background: transparent;
  color: #173a68;
  font-weight: 900;
  cursor: pointer;
}
.deal-info-button::before {
  content: "ⓘ ";
}

@media (max-width: 1120px) {
  .deal-card-body {
    grid-template-columns: 1fr 1fr;
  }
  .deal-price-box {
    grid-column: 1 / -1;
  }
}
@media (max-width: 760px) {
  .price-compare-modal {
    min-height: 470px;
    padding: 26px 18px;
  }
  .deal-card-head {
    flex-direction: column;
    padding: 20px 18px 14px;
  }
  .deal-card-body {
    grid-template-columns: 1fr;
    padding: 16px 18px 20px;
  }
  .deal-car-image img {
    height: 190px;
  }
  .deal-supplier-wrap {
    width: 100%;
    justify-content: space-between;
  }
}

/* PREMIUM BOOKING DETAILS V7 */
.booking-premium-page {
  --booking-navy: #0b1b3f;
  --booking-ink: #0f172a;
  --booking-muted: #64748b;
  --booking-line: #dbe5f0;
  --booking-brand: #0f9f8f;
  --booking-green: #32b747;
  background:
    radial-gradient(circle at 8% 10%, rgba(20, 184, 166, 0.14), transparent 32rem),
    radial-gradient(circle at 92% 18%, rgba(245, 158, 11, 0.10), transparent 30rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f7fafc 100%);
  color: var(--booking-ink);
}

.booking-topbar.site-header {
  min-height: 88px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 229, 240, 0.9);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
}

.booking-premium-shell {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px) 0 90px;
}

.booking-hero-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(219, 229, 240, 0.9);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72)),
    url("https://images.unsplash.com/photo-1504215680853-026ed2a45def?auto=format&fit=crop&w=1800&q=85") center / cover no-repeat;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
  overflow: hidden;
  position: relative;
}

.booking-hero-strip::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--booking-brand), #32b747, #f59e0b);
}

.booking-hero-strip h1 {
  width: min(760px, 100%);
  margin: 0;
  color: var(--booking-navy);
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.booking-hero-strip span {
  display: block;
  max-width: 660px;
  margin-top: 14px;
  color: #475569;
  font-weight: 700;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.booking-hero-strip .back-results-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--booking-navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 229, 240, 0.95);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.premium-progress.booking-progress {
  margin: 24px 0;
  gap: 12px;
}

.premium-progress.booking-progress span {
  min-height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.premium-progress.booking-progress span.active {
  color: #064e3b;
  border-color: rgba(45, 212, 191, 0.36);
  background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
}

.booking-premium-layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.booking-car-sticky-card,
.booking-glass-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 229, 240, 0.9);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.booking-car-sticky-card {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 16px;
  padding: 24px;
  overflow: hidden;
}

.booking-car-sticky-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 138px;
  background: linear-gradient(135deg, rgba(15, 159, 143, 0.13), rgba(15, 27, 63, 0.05));
  pointer-events: none;
}

.booking-card-label {
  position: relative;
  z-index: 1;
  color: var(--booking-navy);
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.booking-car-photo-frame {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: 18px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 30%, rgba(20, 184, 166, 0.16), transparent 40%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid rgba(219, 229, 240, 0.9);
}

.booking-car-photo-frame img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  filter: drop-shadow(0 22px 18px rgba(15, 23, 42, 0.16));
}

.booking-supplier-chip-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(219, 229, 240, 0.9);
  border-radius: 18px;
  background: #fff;
}

.booking-supplier-logo {
  display: grid;
  place-items: center;
  width: 56px;
  height: 44px;
  border-radius: 14px;
  color: #0b1b3f;
  background: linear-gradient(135deg, #eef2ff, #f0fdfa);
  border: 1px solid rgba(219, 229, 240, 0.9);
  font-weight: 950;
  overflow: hidden;
}

.booking-supplier-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.booking-supplier-chip-row strong,
.booking-supplier-chip-row span {
  display: block;
}

.booking-supplier-chip-row strong { color: var(--booking-navy); }
.booking-supplier-chip-row span { color: #b45309; font-size: 0.88rem; font-weight: 850; }

.booking-car-sticky-card h2 {
  margin: 0;
  color: var(--booking-navy);
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.booking-muted-line {
  margin: -6px 0 0;
  color: var(--booking-muted);
  font-weight: 750;
}

.booking-icon-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-icon-specs span {
  padding: 8px 10px;
  color: var(--booking-navy);
  background: #f1f5f9;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 850;
}

.booking-green-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.booking-green-list li {
  color: #475569;
  font-weight: 750;
  line-height: 1.35;
}

.booking-mini-breakdown {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(219, 229, 240, 0.9);
  border-radius: 20px;
  background: #fff;
}

.booking-mini-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.booking-mini-breakdown div:last-child { border-bottom: 0; }
.booking-mini-breakdown span { color: var(--booking-muted); font-weight: 700; }
.booking-mini-breakdown strong { color: var(--booking-navy); }

.booking-mini-breakdown .total {
  align-items: center;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(50, 183, 71, 0.09));
  font-size: 1.04rem;
}

.booking-mini-breakdown .total strong {
  color: #16a34a;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.booking-main-column {
  display: grid;
  gap: 20px;
}

.booking-glass-card {
  padding: clamp(20px, 3vw, 28px);
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  margin-bottom: 18px;
}

.section-title-row h2 {
  margin: 0;
  color: var(--booking-navy);
  font-size: clamp(1.5rem, 2.4vw, 2.05rem);
  letter-spacing: -0.045em;
}

.section-title-row span {
  display: block;
  margin-top: 5px;
  color: var(--booking-muted);
  font-weight: 700;
}

.availability-pill {
  padding: 9px 12px;
  color: #064e3b !important;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 950 !important;
  white-space: nowrap;
}

.availability-pill.danger {
  color: #991b1b !important;
  background: #fee2e2;
  border-color: #fecaca;
}

.pickup-drop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pickup-drop-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(219, 229, 240, 0.9);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.info-card-head,
.office-hours-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.info-card-head i,
.office-hours-box i {
  width: 38px;
  height: 38px;
  padding: 8px;
  color: var(--booking-brand);
  background: #ecfdf5;
  border-radius: 14px;
}

.info-card-head span,
.office-hours-box span {
  display: block;
  color: var(--booking-muted);
  font-weight: 750;
}

.info-card-head strong,
.office-hours-box strong {
  display: block;
  color: var(--booking-navy);
}

.trip-date-row {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 10px;
}

.trip-date-row label,
.customer-fields-grid label,
.equipment-grid label {
  display: grid;
  gap: 7px;
  color: #475569;
  font-weight: 850;
}

.trip-date-row input,
.customer-fields-grid input,
.equipment-grid select {
  min-height: 50px;
  padding: 0 13px;
  border: 1px solid #dbe5f0;
  border-radius: 15px;
  background: #fff;
  color: var(--booking-navy);
  font-weight: 850;
}

.trip-date-row input:focus,
.customer-fields-grid input:focus,
.equipment-grid select:focus {
  outline: none;
  border-color: rgba(20, 184, 166, 0.7);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

.map-preview-card {
  min-height: 125px;
  display: grid;
  place-items: center;
  gap: 10px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.78)),
    repeating-linear-gradient(135deg, #eef2f7 0 18px, #fff 18px 36px, #fde68a 36px 48px);
  border: 1px solid rgba(219, 229, 240, 0.9);
}

.map-preview-card span { color: #64748b; font-weight: 850; }
.map-button {
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 13px;
  color: white;
  background: linear-gradient(135deg, var(--booking-green), #0f9f8f);
  font-weight: 950;
  box-shadow: 0 14px 26px rgba(34, 197, 94, 0.24);
}

.premium-vehicle-grid.vehicle-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.premium-vehicle-grid.vehicle-detail-grid div {
  padding: 16px;
  border: 1px solid rgba(219, 229, 240, 0.9);
  border-radius: 18px;
  background: #f8fafc;
  text-align: left;
}

.premium-vehicle-grid.vehicle-detail-grid span {
  color: var(--booking-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.premium-vehicle-grid.vehicle-detail-grid strong {
  color: var(--booking-navy);
  font-size: 1rem;
}

.insurance-comparison-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.insurance-feature-column,
.insurance-plan-card {
  border: 1px solid rgba(219, 229, 240, 0.95);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
}

.insurance-feature-column {
  display: grid;
  grid-template-rows: 86px repeat(5, 44px);
}

.insurance-feature-column strong,
.insurance-feature-column span {
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.insurance-feature-column strong {
  color: var(--booking-navy);
  font-size: 1.08rem;
}

.insurance-feature-column span { color: #475569; font-weight: 750; }
.insurance-feature-column span:last-child { border-bottom: 0; }

.insurance-plan-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 8px;
  padding: 18px;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.insurance-plan-card:hover,
.insurance-plan-card.selected {
  transform: translateY(-2px);
  border-color: rgba(20, 184, 166, 0.62);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.insurance-plan-card.recommended {
  background: linear-gradient(180deg, #f0fdfa, #ffffff);
}

.insurance-plan-card.premium {
  background: linear-gradient(180deg, #fefce8, #ffffff);
}

.insurance-plan-card input {
  position: absolute;
  inset: 18px 18px auto auto;
  width: 20px;
  height: 20px;
}

.insurance-plan-card em {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  color: #065f46;
  background: #ccfbf1;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.insurance-plan-card strong {
  color: var(--booking-navy);
  font-size: 1.28rem;
}

.insurance-plan-card small {
  color: var(--booking-muted);
  font-weight: 750;
}

.insurance-plan-card ul {
  display: grid;
  grid-template-rows: repeat(5, 44px);
  padding: 0;
  margin: 8px 0;
  list-style: none;
  border-top: 1px solid rgba(226, 232, 240, 0.95);
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.insurance-plan-card li {
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  font-size: 1.2rem;
  font-weight: 950;
}

.insurance-plan-card li:last-child { border-bottom: 0; }
.insurance-plan-card li.yes { color: #16a34a; }
.insurance-plan-card li.no { color: #ef4444; }

.insurance-plan-card b {
  color: var(--booking-navy);
  font-size: 1.35rem;
}

.insurance-plan-card > span {
  display: grid;
  place-items: center;
  min-height: 46px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--booking-navy), #1e3a8a);
  font-weight: 950;
}

.insurance-plan-card.selected > span,
.insurance-plan-card.recommended.selected > span {
  background: linear-gradient(135deg, var(--booking-green), #0f9f8f);
}

.extras-premium-grid,
.equipment-grid {
  display: grid;
  gap: 12px;
}

.extras-premium-grid { margin-bottom: 18px; }

.fee-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(219, 229, 240, 0.9);
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
}

.fee-row input { width: 19px; height: 19px; accent-color: var(--booking-green); }
.fee-row span { color: var(--booking-navy); font-weight: 900; }
.fee-row strong { color: var(--booking-navy); }

.equipment-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.equipment-grid label {
  padding: 14px;
  border: 1px solid rgba(219, 229, 240, 0.9);
  border-radius: 18px;
  background: #f8fafc;
}

.equipment-grid strong {
  color: var(--booking-muted);
  font-size: 0.86rem;
}

.checkout-premium-form {
  display: grid;
  gap: 18px;
}

.hidden-summary-route { display: none; }

.customer-fields-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.premium-payment-box.payment-choice-box {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(219, 229, 240, 0.9);
  border-radius: 22px;
  background: #f8fafc;
}

.premium-payment-box .payment-choice {
  border-radius: 18px;
  background: #fff;
}

.checkout-button.primary-button {
  width: fit-content;
  min-height: 56px;
  padding: 0 32px;
  border-radius: 16px;
  box-shadow: 0 18px 34px rgba(20, 184, 166, 0.24);
}

@media (max-width: 1080px) {
  .booking-premium-layout,
  .booking-hero-strip,
  .pickup-drop-grid,
  .insurance-comparison-grid {
    grid-template-columns: 1fr;
  }

  .booking-car-sticky-card {
    position: static;
  }

  .insurance-feature-column {
    display: none;
  }

  .insurance-plan-card ul {
    grid-template-rows: none;
    grid-template-columns: repeat(5, 1fr);
  }

  .insurance-plan-card li { min-height: 42px; border-bottom: 0; border-right: 1px solid rgba(226, 232, 240, 0.95); }
  .insurance-plan-card li:last-child { border-right: 0; }
}

@media (max-width: 760px) {
  .booking-premium-shell { width: min(100% - 24px, 1240px); padding-bottom: 54px; }
  .premium-progress.booking-progress,
  .trip-date-row,
  .premium-vehicle-grid.vehicle-detail-grid,
  .equipment-grid,
  .customer-fields-grid {
    grid-template-columns: 1fr;
  }

  .booking-hero-strip { border-radius: 24px; }
  .booking-car-sticky-card,
  .booking-glass-card { border-radius: 22px; padding: 18px; }
  .booking-hero-strip h1 { font-size: 2.15rem; }
  .section-title-row { display: grid; }
  .availability-pill { width: fit-content; }
  .booking-car-photo-frame img { height: 190px; }
}


/* V8 refinements: compact booking hero + controlled supplier car inputs */
.booking-hero-strip {
  min-height: 0 !important;
  padding: clamp(18px, 2.4vw, 28px) clamp(20px, 3vw, 34px) !important;
  border-radius: 26px !important;
  background-position: center 46% !important;
}

.booking-hero-strip h1 {
  max-width: 700px !important;
  font-size: clamp(1.85rem, 3.1vw, 3.35rem) !important;
  line-height: 0.98 !important;
}

.booking-hero-strip span {
  max-width: 620px !important;
  margin-top: 8px !important;
  font-size: clamp(0.92rem, 1vw, 1.05rem) !important;
}

.booking-hero-strip .back-results-button {
  min-height: 36px !important;
  padding-inline: 14px !important;
  margin-bottom: 12px !important;
}

.booking-progress.premium-progress {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.feature-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.92));
}

.feature-check-grid legend {
  padding: 0 8px;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.feature-check-grid label {
  display: flex !important;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  margin: 0 !important;
  padding: 8px 10px;
  border: 1px solid rgba(219, 229, 240, 0.95);
  border-radius: 12px;
  background: white;
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-check-grid input {
  width: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  accent-color: #0f9f8f;
}

@media (max-width: 720px) {
  .feature-check-grid { grid-template-columns: 1fr; }
  .booking-hero-strip h1 { font-size: 2rem !important; }
}

/* === RentLink Premium Data + Marketplace Upgrade V9 === */
.form-row {
  display: grid;
  gap: 14px;
}
.form-row.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-row.three-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.form-row.four-columns { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.premium-car-form label,
.premium-car-form fieldset {
  min-width: 0;
}
.field-help,
.filter-help {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.4;
}
.premium-feature-grid {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(59, 130, 246, 0.05));
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 18px;
  padding: 16px;
}
.premium-feature-grid legend {
  padding: 0 8px;
  font-weight: 900;
  color: #0f2748;
}
.compact-spec-row select { min-width: 0; }
.admin-row small {
  display: block;
  color: #64748b;
  font-size: 12px;
  margin-top: 3px;
}
.company-row > img,
.admin-row > img {
  object-fit: cover;
  background: #f8fafc;
}

.premium-filter-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}
.filter-option-list {
  display: grid;
  gap: 10px;
}
.logo-filter-row {
  align-items: center;
  gap: 10px;
}
.tiny-supplier-logo {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  overflow: hidden;
  flex: 0 0 auto;
}
.tiny-supplier-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.tiny-supplier-logo b {
  font-size: 11px;
  color: #0f766e;
}
.range-label input[type="range"] {
  width: 100%;
  margin: 12px 0 6px;
}
.range-label strong {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: #ecfeff;
  color: #0f766e;
  font-size: 12px;
}

.ultra-deal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.09);
  background: linear-gradient(135deg, #fff 0%, #f8fbff 48%, #f0fdfa 100%);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
}
.ultra-deal-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #14b8a6, #f59e0b);
}
.premium-spec-icons {
  background: rgba(15, 23, 42, 0.035);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  padding: 10px;
}
.premium-car-stage {
  background:
    radial-gradient(circle at 50% 20%, rgba(20, 184, 166, 0.14), transparent 36%),
    linear-gradient(180deg, #ffffff, #f8fafc);
  border-radius: 22px;
  min-height: 210px;
  display: grid;
  place-items: center;
}
.premium-car-stage img {
  max-height: 205px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(15, 23, 42, 0.14));
}
.premium-rules-column .premium-info-list li {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  padding: 8px 10px;
}
.premium-price-panel {
  background: linear-gradient(180deg, #f0fdfa, #ffffff);
  border: 1px solid rgba(20, 184, 166, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 16px 35px rgba(20,184,166,0.08);
}
.premium-price-panel b {
  color: #0f766e;
  font-size: 12px;
  margin: 6px 0 12px;
}

.booking-hero-strip {
  min-height: 210px !important;
  padding: 28px 34px !important;
  border-radius: 28px !important;
}
.booking-hero-strip h1 {
  font-size: clamp(34px, 5vw, 64px) !important;
  line-height: 0.94 !important;
  max-width: 760px;
}
.booking-premium-layout {
  margin-top: 22px !important;
}
.booking-car-sticky-card {
  top: 92px !important;
  box-shadow: 0 24px 60px rgba(15,23,42,0.09) !important;
}
.booking-car-photo-frame {
  background: radial-gradient(circle at 50% 20%, rgba(20,184,166,0.10), transparent 42%), #fff !important;
}
.booking-green-list li {
  border-radius: 12px;
  padding: 7px 8px;
  background: rgba(240, 253, 250, 0.7);
}
.premium-vehicle-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
}

.seo-location-page {
  padding: 70px 20px;
  background: radial-gradient(circle at top left, rgba(20,184,166,0.14), transparent 35%), #f8fafc;
  min-height: calc(100vh - 90px);
}
.seo-hero-card,
.seo-content-grid {
  max-width: 1100px;
  margin: 0 auto;
}
.seo-hero-card {
  padding: clamp(36px, 6vw, 72px);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(240,253,250,0.86));
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 30px 80px rgba(15,23,42,0.08);
}
.seo-hero-card h1 {
  font-size: clamp(38px, 7vw, 82px);
  line-height: 0.95;
  max-width: 760px;
}
.seo-hero-card p {
  max-width: 640px;
  color: #475569;
  font-size: 18px;
  line-height: 1.7;
}
.seo-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.seo-content-grid article {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 18px 40px rgba(15,23,42,0.05);
}

@media (max-width: 900px) {
  .form-row.two-columns,
  .form-row.three-columns,
  .form-row.four-columns,
  .seo-content-grid {
    grid-template-columns: 1fr;
  }
  .booking-hero-strip {
    min-height: 170px !important;
    padding: 24px !important;
  }
  .booking-hero-strip h1 {
    font-size: clamp(30px, 11vw, 44px) !important;
  }
  .premium-car-stage { min-height: 180px; }
  .premium-car-stage img { max-height: 170px; }
}


/* RentLink V10 marketplace flow */
.notification-center-card { margin-top: 22px; }
.notification-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(239,246,255,.82));
  box-shadow: 0 14px 40px rgba(15, 23, 42, .06);
}
.notification-row + .notification-row { margin-top: 10px; }
.notification-row strong { display: block; color: #07172f; }
.notification-row span { display: block; color: #64748b; font-size: 13px; margin-top: 3px; }
.notification-row small { display: block; color: #94a3b8; margin-bottom: 8px; text-align: right; }
.notification-row.unread { border-color: rgba(37, 99, 235, .24); box-shadow: 0 18px 45px rgba(37,99,235,.1); }
.report-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.report-grid article { padding: 18px; border-radius: 18px; background: #fff; border: 1px solid rgba(15,23,42,.08); box-shadow: 0 12px 34px rgba(15,23,42,.06); }
.report-grid article span { display: block; color: #64748b; font-size: 12px; }
.report-grid article strong { display: block; color: #0f172a; font-size: 20px; margin-top: 5px; }
.availability-block-form { display: grid; grid-template-columns: 1.25fr .9fr .9fr .75fr 1.35fr auto; gap: 12px; align-items: end; padding: 14px; border-radius: 20px; background: rgba(248,250,252,.92); border: 1px solid rgba(15,23,42,.08); margin-bottom: 16px; }
.availability-block-form label, .full-width-field { display: grid; gap: 7px; color: #334155; font-size: 13px; font-weight: 700; }
.availability-block-form input, .availability-block-form select, .full-width-field textarea { width: 100%; border: 1px solid rgba(15,23,42,.12); border-radius: 14px; padding: 11px 12px; font: inherit; background: #fff; }
.vehicle-booking-pill.blocked { background: #fff7ed; border-color: rgba(249,115,22,.24); color: #9a3412; }
.status-pill.pending_supplier, .status-pill.awaiting_payment { background: #eff6ff; color: #1d4ed8; }
.status-pill.not_required { background: #f8fafc; color: #475569; }
.payment-pill.awaiting_supplier, .payment-pill.awaiting_payment { background: #e0f2fe; color: #0369a1; }
.reservation-payment-action-card #reservationNextStepText { color: #475569; line-height: 1.6; margin-bottom: 14px; }
.booking-premium-page .checkout-button { position: sticky; bottom: 18px; z-index: 8; box-shadow: 0 18px 40px rgba(37,99,235,.26); }
.booking-premium-page .payment-choice-box .payment-choice.active { border-color: rgba(37,99,235,.32); background: linear-gradient(135deg,#fff,#eff6ff); }
@media (max-width: 980px) {
  .report-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .availability-block-form { grid-template-columns: 1fr; }
  .notification-row { grid-template-columns: 1fr; }
  .notification-row small { text-align: left; }
}
@media (max-width: 560px) {
  .report-grid { grid-template-columns: 1fr; }
}

.ghost-button.small-danger {
  margin-top: 7px;
  padding: 6px 9px;
  border-color: rgba(239,68,68,.22);
  color: #b91c1c;
  background: rgba(254,242,242,.86);
  font-size: 12px;
}
.ghost-button.small-danger:hover {
  background: #fee2e2;
}

/* RentLink V12 marketplace logic/UI upgrades */
.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
  color: #64748b;
  font-size: 13px;
}
.calendar-legend span { display: inline-flex; align-items: center; gap: 7px; }
.legend-dot { width: 11px; height: 11px; border-radius: 999px; display: inline-block; }
.legend-dot.confirmed { background: #16a34a; }
.legend-dot.pending { background: #f59e0b; }
.legend-dot.outside { background: #64748b; }
.legend-dot.maintenance { background: #2563eb; }
.vehicle-booking-pill.confirmed { border-left: 4px solid #16a34a; }
.vehicle-booking-pill.pending { border-left: 4px solid #f59e0b; }
.vehicle-booking-pill.outside { border-left: 4px solid #64748b; }
.vehicle-booking-pill.maintenance { border-left: 4px solid #2563eb; }
.vehicle-booking-pill small { display:block; color:#64748b; margin-top:4px; }
.outside-reservation-form { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.full-width-field { grid-column: 1 / -1; }
.mobile-booking-bar {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  padding: 12px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.94);
  color: #fff;
  box-shadow: 0 24px 60px rgba(15,23,42,.35);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  backdrop-filter: blur(18px);
}
.mobile-booking-bar span, .mobile-booking-bar small { display:block; color:#cbd5e1; font-size:12px; }
.mobile-booking-bar strong { font-size:18px; }
.supplier-onboarding-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: start; }
.onboarding-hero-card { min-height: 380px; background: linear-gradient(135deg, rgba(20, 108, 255, .14), rgba(1, 184, 255, .08)), #fff; }
.onboarding-form-card { background: #fff; }
.email-queue-row strong, .supplier-application-row strong { color: #0f172a; }
@media (max-width: 900px) {
  .outside-reservation-form { grid-template-columns: 1fr; }
  .supplier-onboarding-shell { grid-template-columns: 1fr; }
  .booking-car-sticky-card { position: static; }
  .mobile-booking-bar { display: flex; }
  .booking-premium-shell { padding-bottom: 110px; }
  .results-layout { display: block; }
  .results-sidebar { position: static; margin-bottom: 18px; }
  .explorer-result-card.ultra-deal-card { border-radius: 22px; }
  .deal-card-body { grid-template-columns: 1fr !important; }
  .premium-price-panel { position: sticky; bottom: 12px; z-index: 10; }
}

/* RentLink V13 premium monthly availability calendar */
.premium-calendar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, .10), transparent 34%),
    radial-gradient(circle at bottom right, rgba(245, 158, 11, .10), transparent 30%),
    #f8fafc;
}
.calendar-main-panel,
.calendar-agenda-panel {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 24px;
  box-shadow: 0 20px 55px rgba(15, 23, 42, .08);
  overflow: hidden;
}
.premium-calendar-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(236,253,245,.92));
}
.premium-calendar-toolbar h3 {
  margin: 3px 0 0;
  font-size: clamp(22px, 2vw, 30px);
  color: #07172f;
}
.calendar-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.calendar-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(15, 23, 42, .07);
  background: #fff;
}
.calendar-kpi-row article {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, .07);
  background: linear-gradient(135deg, #fff, #f8fafc);
}
.calendar-kpi-row span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}
.calendar-kpi-row strong {
  display: block;
  margin-top: 3px;
  font-size: 24px;
  color: #0f172a;
}
.month-calendar-wrap { padding: 16px; }
.month-calendar-weekdays,
.month-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.month-calendar-weekdays span {
  padding: 0 8px 10px;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.month-calendar-grid {
  gap: 8px;
}
.month-day {
  min-height: 154px;
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15,23,42,.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.month-day.has-events {
  background: linear-gradient(180deg, #fff, #f8fffd);
  border-color: rgba(13, 148, 136, .18);
}
.month-day:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(15,23,42,.08);
}
.month-day.muted-month {
  opacity: .48;
  background: #f8fafc;
}
.month-day-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.month-day-head strong {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 13px;
}
.month-day-head span {
  color: #0f766e;
  font-size: 11px;
  font-weight: 900;
}
.month-day-events {
  display: grid;
  gap: 6px;
}
.calendar-event-chip,
.calendar-more-chip,
.agenda-reservation {
  appearance: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.calendar-event-chip {
  width: 100%;
  padding: 8px 9px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.08);
  background: #f8fafc;
  box-shadow: 0 8px 18px rgba(15,23,42,.04);
}
.calendar-event-chip span,
.calendar-event-chip small {
  display: block;
  font-size: 10px;
  color: #64748b;
  line-height: 1.2;
}
.calendar-event-chip strong {
  display: block;
  margin: 2px 0;
  color: #0f172a;
  font-size: 12px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.calendar-event-chip.confirmed { border-left: 4px solid #16a34a; background: #ecfdf5; }
.calendar-event-chip.pending { border-left: 4px solid #f59e0b; background: #fffbeb; }
.calendar-event-chip.outside { border-left: 4px solid #64748b; background: #f8fafc; }
.calendar-event-chip.maintenance { border-left: 4px solid #2563eb; background: #eff6ff; }
.calendar-more-chip {
  color: #0f766e;
  font-size: 11px;
  font-weight: 900;
  background: rgba(20,184,166,.10);
  border-radius: 999px;
  padding: 5px 8px;
  text-align: center;
}
.calendar-agenda-panel {
  padding: 18px;
  align-self: start;
  position: sticky;
  top: 92px;
}
.compact-heading {
  padding: 0 0 12px !important;
  border: 0 !important;
}
.calendar-agenda-list {
  display: grid;
  gap: 10px;
}
.agenda-reservation {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, .08);
  background: #fff;
  box-shadow: 0 10px 28px rgba(15,23,42,.04);
}
.agenda-reservation img {
  width: 58px;
  height: 46px;
  object-fit: cover;
  border-radius: 12px;
  background: #f8fafc;
}
.agenda-reservation span,
.agenda-reservation strong,
.agenda-reservation small,
.agenda-reservation em { display: block; }
.agenda-reservation strong { color: #0f172a; font-size: 13px; }
.agenda-reservation small { color: #64748b; font-size: 11px; margin-top: 2px; }
.agenda-reservation em { color: #0f766e; font-size: 11px; font-style: normal; font-weight: 800; margin-top: 4px; }
.agenda-reservation.confirmed { border-left: 4px solid #16a34a; }
.agenda-reservation.pending { border-left: 4px solid #f59e0b; }
.agenda-reservation.outside { border-left: 4px solid #64748b; }
.agenda-reservation.maintenance { border-left: 4px solid #2563eb; }
.calendar-event-modal[hidden] { display: none; }
.calendar-event-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}
.calendar-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .58);
  backdrop-filter: blur(10px);
}
.calendar-modal-card {
  position: relative;
  width: min(760px, 96vw);
  max-height: 90vh;
  overflow: auto;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 35px 100px rgba(15,23,42,.35);
  padding: 22px;
}
.calendar-modal-card.confirmed { border-top: 6px solid #16a34a; }
.calendar-modal-card.pending { border-top: 6px solid #f59e0b; }
.calendar-modal-card.outside { border-top: 6px solid #64748b; }
.calendar-modal-card.maintenance { border-top: 6px solid #2563eb; }
.calendar-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 24px;
  cursor: pointer;
}
.calendar-modal-hero {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  align-items: center;
  padding-right: 34px;
}
.calendar-modal-hero img {
  width: 150px;
  height: 104px;
  object-fit: cover;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.08);
}
.calendar-modal-hero h3 {
  margin: 8px 0 3px;
  color: #07172f;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1;
}
.calendar-modal-hero p { margin: 0; color: #64748b; }
.calendar-status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}
.calendar-status-badge.confirmed { background: #dcfce7; color: #166534; }
.calendar-status-badge.pending { background: #fef3c7; color: #92400e; }
.calendar-status-badge.outside { background: #f1f5f9; color: #334155; }
.calendar-status-badge.maintenance { background: #dbeafe; color: #1d4ed8; }
.calendar-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.calendar-modal-grid article,
.calendar-modal-notes {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.08);
  background: #f8fafc;
}
.calendar-modal-grid span,
.calendar-modal-notes span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 4px;
}
.calendar-modal-grid strong {
  display: block;
  color: #0f172a;
  font-size: 14px;
  word-break: break-word;
}
.calendar-modal-notes { margin-top: 10px; }
.calendar-modal-notes p { margin: 0; color: #334155; line-height: 1.55; }
.calendar-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(15,23,42,.08);
}
body.calendar-modal-open { overflow: hidden; }
@media (max-width: 1180px) {
  .premium-calendar-layout { grid-template-columns: 1fr; }
  .calendar-agenda-panel { position: static; }
}
@media (max-width: 820px) {
  .premium-calendar-toolbar { align-items: flex-start; flex-direction: column; }
  .calendar-kpi-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .month-calendar-wrap { overflow-x: auto; }
  .month-calendar-weekdays,
  .month-calendar-grid { min-width: 820px; }
  .calendar-modal-hero { grid-template-columns: 1fr; }
  .calendar-modal-hero img { width: 100%; height: 180px; }
  .calendar-modal-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .calendar-kpi-row { grid-template-columns: 1fr; }
  .calendar-toolbar-actions { width: 100%; }
  .calendar-toolbar-actions .ghost-button { flex: 1; }
}

/* RentLink V14 calendar fixes: clickable overflow + improved spacing, light V13 background preserved */
/* Calendar layout refinement */
.premium-calendar-layout {
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, .16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(245, 158, 11, .14), transparent 30%),
    linear-gradient(135deg, #eff6ff, #f8fafc 45%, #ecfeff) !important;
  border-radius: 28px;
}
.month-calendar-wrap {
  padding: 18px !important;
  overflow: hidden;
}
.month-calendar-grid {
  grid-auto-rows: minmax(146px, auto);
  gap: 10px !important;
}
.month-day {
  min-width: 0;
  overflow: hidden;
  padding: 9px !important;
  border-radius: 20px !important;
  background: rgba(255,255,255,.88) !important;
}
.month-day.has-events {
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(236,253,245,.90)) !important;
}
.month-day-events {
  min-width: 0;
  overflow: hidden;
  display: grid;
  gap: 6px;
}
.calendar-event-chip {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 7px 8px !important;
  border-radius: 13px !important;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.calendar-event-chip:hover,
.calendar-more-chip:hover,
.agenda-reservation:hover,
.calendar-day-event:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, .10);
}
.calendar-event-chip span,
.calendar-event-chip small,
.calendar-event-chip strong {
  max-width: 100%;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.calendar-event-chip strong {
  font-size: 11.5px !important;
}
.calendar-more-chip {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(13, 148, 136, .18) !important;
  background: linear-gradient(135deg, rgba(20,184,166,.16), rgba(14,165,233,.10)) !important;
  color: #0f766e !important;
}
.calendar-more-chip:focus-visible,
.calendar-event-chip:focus-visible,
.agenda-reservation:focus-visible,
.calendar-day-event:focus-visible {
  outline: 3px solid rgba(20,184,166,.34);
  outline-offset: 2px;
}

/* Daily popup when clicking “View all” */
.calendar-modal-card.day-list {
  width: min(720px, 96vw);
  border-top: 6px solid #0f766e;
}
.calendar-day-modal-head {
  padding: 4px 44px 16px 0;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}
.calendar-day-modal-head h3 {
  margin: 10px 0 6px;
  color: #07172f;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1;
}
.calendar-day-modal-head p {
  margin: 0;
  color: #64748b;
  line-height: 1.55;
}
.calendar-day-event-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.calendar-day-event {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 12px;
  text-align: left;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, .08);
  background: #fff;
  cursor: pointer;
}
.calendar-day-event img {
  width: 76px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  background: #f8fafc;
}
.calendar-day-event strong,
.calendar-day-event small,
.calendar-day-event em {
  display: block;
}
.calendar-day-event strong { color: #0f172a; font-size: 15px; }
.calendar-day-event small { color: #64748b; margin-top: 3px; }
.calendar-day-event em { color: #0f766e; font-style: normal; font-weight: 900; margin-top: 5px; }
.calendar-day-event.confirmed { border-left: 5px solid #16a34a; }
.calendar-day-event.pending { border-left: 5px solid #f59e0b; }
.calendar-day-event.outside { border-left: 5px solid #64748b; }
.calendar-day-event.maintenance { border-left: 5px solid #2563eb; }

/* More premium public surface without making content too dark */
.public-home .site-header,
.booking-page-body .site-header,
body:not(.portal-body) .site-header {
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 55px rgba(15,23,42,.08);
}
.marketplace-results,
.booking-page-body main,
.section-shell,
.category-showcase,
.location-showcase,
.partners-showcase,
.faq-showcase {
  position: relative;
}
.market-car-card,
.explorer-result-card,
.booking-card,
.summary-card,
.location-card,
.category-card {
  box-shadow: 0 24px 70px rgba(15, 23, 42, .10) !important;
}

@media (max-width: 1100px) {
  .month-calendar-grid { grid-auto-rows: minmax(136px, auto); }
  .calendar-event-chip { padding: 6px 7px !important; }
}

.reservation-actions .finish-action {
  color: #065f46;
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.reservation-actions .finish-action:hover {
  color: white;
  background: linear-gradient(135deg, #16a34a, #059669);
  border-color: transparent;
}

.status-pill.finished,
.status-pill.completed {
  color: #334155;
  background: #e2e8f0;
}

/* RentLink V16: light design reservation archive + editable reservations */
.archived-reservations-wrap {
  margin-top: 22px;
}

.archived-reservations-table {
  background: #f8fafc !important;
}

.reservation-card.archived {
  opacity: 0.92;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}

.reservation-card.archived::before {
  background: #94a3b8;
}

.reservation-card.finished::before,
.reservation-card.completed::before,
.reservation-card.closed::before {
  background: #64748b;
}

.reservation-card.payment_failed::before,
.reservation-card.failed::before,
.reservation-card.rejected::before,
.reservation-card.cancelled::before,
.reservation-card.canceled::before {
  background: #ef4444;
}

.edit-reservation-action:hover {
  color: #0f766e;
  border-color: rgba(20, 184, 166, 0.36);
  background: rgba(20, 184, 166, 0.08);
}

.reservation-edit-card {
  max-width: 720px;
}

.reservation-edit-form {
  margin-top: 18px;
}

.reservation-edit-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.reservation-edit-summary span {
  padding: 10px 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  color: #64748b;
  background: #f8fafc;
  font-weight: 800;
}

.reservation-edit-summary strong {
  color: #0f172a;
}

.calendar-event-chip span:first-child {
  color: #0f766e;
  font-weight: 900;
}

.calendar-day-event small {
  color: #0f766e;
  font-weight: 800;
}

@media (max-width: 980px) {
  .reservation-card {
    grid-template-columns: 1fr !important;
  }
}
