/*
 * css/brand-theme.css — RentCar  ·  Yellow + Graphite brand theme
 *
 * Load AFTER vendors.css, main.css, and all page-specific CSS files.
 * To revert: remove this file and its <link> tags.
 *
 * Design:
 *   · index.html:  yellow (#F8D448) header — brand identity, kept as-is.
 *   · All other pages: dark graphite (#191B1E) header/footer.
 *   · CTA buttons: yellow (#F8D448), dark text (#111).
 *   · No navy blue anywhere.
 *   · No yellow/amber overlay on hero images.
 *
 * Strategy:
 *   1. Token remap in :root — covers all var(--color-*) usages in main.css.
 *   2. Fix navy text/button inside the yellow home header (main.css uses #051036).
 *   3. Override only hardcoded values that bypass the CSS token system.
 */

/* ══════════════════════════════════════════════════════════════════════════
   1. BRAND TOKENS + FRAMEWORK REMAP
   ══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Graphite scale — darker than before, matches Sixt-like quality */
  --rc-graphite-2: #1F2125;
  --rc-graphite-3: #24272B;

  /* Yellow accent */
  --rc-yellow:       #F8D448;
  --rc-yellow-hover: #E8B800;
  --rc-yellow-soft:  #FFF8DD;
  --rc-yellow-tint:  rgba(248, 212, 72, 0.10);
  --rc-yellow-glow:  rgba(248, 212, 72, 0.28);

  /* ── Framework dark tokens → graphite ───────────────────────────────── *
   * Covers every var(--color-dark-N) in main.css automatically.           *
   * This makes bg-dark-1/2/3 elements (headers, footers) graphite.        */
  --color-dark-1: var(--rc-graphite);    /* was #051036 navy */
  --color-dark-2: var(--rc-graphite-2);  /* was #0D2857 navy */
  --color-dark-3: var(--rc-graphite-2);  /* was #13357B navy — same dark as dark-2 */
  --color-dark-4: var(--rc-graphite-3);  /* was #163C8C navy */

  /* ── Blue/yellow tokens → yellow ────────────────────────────────────── *
   * --color-blue-1 covers -blue-1 buttons, links, active states.          *
   * --color-yellow-* covers bg-yellow-1 CTAs (Pay and Book, Continue).    */
  --color-blue-1:   var(--rc-yellow);       /* was #3554D1 */
  --color-blue-2:   var(--rc-yellow-soft);  /* was #E5F0FD */
  --color-yellow-1: var(--rc-yellow);
  --color-yellow-2: var(--rc-yellow-hover);
  --color-yellow-3: var(--rc-yellow);
  --color-yellow-4: var(--rc-yellow-soft);
}

/* ══════════════════════════════════════════════════════════════════════════
   2. HOME PAGE HEADER — fix navy text/buttons inside the yellow bar
   main.css correctly sets background: #f8d448 for rentcar-home-yellow-header.
   But it hardcodes #051036 (navy) for text and the login button — fix those.
   ══════════════════════════════════════════════════════════════════════════ */

/* Text and links: swap navy #051036 → graphite */
.rentcar-home-yellow-header .text-dark-1,
.rentcar-home-yellow-header a:not(.button),
.rentcar-home-yellow-header button:not(.button) {
  color: var(--rc-graphite) !important;
}

/* Login / sign-in button: swap navy #051036 → graphite */
.rentcar-home-yellow-header .button {
  background: var(--rc-graphite) !important;
  color: #fff !important;
  border-color: var(--rc-graphite) !important;
}

.rentcar-home-yellow-header .button:hover {
  background: var(--rc-graphite-3) !important;
  border-color: var(--rc-graphite-3) !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   3. ACTIVE TABS / SELECTED PILLS
   main.css hardcodes rgba(53,84,209,…) which bypasses the token remap.
   ══════════════════════════════════════════════════════════════════════════ */

.tabs.-pills .tabs__controls .tabs__button:hover,
.tabs.-pills .tabs__controls .tabs__button.is-tab-el-active {
  color: var(--rc-graphite) !important;
  background-color: var(--rc-yellow-tint) !important;
}

.tabs.-pills-2 .tabs__controls .tabs__button.is-tab-el-active {
  background-color: var(--rc-yellow) !important;
  color: #111 !important;
}

.tabs.-underline-2 .tabs__controls .tabs__button.is-tab-el-active {
  color: var(--rc-graphite) !important;
}
.tabs.-underline-2 .tabs__controls .tabs__button.is-tab-el-active::after {
  background-color: var(--rc-yellow) !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   4. DASHBOARD SIDEBAR ACTIVE STATE
   ══════════════════════════════════════════════════════════════════════════ */

.sidebar.-dashboard .sidebar__button.-is-active {
  background-color: var(--rc-yellow-tint) !important;
  color: var(--rc-yellow) !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   5. BUTTON HOVER DEPTH
   ══════════════════════════════════════════════════════════════════════════ */

.button.-blue-1:hover,
.button.-outline-blue-1:hover {
  background-color: var(--rc-yellow-hover) !important;
  border-color: var(--rc-yellow-hover) !important;
  color: #111 !important;
}

.button.bg-yellow-1:hover,
[class*="bg-yellow-1"].button:hover {
  background: var(--rc-yellow-hover) !important;
  color: #111 !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   6. bg-blue-1-05  (hardcoded rgba in main.css — bypasses token remap)
   ══════════════════════════════════════════════════════════════════════════ */

.bg-blue-1-05 {
  background-color: var(--rc-yellow-tint) !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   7. INPUT / SELECT / TEXTAREA FOCUS
   ══════════════════════════════════════════════════════════════════════════ */

input:not([type="range"]):not([type="checkbox"]):not([type="radio"]):focus,
select:focus,
textarea:focus {
  border-color: var(--rc-yellow) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px var(--rc-yellow-glow) !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   8. CHECKBOXES / RADIOS / SWITCHES
   ══════════════════════════════════════════════════════════════════════════ */

.form-checkbox input:checked ~ .form-checkbox__mark,
.form-checkbox:hover input ~ .form-checkbox__mark {
  background-color: var(--rc-yellow) !important;
  border-color: var(--rc-yellow) !important;
}

.form-radio .radio input:checked ~ .radio__mark {
  border-color: var(--rc-yellow) !important;
  background-color: var(--rc-yellow) !important;
}

.form-switch input:checked + .switch__slider {
  background-color: var(--rc-yellow) !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   9. UTILITY COLOUR HELPERS
   ══════════════════════════════════════════════════════════════════════════ */

.text-blue-1 {
  color: var(--rc-graphite) !important;
}

.bg-blue-2 {
  background-color: var(--rc-yellow-soft) !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   10. MODAL GRID ACTIVE SELECTION (car/option pickers)
   ══════════════════════════════════════════════════════════════════════════ */

.modalGrid__item.-is-active {
  border-color: var(--rc-yellow) !important;
  background-color: var(--rc-yellow-tint) !important;
}
/* HOME — final clean */

.rentcar-home-yellow-header {
  height: 70px !important;
  background: #050505 !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
  box-shadow: none !important;
}

.rentcar-home-hero {
  min-height: 820px !important;
  padding-top: 120px !important;
  padding-bottom: 110px !important;
  background-image: url("../img/masthead/1.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.rentcar-home-hero::before,
.rentcar-home-hero::after,
.masthead__bg::after {
  display: none !important;
  background: none !important;
}

.rentcar-home-hero .text-center {
  text-align: left !important;
  max-width: 560px !important;
}

.rentcar-home-hero .text-center::before {
  content: "PREMIUM CAR RENTAL";
  display: block;
  margin-bottom: 18px;
  color: #f8d448;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .22em;
}

.rentcar-home-hero .text-center h1 {
  font-size: 54px !important;
  line-height: 1.08 !important;
  color: #fff !important;
}

.rentcar-home-hero .text-center p {
  max-width: 420px !important;
  font-size: 16px !important;
  color: rgba(255,255,255,.82) !important;
}

.rentcar-home-hero .masthead-bottom {
  position: relative !important;
  max-width: 1180px !important;
  margin: 170px auto 0 !important;
  padding: 0 15px !important;
}

.rentcar-home-hero.masthead.-type-8 .mainSearch,
.rentcar-home-hero .mainSearch {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  border-radius: 18px !important;
  overflow: visible !important;
  background: rgba(251,247,236,.94) !important;
}

.rentcar-home-hero .mainSearch .button-grid {
  width: 100% !important;
  grid-template-columns: 1.1fr 1.1fr .9fr .9fr 150px !important;
}

.rentcar-home-hero .mainSearch .button-grid > * {
  min-height: 66px !important;
}

@media (min-width: 576px) {
  .rentcar-home-hero.masthead.-type-8 .mainSearch,
  .rentcar-home-hero .mainSearch {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  .rentcar-home-hero .rentcar-search-top {
    margin-bottom: 10px !important;
  }

  .rentcar-home-hero .rcss-cell {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
}

/* =========================================================
   GLOBAL FOOTER — match premium graphite header
   ========================================================= */

.footer.bg-dark-1,
.footer.-type-3 {
  background: #050505 !important;
  color: #fff !important;
  border-top: 1px solid rgba(248, 212, 72, 0.16) !important;
}

.footer.-type-3 a,
.footer.-type-3 div,
.footer.-type-3 h5 {
  color: rgba(255, 255, 255, 0.86) !important;
}

.footer.-type-3 h5 {
  color: #fff !important;
  font-weight: 700 !important;
}

.footer.-type-3 a:hover {
  color: #f8d448 !important;
}

.footer.-type-3 .border-top-white-15 {
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

/* Newsletter band */
section.bg-dark-2 {
  background: #111214 !important;
  border-top: 1px solid rgba(248, 212, 72, 0.10) !important;
}

section.bg-dark-2 .button {
  background: #f8d448 !important;
  color: #111 !important;
  border-color: #f8d448 !important;
}

section.bg-dark-2 .button:hover {
  background: #e8b800 !important;
  border-color: #e8b800 !important;
}

/* =========================================================
   HOME SEARCH BUTTONS — premium target
   ========================================================= */

.rentcar-home-hero .rentcar-search-tab {
  height: 44px !important;
  padding: 0 22px !important;
  border-radius: 14px !important;
  background: rgba(25, 27, 30, 0.06) !important;
  color: #191B1E !important;
  border: 1px solid rgba(25, 27, 30, 0.05) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

.rentcar-home-hero .rentcar-search-tab.is-active {
  background: #050505 !important;
  color: #F8D448 !important;
  border-color: #050505 !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18) !important;
}

.rentcar-home-hero .rentcar-search-tab.is-active i {
  color: #F8D448 !important;
}

.rentcar-home-hero .rentcar-search-tab:not(.is-active):hover {
  background: #EEE8D8 !important;
  color: #111 !important;
}

/* Show Cars button */
.rentcar-home-hero .mainSearch__submit {
  height: 58px !important;
  min-width: 170px !important;
  border-radius: 12px !important;
  background: linear-gradient(180deg, #FFD84A 0%, #F4BE22 100%) !important;
  border: 1px solid #F4BE22 !important;
  color: #111 !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  box-shadow: none !important;
}

.rentcar-home-hero .mainSearch__submit i,
.rentcar-home-hero .mainSearch__submit span {
  color: #111 !important;
}

.rentcar-home-hero .mainSearch__submit:hover {
  background: linear-gradient(180deg, #FFE16A 0%, #E9B516 100%) !important;
  border-color: #E9B516 !important;
  transform: none !important;
}

/* =========================================================
   HOME HEADER ACTIONS — match gold CTA
   ========================================================= */

.rentcar-home-yellow-header .button {
  height: 52px !important;
  border-radius: 12px !important;
  background: linear-gradient(180deg, #FFD84A 0%, #F4BE22 100%) !important;
  border: 1px solid #F4BE22 !important;
  color: #111 !important;
  font-weight: 800 !important;
}

.rentcar-home-yellow-header .button:hover {
  background: linear-gradient(180deg, #FFE16A 0%, #E9B516 100%) !important;
  color: #111 !important;
}

/* Language trigger */
.rentcar-home-yellow-header .js-lang-toggle,
.rentcar-home-yellow-header .js-lang-toggle span,
.rentcar-home-yellow-header .js-lang-toggle i {
  color: #fff !important;
  opacity: 1 !important;
}

.rentcar-home-yellow-header .js-lang-toggle:hover,
.rentcar-home-yellow-header .js-lang-toggle:hover span,
.rentcar-home-yellow-header .js-lang-toggle:hover i {
  color: #F8D448 !important;
}

/* =========================================================
   LANGUAGE MENU — premium dark style
   ========================================================= */

.langMenu__content {
  background: rgba(5, 5, 5, 0.96) !important;
  border: 1px solid rgba(248, 212, 72, 0.22) !important;
  border-radius: 16px !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45) !important;
  padding: 10px !important;
}

.langMenu__item {
  color: rgba(255, 255, 255, 0.86) !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
}

.langMenu__item:hover,
.langMenu__item.is-active {
  background: rgba(248, 212, 72, 0.14) !important;
  color: #F8D448 !important;
}

.langMenu__check {
  color: #F8D448 !important;
}

/* =========================================================
   HOME CONTENT SECTIONS — match luxury showroom
   ========================================================= */

.rentcar-edit-booking-link:hover,
.rentcar-edit-booking-link:focus {
  color: #F4BE22 !important;
  text-decoration: underline !important;
}

/* Why Choose Us section */
.rentcar-home-hero + section {
  background: linear-gradient(180deg, #F7F3EA 0%, #FFFFFF 100%) !important;
  border-top: 1px solid rgba(248, 212, 72, 0.18) !important;
}

.rentcar-home-hero + section .sectionTitle__title {
  color: #191B1E !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

.rentcar-home-hero + section .sectionTitle__text {
  color: rgba(25, 27, 30, 0.62) !important;
}

.rentcar-home-hero + section .featureIcon {
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.78) !important;
  border: 1px solid rgba(25, 27, 30, 0.08) !important;
  box-shadow: 0 22px 60px rgba(25, 27, 30, 0.06) !important;
  transition: all 0.25s ease !important;
}

.rentcar-home-hero + section .featureIcon:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(248, 212, 72, 0.42) !important;
  box-shadow: 0 28px 80px rgba(25, 27, 30, 0.11) !important;
}

.rentcar-home-hero + section .featureIcon img {
  filter: saturate(0.9) contrast(1.05) !important;
}

.rentcar-home-hero + section .featureIcon h4 {
  color: #191B1E !important;
  font-weight: 800 !important;
}

.rentcar-home-hero + section .featureIcon p {
  color: rgba(25, 27, 30, 0.62) !important;
}

/* Popular Cars section softer continuation */
.rentcar-home-hero + section + section {
  background: #FFFFFF !important;
}

.rentcar-home-hero + section + section .sectionTitle__title {
  color: #191B1E !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

.rentcar-home-hero + section + section .sectionTitle__text {
  color: rgba(25, 27, 30, 0.62) !important;
}

/* HOME cards equal height */
.rentcar-home-hero + section .featureIcon {
  min-height: 260px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

/* Popular Cars cards like premium cards */
#popularCarsContainer > [class*="col"] > * {
  height: 100% !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.82) !important;
  border: 1px solid rgba(25, 27, 30, 0.08) !important;
  box-shadow: 0 22px 60px rgba(25, 27, 30, 0.06) !important;
  padding: 18px !important;
  transition: all 0.25s ease !important;
}

#popularCarsContainer > [class*="col"] > *:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(248, 212, 72, 0.42) !important;
  box-shadow: 0 28px 80px rgba(25, 27, 30, 0.11) !important;
}

#popularCarsContainer img {
  border-radius: 16px !important;
  background: #fff !important;
}

/* Footer polish */
section.bg-dark-2 {
  background: #101113 !important;
  border-top: 1px solid rgba(248, 212, 72, 0.16) !important;
  border-bottom: 1px solid rgba(248, 212, 72, 0.16) !important;
}

.footer.-type-3 {
  background: #050505 !important;
}

.footer.-type-3 h5 {
  color: #fff !important;
}

.footer.-type-3 a:hover {
  color: #F8D448 !important;
}

.footer.-type-3 .border-top-white-15 {
  border-top: 1px solid rgba(248, 212, 72, 0.14) !important;
}

/* Remove inner image border from Popular Cars */

#popularCarsContainer .border-light {
  border: none !important;
}

#popularCarsContainer .cardImage {
  border: none !important;
  box-shadow: none !important;
}

/* =========================================================
   HOME SEARCH — remove old blue hover/focus states
   ========================================================= */

.rentcar-home-hero .rcss-cell,
.rentcar-home-hero .rcss-cell-inner,
.rentcar-home-hero .rcss-trigger,
.rentcar-home-hero .rcss-trigger span,
.rentcar-home-hero .rcss-label,
.rentcar-home-hero .rcss-date-row,
.rentcar-home-hero .rcss-diff-return,
.rentcar-home-hero .rcss-diff-return span {
  color: #111827 !important;
}

.rentcar-home-hero .rcss-trigger:hover,
.rentcar-home-hero .rcss-trigger:focus,
.rentcar-home-hero .rcss-cell:hover .rcss-trigger,
.rentcar-home-hero .rcss-cell:hover .rcss-label {
  color: #111827 !important;
  background: transparent !important;
}

.rentcar-home-hero .rcss-trigger:hover span,
.rentcar-home-hero .rcss-trigger:focus span,
.rentcar-home-hero .rcss-cell:hover span,
.rentcar-home-hero .rcss-cell:hover i {
  color: #111827 !important;
}

/* icons: soft graphite, amber on hover */
.rentcar-home-hero .rcss-icon {
  color: rgba(25, 27, 30, 0.45) !important;
}

.rentcar-home-hero .rcss-cell:hover .rcss-icon {
  color: #F4BE22 !important;
}

/* links inside search */
.rentcar-home-hero .rcss-diff-return span,
.rentcar-home-hero .rcss-diff-return a,
.rentcar-home-hero .rentcar-edit-booking-link {
  color: #111827 !important;
}

.rentcar-home-hero .rcss-diff-return:hover span,
.rentcar-home-hero .rentcar-edit-booking-link:hover {
  color: #F4BE22 !important;
}

/* active/focus state should be amber, not blue */
.rentcar-home-hero .rcss-trigger:focus-visible,
.rentcar-home-hero .rcss-cell:focus-within {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(248, 212, 72, 0.22) !important;
  border-radius: 12px !important;
}
/* =========================================================
   HOME SEARCH POPUPS — remove old navy/blue selected states
   ========================================================= */

/* Location dropdown */
.rentcar-home-hero .rcss-loc-popup {
  background: #fffaf0 !important;
  border: 1px solid rgba(248, 212, 72, 0.28) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 22px 60px rgba(0,0,0,.22) !important;
}

.rentcar-home-hero .rcss-loc-item {
  background: transparent !important;
  color: #111827 !important;
}

.rentcar-home-hero .rcss-loc-item:hover,
.rentcar-home-hero .rcss-loc-item:focus,
.rentcar-home-hero .rcss-loc-item.is-active,
.rentcar-home-hero .rcss-loc-item.-is-active {
  background: #F8D448 !important;
  color: #111 !important;
}

.rentcar-home-hero .rcss-loc-item:hover i,
.rentcar-home-hero .rcss-loc-item:focus i,
.rentcar-home-hero .rcss-loc-item.is-active i,
.rentcar-home-hero .rcss-loc-item.-is-active i {
  color: #111 !important;
}

/* Time dropdown */
.rentcar-home-hero .rcss-time-popup {
  background: #fffaf0 !important;
  border: 1px solid rgba(248, 212, 72, 0.28) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 22px 60px rgba(0,0,0,.22) !important;
}

.rentcar-home-hero .rcss-time-list button,
.rentcar-home-hero .rcss-time-list .rcss-time-option {
  background: transparent !important;
  color: #111827 !important;
}

.rentcar-home-hero .rcss-time-list button:hover,
.rentcar-home-hero .rcss-time-list button:focus,
.rentcar-home-hero .rcss-time-list button.is-active,
.rentcar-home-hero .rcss-time-list button.-is-active,
.rentcar-home-hero .rcss-time-list .rcss-time-option:hover,
.rentcar-home-hero .rcss-time-list .rcss-time-option.is-active {
  background: #F8D448 !important;
  color: #111 !important;
}

/* =========================================================
   HOME SEARCH POPUPS — final warm luxury
   ========================================================= */

.rcss-popup {
  background: rgba(251, 247, 236, 0.98) !important;
  border: 1px solid rgba(248, 212, 72, 0.28) !important;
  border-radius: 14px !important;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28) !important;
  overflow: hidden !important;
}

/* Location + time options */
.rcss-loc-item,
.rcss-time-list button {
  background: transparent !important;
  color: #191B1E !important;
}

.rcss-loc-item:hover,
.rcss-time-list button:hover {
  background: rgba(248, 212, 72, 0.18) !important;
  color: #111 !important;
}

.rcss-loc-item.is-selected,
.rcss-loc-item.is-active {
  background: rgba(248, 212, 72, 0.18) !important;
  color: #191B1E !important;
  border-left: 3px solid #F8D448 !important;
  font-weight: 700 !important;
}

.rcss-loc-item.is-selected i,
.rcss-loc-item.is-active i {
  color: #191B1E !important;
}

.rcss-loc-item:hover,
.rcss-loc-item:focus {
  background: rgba(248, 212, 72, 0.10) !important;
  color: #191B1E !important;
}

/* Calendar selected/hover days */
.rc-calendar-host .is-selected,
.rc-calendar-host .is-active,
.rc-calendar-host button.is-selected,
.rc-calendar-host button.is-active,
.rc-calendar-host button[aria-selected="true"] {
  background: #050505 !important;
  color: #F8D448 !important;
}

.rc-calendar-host button:hover {
  background: rgba(248, 212, 72, 0.18) !important;
  color: #111 !important;
}
/* ==========================
   TIME PICKER
   ========================== */

.rcss-time-item {
  color: #191B1E !important;
}

.rcss-time-item:hover {
  background: rgba(248,212,72,.18) !important;
  color: #191B1E !important;
}

.rcss-time-item.is-selected {
  background: rgba(248, 212, 72, 0.18) !important;
  color: #191B1E !important;
  border: 1px solid rgba(248, 212, 72, 0.55) !important;
}

/* ==========================
   CALENDAR
   ========================== */

.rc-cal-day:hover {
  background: rgba(248,212,72,.18) !important;
  color: #191B1E !important;
}

.rc-cal-active {
  background: rgba(248, 212, 72, 0.18) !important;
  color: #191B1E !important;
  border: 1px solid rgba(248, 212, 72, 0.55) !important;
}

.rc-cal-day.rc-cal-active:hover {
  background: rgba(248, 212, 72, 0.18) !important;
  color: #191B1E !important;
}

/* =========================================================
   SIMPLE FLOW HEADER - review + manage booking
   ========================================================= */

.rc-simple-header {
  background: #050505 !important;
  border-bottom: 1px solid rgba(248, 212, 72, 0.16) !important;
  box-shadow: none !important;
}

.rc-simple-header .container {
  max-width: 1500px;
}

.rc-simple-header .row {
  flex-wrap: nowrap !important;
}

.rc-simple-header__brand,
.rc-simple-header__actions {
  min-width: 0;
}

.rc-simple-header .header-logo img {
  width: auto;
  max-height: 34px;
}

.header-logo img[src$="deluxelogo.png"] {
  width: auto !important;
  max-width: 190px !important;
  max-height: 80px !important;
}

.rc-simple-header .header-logo img[src$="deluxelogo.png"],
.cars-page-main .header-logo img[src$="deluxelogo.png"] {
  max-width: 174px !important;
  max-height: 80px !important;
}

.rc-simple-header .js-lang-toggle,
.rc-simple-header .js-lang-toggle span,
.rc-simple-header .js-lang-toggle i {
  color: #fff !important;
  opacity: 1 !important;
}

.rc-simple-header .js-lang-toggle:hover,
.rc-simple-header .js-lang-toggle:hover span,
.rc-simple-header .js-lang-toggle:hover i {
  color: #F8D448 !important;
}

.rc-simple-header__user-icon {
  display: none !important;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff !important;
  text-decoration: none !important;
}

.rc-simple-header__user-icon:hover {
  border-color: rgba(248, 212, 72, 0.55);
  color: #F8D448 !important;
}

@media (max-width: 575px) {
  .rc-simple-header {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }

  .rc-simple-header .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .rc-simple-header__back,
  .rc-simple-header .rc-header-auth-link {
    display: none !important;
  }

  .rc-simple-header__actions {
    column-gap: 14px;
  }

  .rc-simple-header .header-logo {
    max-width: 150px !important;
  }

  .rc-simple-header .header-logo img[src$="deluxelogo.png"] {
    max-width: 150px !important;
    max-height: 60px !important;
  }

  .rc-simple-header__user-icon {
    display: inline-flex !important;
  }

  .rc-simple-header .js-lang-toggle {
    white-space: nowrap;
    font-size: 12px !important;
  }

  .rc-simple-header .js-lang-toggle img {
    width: 18px !important;
    height: 18px !important;
    margin-right: 8px !important;
  }

  .rc-simple-header .js-lang-toggle i {
    margin-left: 8px !important;
  }
}

/* =========================================================
   CARS PAGE — premium graphite header + controls
   ========================================================= */

.cars-page-main .header.bg-dark-3 {
  background: #050505 !important;
  border-bottom: 1px solid rgba(248, 212, 72, 0.16) !important;
  box-shadow: none !important;
}

.cars-page-main .header-logo img {
  max-height: 34px !important;
}

@media (max-width: 575px) {
  .cars-page-main .header__container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .cars-page-main .header-logo {
    max-width: 150px !important;
    margin-right: 0 !important;
  }

  .cars-page-main .header-logo img[src$="deluxelogo.png"] {
    max-width: 150px !important;
    max-height: 60px !important;
  }
}

/* Booking summary pill */
.cars-page-main #headerBookingSummary {
  background: rgba(251, 247, 236, 0.10) !important;
  border: 1px solid rgba(248, 212, 72, 0.18) !important;
  color: #fff !important;
  border-radius: 999px !important;
}

.cars-page-main #headerBookingSummary #headerRouteText {
  color: #fff !important;
  font-weight: 700 !important;
}

.cars-page-main #headerBookingSummary #headerDateText {
  color: rgba(255, 255, 255, 0.72) !important;
}

/* Edit search button */
.cars-page-main #editSearchButton {
  background: rgba(248, 212, 72, 0.16) !important;
  border: 1px solid rgba(248, 212, 72, 0.28) !important;
}

.cars-page-main #editSearchButton i {
  color: #F8D448 !important;
}

.cars-search-drawer .rentcar-cars-search {
  overflow: visible !important;
  border: 1px solid rgba(25, 27, 30, 0.12) !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 24px 70px rgba(25, 27, 30, 0.08) !important;
}

.cars-search-drawer .rentcar-cars-search .rcss-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr) minmax(0, .85fr) minmax(0, .85fr) 260px !important;
}

.cars-search-drawer .rentcar-cars-search .rcss-cell {
  min-height: 66px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.cars-search-drawer .rentcar-cars-search .rcss-label,
.cars-search-drawer .rentcar-cars-search .rcss-trigger,
.cars-search-drawer .rentcar-cars-search .rcss-trigger span {
  color: #111827 !important;
}

.cars-search-drawer .rentcar-cars-search .rcss-icon {
  color: rgba(25, 27, 30, 0.45) !important;
}

.cars-search-drawer .rentcar-cars-search .rcss-cell:hover .rcss-icon {
  color: #F4BE22 !important;
}

.cars-search-drawer .rentcar-cars-search .rcss-cell-submit {
  padding: 10px 12px !important;
}

.cars-search-drawer .rentcar-cars-search .mainSearch__submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 54px !important;
  border-radius: 8px !important;
  background: linear-gradient(180deg, #FFD84A 0%, #F4BE22 100%) !important;
  border: 1px solid #F4BE22 !important;
  color: #111 !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}

.cars-search-drawer .rentcar-cars-search .mainSearch__submit i,
.cars-search-drawer .rentcar-cars-search .mainSearch__submit span {
  color: #111 !important;
}

.cars-search-drawer .rentcar-cars-search .rcss-diff-return {
  margin-top: 12px !important;
  padding-left: 10px !important;
}

@media (max-width: 767px) {
  .cars-search-drawer .rentcar-cars-search .rcss-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .cars-search-drawer .rentcar-cars-search .rcss-cell,
  .cars-search-drawer .rentcar-cars-search .rcss-cell-submit {
    grid-column: 1 / -1 !important;
  }

  .cars-search-drawer .rentcar-cars-search .mainSearch__submit {
    height: 50px !important;
  }
}

/* Login button same as home CTA */
.cars-page-main .header .button[href*="signup"] {
  background: linear-gradient(180deg, #FFD84A 0%, #F4BE22 100%) !important;
  border: 1px solid #F4BE22 !important;
  color: #111 !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
}

/* Language */
.cars-page-main .js-lang-toggle,
.cars-page-main .js-lang-toggle span,
.cars-page-main .js-lang-toggle i {
  color: #fff !important;
  opacity: 1 !important;
}

.cars-page-main .js-lang-toggle:hover,
.cars-page-main .js-lang-toggle:hover span,
.cars-page-main .js-lang-toggle:hover i {
  color: #F8D448 !important;
}

/* Page background */
.cars-page-main {
  background: linear-gradient(180deg, #F7F3EA 0%, #FFFFFF 34%) !important;
}

/* Filter / Sort buttons */
#carsFilterSortBar .button {
  height: 44px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  background: rgba(251, 247, 236, 0.95) !important;
  border: 1px solid rgba(25, 27, 30, 0.08) !important;
  color: #191B1E !important;
  font-weight: 700 !important;
  box-shadow: 0 12px 35px rgba(25, 27, 30, 0.06) !important;
}

#carsFilterSortBar .button i {
  color: #F4BE22 !important;
}

#carsFilterSortBar .button:hover {
  border-color: rgba(248, 212, 72, 0.45) !important;
  box-shadow: 0 18px 45px rgba(25, 27, 30, 0.10) !important;
}
/* =========================================================
   CARS PAGE — cards + footer + popup blue cleanup
   ========================================================= */

/* Car cards */
.cars-page-main .rentcar-premium-card,
.cars-page-main .carCard,
.cars-page-main #carsList > [class*="col"] > * {
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.86) !important;
  border: 1px solid rgba(25, 27, 30, 0.08) !important;
  box-shadow: 0 22px 60px rgba(25, 27, 30, 0.07) !important;
  transition: all 0.25s ease !important;
}

.cars-page-main .rentcar-premium-card:hover,
.cars-page-main .carCard:hover,
.cars-page-main #carsList > [class*="col"] > *:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(248, 212, 72, 0.42) !important;
  box-shadow: 0 30px 80px rgba(25, 27, 30, 0.12) !important;
}

/* Badges */
.cars-page-main .rentcar-premium-card .badge,
.cars-page-main .carCard .badge,
.cars-page-main .rounded-100.bg-light-2,
.cars-page-main .rounded-100.bg-blue-1-05 {
  background: rgba(248, 212, 72, 0.14) !important;
  color: #191B1E !important;
  border: 1px solid rgba(248, 212, 72, 0.24) !important;
  font-weight: 700 !important;
}

/* Price: remove red */
.cars-page-main .text-red-1,
.cars-page-main [class*="text-red"] {
  color: #191B1E !important;
}

.cars-page-main .rentcar-premium-card .text-red-1,
.cars-page-main .carCard .text-red-1 {
  color: #F4BE22 !important;
}

/* View Detail button */
/* Car list View Detail button — calm premium */
.cars-page-main #carsList .rentcar-premium-card button,
.cars-page-main #carsList .carCard button {
  background: #191B1E !important;
  border: 1px solid #191B1E !important;
  color: #fff !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  min-width: 112px !important;
  height: 48px !important;
  box-shadow: none !important;
}

.cars-page-main #carsList .rentcar-premium-card button:hover,
.cars-page-main #carsList .carCard button:hover {
  background: #050505 !important;
  border-color: #F8D448 !important;
  color: #F8D448 !important;
}

/* =========================================================
   CARS DETAIL PANEL — premium proportions
   ========================================================= */

.cars-page-main [id^="car-detail-"] {
  border-radius: 24px !important;
  border: 1px solid rgba(248, 212, 72, 0.20) !important;
  box-shadow: 0 32px 90px rgba(25, 27, 30, 0.10) !important;
}

.cars-page-main [id^="car-detail-"] h2,
.cars-page-main [id^="car-detail-"] .text-30,
.cars-page-main [id^="car-detail-"] .text-40 {
  font-size: 34px !important;
  line-height: 1.05 !important;
  letter-spacing: -0.03em !important;
}

.cars-page-main [id^="car-detail-"] img {
  transform: scale(1.12) !important;
  transform-origin: center !important;
}

.cars-page-main [id^="car-detail-"] .mainSearch__submit,
.cars-page-main [id^="car-detail-"] button {
  border-radius: 12px !important;
}

.cars-page-main [id^="car-detail-"] .text-red-1,
.cars-page-main [id^="car-detail-"] [class*="text-red"] {
  color: #191B1E !important;
}

.cars-page-main [id^="car-detail-"] a:hover {
  color: #F4BE22 !important;
}

.cars-page-main .rentcar-premium-card .button:hover,
.cars-page-main .carCard .button:hover {
  background: linear-gradient(180deg, #FFE16A 0%, #E9B516 100%) !important;
  color: #111 !important;
}

/* Search drawer popup blue cleanup */
.cars-page-main .js-search-option:hover,
.cars-page-main .js-search-option:focus,
.cars-page-main .js-search-option.-is-active,
.cars-page-main .js-search-option.is-active {
  background: rgba(248, 212, 72, 0.14) !important;
  color: #191B1E !important;
}

.cars-page-main .js-search-option:hover *,
.cars-page-main .js-search-option:focus * {
  color: #191B1E !important;
}

/* Calendar drawer */
.cars-page-main .rc-cal-day:hover {
  background: rgba(248, 212, 72, 0.14) !important;
  color: #191B1E !important;
}

.cars-page-main .rc-cal-active,
.cars-page-main .rc-cal-day.rc-cal-active {
  background: rgba(248, 212, 72, 0.18) !important;
  color: #191B1E !important;
  border: 1px solid rgba(248, 212, 72, 0.55) !important;
}

/* Minimal footer */
.cars-page-main .rentcar-account-footer {
  background: #050505 !important;
  border-top: 1px solid rgba(248, 212, 72, 0.16) !important;
  color: rgba(255,255,255,.78) !important;
}

.cars-page-main .rentcar-account-footer a,
.cars-page-main .rentcar-account-footer span {
  color: rgba(255,255,255,.78) !important;
}

.cars-page-main .rentcar-account-footer__brand {
  color: #fff !important;
  font-weight: 800 !important;
}

.cars-page-main .rentcar-account-footer a:hover {
  color: #F8D448 !important;
}

/* ADDONS continue button */
#continueButton {
  background: linear-gradient(180deg, #FFD84A 0%, #F4BE22 100%) !important;
  border: 1px solid #F4BE22 !important;
  color: #111 !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
}

#continueButton:hover {
  background: linear-gradient(180deg, #FFE16A 0%, #E9B516 100%) !important;
}

.rentcar-addons-header__actions {
  min-width: 0;
}

.rentcar-review-flow-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  margin-bottom: 18px;
}

.rentcar-flow-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  color: #191B1E !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
}

.rentcar-flow-back-link i {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(25, 27, 30, 0.12);
  border-radius: 50%;
  background: #fff;
  color: #191B1E !important;
}

.rentcar-flow-back-link:hover,
.rentcar-flow-back-link:hover i {
  color: #B8860B !important;
  border-color: rgba(248, 212, 72, 0.6);
}

.rentcar-flow-back-link--secondary {
  color: rgba(25, 27, 30, 0.72) !important;
}

@media (max-width: 575px) {
  .rentcar-addons-header {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .rentcar-addons-header .row {
    flex-wrap: wrap !important;
    gap: 12px;
  }

  .rentcar-addons-header .col-auto {
    width: 100%;
  }

  .rentcar-addons-header .rc-simple-header__brand {
    justify-content: space-between;
  }

  .rentcar-addons-header .header-logo img[src$="deluxelogo.png"] {
    max-width: 160px !important;
    max-height: 34px !important;
  }

  .rentcar-addons-header .rc-simple-header__back {
    display: inline-flex !important;
    width: 36px !important;
    height: 36px !important;
    flex: 0 0 36px !important;
    margin-right: 12px !important;
  }

  .rentcar-addons-header__actions {
    width: 100%;
    justify-content: space-between;
    gap: 12px !important;
    padding: 10px;
    border: 1px solid rgba(248, 212, 72, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
  }

  .rentcar-addons-header__actions > div {
    min-width: 0;
  }

  .rentcar-addons-header__actions .text-15 {
    font-size: 12px !important;
  }

  .rentcar-addons-header__actions #addonsHeaderTotal {
    display: block;
    font-size: 20px !important;
    line-height: 1.15 !important;
  }

  .rentcar-addons-header__actions #addonsPriceDetailsButton {
    margin-top: 2px;
    font-size: 12px !important;
  }

  #continueButton.rentcar-addons-continue {
    height: 42px !important;
    min-width: 122px;
    padding: 0 18px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    white-space: nowrap;
  }

  .rentcar-addons-content {
    padding-top: 28px !important;
    padding-bottom: 34px !important;
  }

  .rentcar-addon-section-title {
    margin-bottom: 14px !important;
    font-size: 18px !important;
    line-height: 1.25 !important;
  }

  .rentcar-addon-card {
    gap: 14px !important;
    padding: 14px !important;
    border-radius: 16px !important;
  }

  .rentcar-addon-image {
    height: 150px !important;
    border-radius: 12px !important;
  }

  .rentcar-addon-icon {
    width: 64px !important;
    height: 64px !important;
    flex: 0 0 64px !important;
    border-radius: 14px !important;
  }

  .rentcar-addon-content .d-flex.justify-between.items-start {
    gap: 12px !important;
  }

  .rentcar-addon-content h3 {
    font-size: 17px !important;
    line-height: 1.25 !important;
  }

  .rentcar-addon-content .text-15 {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  .rentcar-addon-card .mt-20 {
    margin-top: 14px !important;
  }

  .rentcar-addon-button {
    height: 38px !important;
    padding: 0 16px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
    white-space: nowrap;
  }

  .rentcar-addon-summary {
    position: static !important;
    padding: 18px !important;
    border-radius: 16px !important;
  }

  .rentcar-flow-back-link {
    font-size: 13px;
  }
}

/* Eklenti Kartları İçin */
.addon-card {
  border: none !important; /* Eski gri ve kırmızı çerçeveleri kesinlikle kaldırır */
  background-color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important; /* Modern hafif gölge */
  border-radius: 12px !important; /* Köşeleri yuvarlar */
}

/* Sağdaki Özet Kartı İçin */
.summary-card, .pickup-return-card {
  /* Not: Sağdaki kartın class adı HTML'inizde neyse onu yazın */
  background-color: #ffffff !important; /* Kirli krem rengini beyaza çevirir */
  border: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
  border-radius: 12px !important; /* Sol taraftaki kartlarla köşeleri eşitler */
}

/* ADDONS summary — clean premium version */

.rentcar-addon-summary {
  background: #FCFBF7 !important;
  border: 1px solid #ECE7DB !important;
  border-radius: 24px !important;
  padding: 30px !important;
  box-shadow: 0 24px 70px rgba(25, 27, 30, 0.08) !important;
  position: sticky;
  top: 120px;
}

.rentcar-summary-subtitle {
  margin-top: 4px;
  font-size: 14px !important;
  color: #6B7280 !important;
  font-weight: 500 !important;
}

.rentcar-summary-divider {
  height: 1px;
  background: rgba(25, 27, 30, 0.10);
  margin: 24px 0;
}

.rentcar-summary-section-label {
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  color: #6B7280 !important;
  margin-bottom: 10px !important;
  text-transform: uppercase;
}

.rentcar-summary-main-text {
  font-size: 16px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
  color: #191B1E !important;
}

.rentcar-summary-title {
  font-size: 18px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
  color: #191B1E !important;
}

.rentcar-summary-muted-text {
  margin-top: 8px !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  color: #7A808C !important;
  font-weight: 500 !important;
}

.rentcar-summary-arrow {
  margin: 16px 0;
  font-size: 18px;
  color: #191B1E;
}

.rentcar-summary-added-list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  font-size: 15px;
  color: #6B7280;
}

.rentcar-summary-added-list > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
}

.rentcar-summary-added-list span:last-child {
  font-weight: 700;
  color: #191B1E;
}

.rentcar-summary-added-list strong,
.rentcar-summary-added-list span:last-child {
  font-weight: 800;
  color: #191B1E;
}

/* Shared summary route layout */
.rentcar-summary-route {
 display: flex;
 justify-content: space-between;
 gap: 18px;
 align-items: flex-start;
}

.rentcar-summary-route > div {
 flex: 1 1 0;
}

.rentcar-summary-included-list {
 margin-top: 8px;
}

/* keep arrow visually centered between pickup/dropoff blocks */
.rentcar-summary-arrow {
 display: flex;
 align-items: center;
 justify-content: center;
 min-width: 28px;
 color: #191B1E;
}

.rc-flow-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.rc-flow-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.68);
  backdrop-filter: blur(4px);
}

.rc-flow-modal__card {
  position: relative;
  width: min(420px, calc(100vw - 32px));
  background: #202124;
  border: 1px solid rgba(248, 212, 72, 0.26);
  border-radius: 18px;
  padding: 34px 30px 28px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.rc-flow-modal__icon {
  font-size: 42px;
  margin-bottom: 14px;
}

.rc-flow-modal__title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.rc-flow-modal__message {
  color: #C9C7C1;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.rc-flow-modal__button {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 10px;
  background: #FFB800;
  color: #191B1E;
  font-weight: 700;
  cursor: pointer;
}

/* =========================================================
   REVIEW FLOW MODAL — warm light warning/error state
   ========================================================= */

.rc-flow-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.rc-flow-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 27, 30, 0.46) !important;
  backdrop-filter: blur(5px);
}

.rc-flow-modal__card {
  position: relative;
  width: min(440px, calc(100vw - 32px));
  padding: 34px 32px 30px;
  text-align: center;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(248, 212, 72, 0.20), transparent 34%),
    linear-gradient(180deg, #fffdf7 0%, #ffffff 62%, #fffaf0 100%) !important;
  border: 1px solid rgba(248, 212, 72, 0.38) !important;
  box-shadow: 0 30px 90px rgba(25, 27, 30, 0.24) !important;
}

.rc-flow-modal__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(248, 212, 72, 0.18);
  border: 1px solid rgba(248, 212, 72, 0.50);
  color: #191B1E;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.rc-flow-modal__title {
  margin: 0 0 10px;
  color: #191B1E !important;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.rc-flow-modal__message {
  max-width: 340px;
  margin: 0 auto 26px;
  color: rgba(25, 27, 30, 0.66) !important;
  font-size: 15px;
  line-height: 1.55;
}

.rc-flow-modal__button {
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #FFD84A 0%, #F4BE22 100%) !important;
  color: #111 !important;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(248, 212, 72, 0.24);
  transition: all 0.2s ease;
}

.rc-flow-modal__button:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #FFE16A 0%, #E9B516 100%) !important;
}

.rc-flow-modal.is-error .rc-flow-modal__icon {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #be123c;
}

.rc-flow-modal.is-warning .rc-flow-modal__icon {
  background: rgba(248, 212, 72, 0.18);
  border-color: rgba(248, 212, 72, 0.55);
  color: #191B1E;
}

/* =========================================================
   FOOTER SUPPORT REQUEST MODAL
   ========================================================= */

.rc-support-cta {
  min-width: 220px;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
}

.rc-support-modal[hidden] {
  display: none !important;
}

.rc-support-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.rc-support-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 27, 30, 0.62);
  backdrop-filter: blur(6px);
}

.rc-support-modal__card {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 34px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(248, 212, 72, 0.18), transparent 34%),
    linear-gradient(180deg, #fffdf7 0%, #ffffff 64%, #fffaf0 100%);
  border: 1px solid rgba(248, 212, 72, 0.38);
  box-shadow: 0 30px 90px rgba(25, 27, 30, 0.30);
  color: #191B1E;
}

.rc-support-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(25, 27, 30, 0.06);
  color: #191B1E;
  cursor: pointer;
}

.rc-support-modal__close:hover {
  background: rgba(25, 27, 30, 0.10);
}

.rc-support-modal__eyebrow {
  margin-bottom: 8px;
  color: rgba(25, 27, 30, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rc-support-modal__title {
  margin: 0;
  padding-right: 44px;
  color: #191B1E;
  font-size: 28px;
  line-height: 1.16;
  font-weight: 800;
}

.rc-support-modal__intro {
  margin: 10px 0 24px;
  color: rgba(25, 27, 30, 0.66);
  font-size: 15px;
  line-height: 1.55;
}

.rc-support-form {
  display: grid;
  gap: 16px;
}

.rc-support-phone-grid {
  display: grid;
  grid-template-columns: minmax(120px, 0.45fr) minmax(0, 1fr);
  gap: 16px;
}

.rc-support-field label {
  display: block;
  margin-bottom: 8px;
  color: #191B1E;
  font-size: 14px;
  font-weight: 800;
}

.rc-support-field input,
.rc-support-field select,
.rc-support-field textarea {
  width: 100%;
  min-height: 54px;
  border: 1.5px solid #cfd6e4;
  border-radius: 12px;
  background: #fff;
  padding: 0 15px;
  color: #191B1E;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
}

.rc-support-field textarea {
  min-height: 132px;
  padding-top: 13px;
  padding-bottom: 13px;
  resize: vertical;
}

.rc-support-field input:focus,
.rc-support-field select:focus,
.rc-support-field textarea:focus {
  outline: none;
  border-color: #F8D448;
  box-shadow: 0 0 0 4px rgba(248, 212, 72, 0.24);
}

.rc-support-field__meta {
  min-height: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-top: 7px;
}

.rc-support-error {
  min-height: 18px;
  color: #be123c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.rc-support-counter {
  flex-shrink: 0;
  color: rgba(25, 27, 30, 0.56);
  font-size: 12px;
  font-weight: 800;
}

.rc-support-status {
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff1f2;
  color: #be123c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.rc-support-submit {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #FFD84A 0%, #F4BE22 100%);
  color: #111;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(248, 212, 72, 0.24);
}

.rc-support-submit:hover {
  background: linear-gradient(180deg, #FFE16A 0%, #E9B516 100%);
}

.rc-support-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.rc-support-success {
  padding: 10px 0 0;
  text-align: center;
}

.rc-support-success__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #DDF7DF;
  color: #087333;
  font-size: 34px;
  font-weight: 900;
}

.rc-support-success p {
  margin: 0 0 24px;
  color: rgba(25, 27, 30, 0.72);
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 575px) {
  .rc-support-cta {
    width: 100%;
  }

  .rc-support-modal {
    align-items: flex-end;
    padding: 12px;
  }

  .rc-support-modal__card {
    max-height: calc(100vh - 24px);
    padding: 30px 22px 22px;
    border-radius: 18px;
  }

  .rc-support-modal__title {
    font-size: 24px;
  }

  .rc-support-phone-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   HOME LOCATION PICKER — Sixt-like warm luxury panel
   ========================================================= */

.rc-location-picker {
  width: min(860px, calc(100vw - 32px)) !important;
  display: none !important;
  grid-template-columns: 430px 1fr !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  background: #fffaf0 !important;
  border: 1px solid rgba(25, 27, 30, 0.10) !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28) !important;
  z-index: 9999 !important;
}

.rc-location-picker.is-open {
  display: grid !important;
}

.rc-location-picker__left {
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border-right: 1px solid rgba(25, 27, 30, 0.08);
}

.rc-location-picker__right {
  padding: 34px 32px;
  background:
    radial-gradient(circle at 25% 10%, rgba(248, 212, 72, 0.18), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #fffaf0 100%);
}

.rc-location-search {
  height: 52px;
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid rgba(25, 27, 30, 0.14);
}

.rc-location-search:focus-within {
  border-color: #F8D448;
  box-shadow: 0 0 0 4px rgba(248, 212, 72, 0.18);
}

.rc-location-search span {
  color: #191B1E;
  font-size: 22px;
  line-height: 1;
}

.rc-location-search input {
  height: 100%;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  color: #191B1E;
  font-size: 16px;
  font-weight: 700;
}

.rc-location-search input::placeholder {
  color: rgba(25, 27, 30, 0.42);
}

.rc-location-search button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #191B1E;
  font-size: 22px;
  line-height: 1;
  background: rgba(25, 27, 30, 0.06);
}

.rc-location-section-title {
  margin: 22px 0 10px;
  color: #191B1E;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rc-location-section-title--recent {
  padding-top: 14px;
  border-top: 1px solid rgba(25, 27, 30, 0.10);
}

.rc-location-option,
.rc-location-recent {
  width: 100%;
  min-height: 66px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  text-align: left;
  background: transparent;
  color: #191B1E;
  transition: all 0.18s ease;
}

.rc-location-option:hover,
.rc-location-option.is-selected,
.rc-location-recent:hover {
  background: rgba(248, 212, 72, 0.16);
  box-shadow: inset 0 0 0 1px rgba(248, 212, 72, 0.42);
}

.rc-location-option__icon,
.rc-location-recent span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #191B1E;
  font-size: 20px;
}

.rc-location-option strong {
  display: block;
  color: #191B1E;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.rc-location-option small {
  display: block;
  margin-top: 4px;
  color: rgba(25, 27, 30, 0.58);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
}

.rc-location-recent {
  min-height: 44px;
  color: rgba(25, 27, 30, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.rc-location-detail__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(248, 212, 72, 0.18);
  color: #191B1E;
  font-size: 30px;
}

.rc-location-picker__right h3 {
  margin: 0;
  color: #191B1E;
  font-size: 30px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.rc-location-picker__right p {
  margin: 8px 0 0;
  color: rgba(25, 27, 30, 0.72);
  font-size: 17px;
  font-weight: 700;
}

.rc-location-detail__address {
  margin-top: 8px;
  max-width: 310px;
  color: rgba(25, 27, 30, 0.62);
  font-size: 15px;
  line-height: 1.45;
}

.rc-location-tags {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rc-location-tags span {
  height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #9A5F00;
  background: rgba(248, 212, 72, 0.14);
  border: 1px solid rgba(248, 212, 72, 0.48);
  font-size: 13px;
  font-weight: 800;
}

.rc-location-hours {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(25, 27, 30, 0.10);
}

.rc-location-hours strong {
  display: block;
  color: #191B1E;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rc-location-hours span {
  display: block;
  margin-top: 8px;
  color: rgba(25, 27, 30, 0.72);
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 820px) {
  .rc-location-picker {
    grid-template-columns: 1fr !important;
    max-height: calc(100vh - 40px);
    overflow: auto !important;
  }

  .rc-location-picker__right {
    display: none;
  }
}

.rc-location-picker {
  max-height: calc(100vh - 120px) !important;
  overflow: auto !important;
}

.rc-location-picker {
  z-index: 99999 !important;
}


.rentcar-home-hero .masthead-bottom,
.rentcar-home-hero .mainSearch,
.rentcar-home-hero .button-grid,
.rentcar-home-hero .rcss-cell,
.rentcar-home-hero .rcss-cell-loc {
  overflow: visible !important;
}

.rentcar-home-hero .mainSearch,
.rentcar-home-hero .rentcar-sixt-search {
  position: relative !important;
  z-index: 9991 !important;
}

/* Fix search grid overflow after long location names */
.rentcar-home-hero .mainSearch .button-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr) minmax(0, .9fr) minmax(0, .9fr) 170px !important;
}

.rentcar-home-hero .rcss-cell,
.rentcar-home-hero .rcss-trigger,
.rentcar-home-hero .rcss-trigger span {
  min-width: 0 !important;
}

.rentcar-home-hero .rcss-trigger span {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.rentcar-home-hero .rcss-cell-date .rcss-date-btn span,
.rentcar-home-hero .rcss-cell-date .rcss-time-btn span {
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: nowrap !important;
}

.rentcar-home-hero .rcss-cell-date .rcss-date-btn {
  flex: 0 0 auto !important;
  min-width: 72px !important;
}

.rentcar-home-hero .rcss-cell-date .rcss-time-btn {
  flex: 0 0 auto !important;
  min-width: 58px !important;
}

.rentcar-home-hero .mainSearch__submit {
  width: 100% !important;
  min-width: 0 !important;
}

.rcss-time-popup {
  max-height: 260px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

.rcss-time-popup .rcss-time-list {
  max-height: 260px !important;
  overflow-y: auto !important;
}

.rc-location-icon{
    width:32px;
    height:32px;
    border-radius:50%;
    background:#F8D448;
    color:#191B1E;
    font-size:12px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

@media (max-width: 575px) {
  .rentcar-search-tabs {
    gap: 8px !important;
  }

  .rentcar-search-tab {
    height: 38px !important;
    min-width: auto !important;
    padding: 0 16px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
  }
}

.rentcar-protection-heading {
  margin-bottom: 24px;
}

.rentcar-protection-heading h1 {
  margin: 0;
  color: #191B1E;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
}

.rentcar-protection-heading p {
  margin: 8px 0 0;
  color: #697386;
  font-size: 16px;
}

.rentcar-protection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.rentcar-protection-card {
  position: relative;
  display: block;
  min-width: 0;
  padding: 24px;
  border: 1px solid #E4E7EC;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.rentcar-protection-card:hover,
.rentcar-protection-card.is-selected {
  border-color: #1F9D55;
  box-shadow: 0 14px 36px rgba(25, 27, 30, 0.08);
}

.rentcar-protection-card.is-selected {
  transform: translateY(-2px);
}

.rentcar-protection-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rentcar-protection-radio {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 22px;
  height: 22px;
  border: 2px solid #D0D5DD;
  border-radius: 50%;
}

.rentcar-protection-card.is-selected .rentcar-protection-radio {
  border-color: #1F9D55;
  background: radial-gradient(circle, #1F9D55 45%, transparent 48%);
}

.rentcar-protection-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-right: 28px;
}

.rentcar-protection-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(31, 157, 85, 0.1);
  color: #11743B;
  font-size: 12px;
  font-weight: 800;
}

.rentcar-protection-card h2 {
  margin: 0;
  color: #191B1E;
  font-size: 22px;
  font-weight: 800;
}

.rentcar-protection-card p {
  margin: 8px 0 0;
  color: #697386;
  font-size: 15px;
  line-height: 1.45;
}

.rentcar-protection-price {
  flex: 0 0 auto;
  text-align: right;
}

.rentcar-protection-price strong {
  display: block;
  color: #191B1E;
  font-size: 24px;
  font-weight: 800;
}

.rentcar-protection-price span {
  color: #697386;
  font-size: 13px;
  font-weight: 700;
}

.rentcar-protection-deposit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #F8FAFC;
  color: #344054;
  font-size: 14px;
}

.rentcar-protection-deposit strong {
  color: #191B1E;
}

.rentcar-protection-coverage {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.rentcar-protection-coverage li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  color: #344054;
}

.rentcar-protection-coverage li > span {
  color: #1F9D55;
  font-weight: 900;
}

.rentcar-protection-coverage li.is-excluded {
  color: #98A2B3;
}

.rentcar-protection-coverage li.is-excluded > span {
  color: #98A2B3;
}

.rentcar-protection-coverage strong {
  display: block;
  font-size: 14px;
}

.rentcar-protection-coverage small {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.35;
}

@media (max-width: 991px) {
  .rentcar-protection-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .rentcar-protection-heading h1 {
    font-size: 24px;
  }

  .rentcar-protection-card {
    padding: 20px;
  }

  .rentcar-protection-card__top {
    display: block;
  }

  .rentcar-protection-price {
    margin-top: 14px;
    text-align: left;
  }
}

@media (max-width: 575px) {
  .rentcar-home-yellow-header [data-x="header-mobile-icons"] a.icon-user,
  .rentcar-home-yellow-header [data-x="header-mobile-icons"] .icon-user {
    color: #fff !important;
  }

  .rentcar-home-yellow-header.is-menu-opened [data-x="header-mobile-icons"] a.icon-user,
  .rentcar-home-yellow-header.is-menu-opened [data-x="header-mobile-icons"] .icon-user {
    color: #191B1E !important;
  }
}

/* =========================================================
   HOME MOBILE COMPOSITION - tighter hero + clearer search
   ========================================================= */

@media (max-width: 575px) {
  .rentcar-home-yellow-header .header__container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .rentcar-home-yellow-header .header-logo {
    max-width: 150px !important;
    margin-right: 0 !important;
  }

  .rentcar-home-yellow-header .header-logo img[src$="deluxelogo.png"] {
    max-width: 150px !important;
    max-height: 60px !important;
  }

  .rentcar-home-yellow-header .js-lang-toggle {
    font-size: 12px !important;
    white-space: nowrap !important;
  }

  .rentcar-home-yellow-header .js-lang-toggle img {
    width: 18px !important;
    height: 18px !important;
    margin-right: 7px !important;
  }

  .rentcar-home-yellow-header .js-lang-toggle i {
    margin-left: 7px !important;
  }

  .rentcar-home-hero {
    min-height: auto !important;
    padding-top: 78px !important;
    padding-bottom: 34px !important;
    background-position: center top !important;
  }

  .rentcar-home-hero .container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .rentcar-home-hero .text-center {
    max-width: 330px !important;
  }

  .rentcar-home-hero .text-center::before {
    margin-bottom: 8px !important;
    font-size: 10px !important;
    letter-spacing: 0.16em !important;
  }

  .rentcar-home-hero .text-center h1 {
    max-width: 320px !important;
    font-size: 34px !important;
    line-height: 1.08 !important;
  }

  .rentcar-home-hero .text-center p {
    max-width: 315px !important;
    margin-top: 8px !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  .rentcar-home-hero .masthead-bottom {
    margin: 42px auto 0 !important;
    padding: 0 14px !important;
  }

  .rentcar-home-hero.masthead.-type-8 .mainSearch,
  .rentcar-home-hero .mainSearch,
  .rentcar-home-hero .rentcar-sixt-search {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 18px 18px !important;
    border-radius: 14px !important;
    background: rgba(251, 247, 236, 0.96) !important;
  }

  .rentcar-home-hero .rentcar-search-top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    margin-bottom: 14px !important;
  }

  .rentcar-home-hero .rentcar-search-tabs {
    flex: 0 0 auto !important;
    min-width: 0 !important;
  }

  .rentcar-home-hero .rentcar-search-tab {
    height: 36px !important;
    min-width: 132px !important;
    padding: 0 14px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
  }

  .rentcar-home-hero .rentcar-edit-booking-link {
    max-width: 140px !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
    text-align: right !important;
  }

  .rentcar-home-hero .rcss-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    border-top-color: rgba(25, 27, 30, 0.08) !important;
    padding-top: 10px !important;
  }

  .rentcar-home-hero #rcssPickupLocCell,
  .rentcar-home-hero #rcssDropoffLocCell,
  .rentcar-home-hero .rcss-cell-submit {
    grid-column: 1 / -1 !important;
  }

  .rentcar-home-hero #rcssPickupDateCell {
    grid-column: 1 !important;
    padding-right: 10px !important;
    border-right: 1px solid rgba(25, 27, 30, 0.08) !important;
  }

  .rentcar-home-hero #rcssDropoffDateCell {
    grid-column: 2 !important;
    padding-left: 10px !important;
  }

  .rentcar-home-hero .rcss-cell {
    min-height: 66px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .rentcar-home-hero .rcss-label {
    font-size: 11px !important;
    font-weight: 800 !important;
  }

  .rentcar-home-hero .rcss-trigger {
    gap: 7px !important;
    font-size: 13px !important;
  }

  .rentcar-home-hero .rcss-icon {
    font-size: 16px !important;
  }

  .rentcar-home-hero .rcss-date-row {
    gap: 6px !important;
  }

  .rentcar-home-hero .rcss-dot {
    display: none !important;
  }

  .rentcar-home-hero .rcss-time-btn {
    margin-left: 2px !important;
  }

  .rentcar-home-hero .mainSearch__submit {
    height: 50px !important;
    border-radius: 10px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .rentcar-home-hero .mainSearch__submit span {
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    font-size: 14px !important;
  }

  .rentcar-home-hero .rcss-diff-return {
    margin-top: 12px !important;
  }

  .rc-location-picker {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    max-height: min(380px, calc(100vh - 24px)) !important;
    border-radius: 16px !important;
  }

  .rc-location-picker__left {
    padding: 16px !important;
  }

  .rc-location-search {
    height: 46px !important;
    grid-template-columns: 28px minmax(0, 1fr) 28px !important;
    padding: 0 12px !important;
  }

  .rc-location-search input {
    font-size: 14px !important;
  }

  .rc-location-section-title {
    margin: 16px 0 8px !important;
    font-size: 11px !important;
  }

  .rc-location-option,
  .rc-location-recent {
    min-height: 54px !important;
    padding: 10px 12px !important;
    grid-template-columns: 28px minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  .rc-location-option strong {
    font-size: 14px !important;
  }

  .rc-location-option small {
    font-size: 12px !important;
  }
}

@media (max-width: 575px) {
  .rentcar-home-yellow-header [data-x="header-mobile-icons"] a.icon-user,
  .rentcar-home-yellow-header [data-x="header-mobile-icons"] .icon-user {
    color: #fff !important;
  }

  .rentcar-home-yellow-header.is-menu-opened [data-x="header-mobile-icons"] a.icon-user,
  .rentcar-home-yellow-header.is-menu-opened [data-x="header-mobile-icons"] .icon-user {
    color: #191B1E !important;
  }
}

