/* =========================
   CAB365 Quote Widget
   ========================= */

   .quote-widget,
   .cab365-search-card {
     width: 100%;
     max-width: 360px;
     background: rgba(255, 255, 255, 0.92);
     border-radius: 14px;
     padding: 18px;
     box-shadow: 0 10px 30px rgba(0,0,0,0.18);
     backdrop-filter: blur(6px);
   }

   .quote-widget h3,
   .cab365-search-card h3 {
     margin: 0 0 8px 0;
     font-size: 18px;
     letter-spacing: 0.2px;
   }
   
   .quote-widget .subheading,
   .cab365-search-card .subheading {
     margin: 0 0 12px 0;
     font-size: 14px;
     opacity: 0.9;
   }

   .quote-widget .form-group,
   .cab365-search-card .form-group {
     margin-bottom: 12px;
   }
   
   .quote-widget label,
   .cab365-search-card label {
     display: block;
     font-size: 13px;
     margin-bottom: 6px;
     opacity: 0.95;
   }

   .quote-widget .form-control,
   .cab365-search-card .form-control,
   .quote-widget select,
   .cab365-search-card select,
   .quote-widget input,
   .cab365-search-card input {
     width: 100%;
     height: 40px;
     border-radius: 10px;
     border: 1px solid rgba(0,0,0,0.18);
     padding: 8px 10px;
     background: rgba(255,255,255,0.9);
     outline: none;
   }


   .quote-widget .btn-primary,
   .cab365-search-card .btn-primary {
     width: 100%;
     height: 44px;
     border-radius: 999px;
     border: 0;
     cursor: pointer;
     font-weight: 600;
   }

/* =========================
   Date & Time Trigger
   ========================= */
.qw-trigger {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  cursor: pointer;
}

.qw-trigger-main {
  font-size: 14px;
  opacity: 0.95;
}

.qw-trigger-sub {
  font-size: 12px;
  opacity: 0.65;
  margin-left: 10px;
  white-space: nowrap;
}

/* =========================
   Overlay + Sheet (CRITICAL FIX)
   - DO NOT force display:none on base classes
   - Only hide when [hidden] is present
   ========================= */

/* Hidden behaviour controlled by JS (your quoteWidget.js) */
#qw-date-overlay[hidden],
#qw-date-sheet[hidden] {
  display: none !important;
}

/* Overlay */
#qw-date-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9998;
}

/* Sheet container */
#qw-date-sheet {
  position: fixed;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: min(920px, calc(100% - 24px));
  background: rgba(255,255,255,0.98);
  border-radius: 14px;
  z-index: 9999;
  box-shadow: 0 16px 50px rgba(0,0,0,0.28);
  overflow: hidden;
  /* viewport cap: prevents sheet overflowing on Return mode */
  max-height: 90dvh;
  /* JS sets display:grid inline — define rows so header stays fixed and body scrolls */
  grid-template-rows: auto minmax(0, 1fr);
}

/* Desktop: center modal */
@media (min-width: 820px) {
  #qw-date-sheet {
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    max-width: 980px;
  }
}

/* Sheet header */
.qw-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.qw-sheet-title {
  margin: 0;
  font-size: 16px;
}

.qw-sheet-close,
.qw-sheet-apply {
  height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  background: white;
  cursor: pointer;
  font-weight: 600;
}

.qw-sheet-close {
  width: 40px;
  padding: 0;
}

/* Sheet body */
.qw-sheet-body {
  padding: 14px;
  /* scroll when Return mode makes content taller than the capped sheet */
  overflow-y: auto;
  /* min-height:0 is required for grid children to respect overflow correctly */
  min-height: 0;
}

/* One-way / return pills */
.qw-pill-toggle {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  margin-bottom: 14px;
}

.qw-pill {
  height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  opacity: 0.85;
}

.qw-pill.active {
  background: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  opacity: 1;
}

/* Two-column layout on desktop */
.qw-sheet-group {
  margin-top: 12px;
}

@media (min-width: 820px) {
  .qw-sheet-body {
    padding: 16px;
  }

  .qw-sheet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  /* outbound group first column, return group second column */
  #qw-outbound-group {
    grid-column: 1;
  }
  #qw-return-group {
    grid-column: 2;
  }
}

/* Group label */
.qw-sheet-group h4,
.qw-sheet-group h5 {
  margin: 0 0 10px 0;
}

/* Inputs inside sheet */
.qw-sheet .form-row {
  display: flex;
  gap: 12px;
}

.qw-sheet .form-row > * {
  flex: 1;
}

.qw-sheet input[type="date"],
.qw-sheet input[type="time"] {
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.18);
  padding: 8px 10px;
  width: 100%;
}

/* Keep sheet tappable above everything */
.qw-sheet,
#qw-date-sheet,
#qw-date-overlay {
  pointer-events: auto;
}

/* Date/time row inside the sheet: side-by-side Date + Time columns */
.qw-dt-row {
  display: flex;
  gap: 12px;
}

/* Each field column: label stacks cleanly above the input */
.qw-field {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

/* Label above input — must not intercept clicks on the input below */
.qw-field > label {
  pointer-events: none;
  margin-bottom: 6px;
  font-size: 13px;
}

/* =========================
   Luggage counters (Phase 4.1)
   ========================= */
   .qw-luggage { margin-top: 10px; }
   .qw-luggage summary { cursor: pointer; font-weight: 700; margin-bottom: 8px; }
   
   .qw-luggage-grid { display: grid; gap: 10px; }
   
   .qw-counter label { display: block; margin-bottom: 6px; font-size: 13px; opacity: 0.95; }
   
   .qw-counter-controls {
     display: grid;
     grid-template-columns: 34px 1fr 34px;
     gap: 8px;
     align-items: center;
   }
   
   .qw-counter-controls input {
     width: 100%;
     text-align: center;
     height: 40px;
     border-radius: 10px;
     border: 1px solid rgba(0,0,0,0.18);
     background: rgba(255,255,255,0.9);
   }
   
   .qw-counter-controls button {
     height: 40px;
     border-radius: 10px;
     border: 1px solid rgba(0,0,0,0.18);
     background: rgba(255,255,255,0.95);
     cursor: pointer;
     font-weight: 800;
   }
   
   .qw-reco {
     margin-top: 10px;
     padding: 10px;
     border-radius: 10px;
     border: 1px solid rgba(0,0,0,0.15);
     background: rgba(255,255,255,0.75);
     font-size: 13px;
   }
   
/* =========================================
   Step 5 — centered Skyscanner-style layout
   ========================================= */

   .clean-hero {
    min-height: 100vh;
    background: linear-gradient(180deg, #062a78 0%, #041d57 100%);
    position: relative;
    overflow: hidden;
    padding: 32px 16px 56px;
  }
  
  .clean-hero .hero-brand {
    position: relative;
    z-index: 20;
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .hero-center {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .hero-copy {
    max-width: 760px;
    margin: 0 auto 28px;
  }
  
  .hero-kicker {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  
  .hero-title {
    margin: 0 0 14px;
    font-size: 56px;
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: #fff;
  }
  
  .hero-subtitle {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
    color: rgba(255,255,255,0.92);
  }
  
  .hero-search-card {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .hero-search-card .cab365-search-card {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    padding: 16px;
    position: static;
    width: 100%;
    max-width: none;
    margin: 0;
  }
  
  /* widget internals */
  .quote-widget-shell {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .qw-topbar {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
  }
  
  .qw-trip-chip {
    border: 1px solid #d8e1ef;
    background: #eef4ff;
    color: #102c67;
    border-radius: 999px;
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 700;
  }
  
  .qw-trip-chip:not(.active) {
    background: #fff;
    color: #5c6d86;
  }
  
  .quote-widget-shell .form-row {
    display: block;
    margin: 0;
  }
  
  .quote-widget-shell .form-row label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #24344d;
    text-align: left;
  }
  
  .quote-widget-shell input,
  .quote-widget-shell select,
  .quote-widget-shell .qw-trigger,
  .quote-widget-shell .qw-counter input,
  .quote-widget-shell .qw-counter button {
    min-height: 58px;
    border-radius: 18px;
    border: 1px solid #d8e1ef;
    background: #fff;
    font-size: 16px;
  }
  
  .quote-widget-shell input,
  .quote-widget-shell select,
  .quote-widget-shell .qw-trigger {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }
  
  .quote-widget-shell input::placeholder {
    color: #7c8aa0;
  }
  
  .qw-counter {
    display: grid;
    grid-template-columns: 52px 1fr 52px;
    gap: 10px;
    align-items: center;
  }
  
  .qw-counter button {
    font-size: 24px;
    font-weight: 700;
    background: #f7faff;
  }
  
  .qw-counter input {
    text-align: center;
    font-weight: 700;
  }
  
  .qw-reco {
    text-align: left;
    background: #f5f9ff;
    border: 1px solid #d8e7fb;
    border-radius: 14px;
    padding: 10px 12px;
  }
  
  .qw-luggage {
    text-align: left;
    border: 1px solid #e3eaf3;
    background: #fbfcfe;
    border-radius: 16px;
    padding: 2px 14px 14px;
  }
  
  .qw-luggage summary {
    cursor: pointer;
    font-weight: 700;
    padding: 14px 0 10px;
  }
  
  .qw-submit {
    width: 100%;
    min-height: 60px;
    border: 0;
    border-radius: 18px !important;
    background: linear-gradient(180deg, #2f6df6 0%, #1d4ed8 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
  }
  
  @media (max-width: 640px) {
    .clean-hero {
      padding: 20px 14px 40px;
      min-height: auto;
    }
  
    .clean-hero .hero-brand {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 20px;
    }
  
    .hero-copy {
      text-align: left;
      margin-bottom: 18px;
    }
  
    .hero-title {
      font-size: 36px;
      line-height: 1.06;
    }
  
    .hero-subtitle {
      font-size: 16px;
      line-height: 1.45;
    }
  
    .hero-search-card .cab365-search-card {
      padding: 16px;
      border-radius: 22px;
    }
  
    .quote-widget-shell input,
    .quote-widget-shell select,
    .quote-widget-shell .qw-trigger,
    .quote-widget-shell .qw-counter input,
    .quote-widget-shell .qw-counter button,
    .qw-submit {
      min-height: 54px;
    }
  }
  
  /* ================================
   Clean Hero Widget Grid Layout
================================ */

.clean-hero .quote-widget-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* rows that should span full width */

.clean-hero .quote-widget-shell .qw-topbar,
.clean-hero .quote-widget-shell .qw-reco,
.clean-hero .quote-widget-shell .qw-luggage,
.clean-hero .quote-widget-shell .qw-submit {
  grid-column: 1 / -1;
}

/* normal rows */

.clean-hero .quote-widget-shell .form-row {
  display: flex;
  flex-direction: column;
}

/* vehicle row full width */

.clean-hero .quote-widget-shell .form-row.vehicle-row {
  grid-column: 1 / -1;
}

/* passenger counter */

.clean-hero .qw-counter {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 10px;
}

/* =========================================
   Step 4 — homepage-only namespaced layout
   ========================================= */

   .clean-hero .cab365-search-card .quote-widget-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
  }
  
  .clean-hero .cab365-search-card .cab365-search-topbar,
  .clean-hero .cab365-search-card .qw-reco,
  .clean-hero .cab365-search-card .qw-luggage,
  .clean-hero .cab365-search-card .qw-submit,
  .clean-hero .cab365-search-card .vehicle-row {
    grid-column: 1 / -1;
  }
  
  .clean-hero .cab365-search-card .cab365-search-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    min-width: 0;
    margin: 0;
  }
  
  .clean-hero .cab365-search-card .cab365-search-label {
    display: block;
    margin: 0;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: #324764;
  }
  
  .clean-hero .cab365-search-card .cab365-search-row > input,
  .clean-hero .cab365-search-card .cab365-search-row > select,
  .clean-hero .cab365-search-card .cab365-search-row > button,
  .clean-hero .cab365-search-card .cab365-search-row > div {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .clean-hero .cab365-search-card .cab365-counter {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    gap: 10px;
    align-items: center;
    width: 100%;
  }
  
  .clean-hero .cab365-search-card .cab365-counter > * {
    width: 100%;
    min-width: 0;
    margin: 0;
  }
  
/* === Homepage responsive: tablet (≤900px) === */
@media (max-width: 900px) {

  /* hero typography */
  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .clean-hero .hero-brand {
    margin-bottom: 28px;
  }

  /* widget shell + search card grid collapse to 1 column */
  .clean-hero .quote-widget-shell,
  .clean-hero .cab365-search-card .quote-widget-shell {
    grid-template-columns: 1fr;
  }

  .clean-hero .cab365-search-card .cab365-search-topbar,
  .clean-hero .cab365-search-card .cab365-search-row,
  .clean-hero .cab365-search-card .qw-reco,
  .clean-hero .cab365-search-card .qw-luggage,
  .clean-hero .cab365-search-card .qw-submit,
  .clean-hero .cab365-search-card .vehicle-row {
    grid-column: 1 / -1;
  }
}

/* ===========================================
   Homepage horizontal search bar (Phase B)
   Scoped to .clean-hero only — landing pages unaffected
   =========================================== */

/* Override form grid to single column — bar handles its own internal layout */
.clean-hero .cab365-search-card .quote-widget-shell {
  grid-template-columns: 1fr;
}

/* The horizontal bar container */
.clean-hero .cab365-search-card .cab365-search-bar {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #d8e1ef;
  overflow: visible;
}

/* Min-booking notice lives outside the bar so it is not a flex item in the horizontal row */
.qw-booking-notice-slot {
  width: 100%;
  min-width: 0;
  margin: 0;
}

.clean-hero .quote-widget-shell > .qw-booking-notice-slot,
.clean-hero .cab365-search-card .quote-widget-shell > .qw-booking-notice-slot {
  grid-column: 1 / -1;
}

/* Round left edge of first slot to replace overflow:hidden clipping */
.clean-hero .cab365-search-card .cab365-search-bar .cab365-search-row--from {
  border-radius: 18px 0 0 18px;
}

/* Field icons — position rows relative so ::before can be placed absolutely */
.clean-hero .cab365-search-card .cab365-search-bar .cab365-search-row--from,
.clean-hero .cab365-search-card .cab365-search-bar .cab365-search-row--to,
.clean-hero .cab365-search-card .cab365-search-bar .cab365-search-row--when {
  position: relative;
}

.clean-hero .cab365-search-card .cab365-search-bar .cab365-search-row--from::before {
  content: "📍";
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-size: 13px;
  line-height: 1;
  pointer-events: none;
}

.clean-hero .cab365-search-card .cab365-search-bar .cab365-search-row--to::before {
  content: "📍";
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-size: 13px;
  line-height: 1;
  pointer-events: none;
}

.clean-hero .cab365-search-card .cab365-search-bar .cab365-search-row--when::before {
  content: "📅";
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-size: 13px;
  line-height: 1;
  pointer-events: none;
}

/* Indent input text / trigger text to avoid icon overlap */
.clean-hero .cab365-search-card .cab365-search-bar .cab365-search-row--from input,
.clean-hero .cab365-search-card .cab365-search-bar .cab365-search-row--to input {
  padding-left: 24px !important;
}

.clean-hero .cab365-search-card .cab365-search-bar .cab365-search-row--when .qw-trigger {
  padding-left: 24px !important;
}

/* Each field slot */
.clean-hero .cab365-search-card .cab365-search-bar .cab365-search-row {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 18px;
  border-right: 1.5px solid #e8edf5;
  gap: 6px;
}

/* Labels inside bar — small caps style */
.clean-hero .cab365-search-card .cab365-search-bar .cab365-search-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #3d526a;
  margin: 0;
}

/* Inputs + select + trigger inside bar — borderless, transparent */
.clean-hero .cab365-search-card .cab365-search-bar input:not([type="hidden"]):not([type="checkbox"]),
.clean-hero .cab365-search-card .cab365-search-bar select,
.clean-hero .cab365-search-card .cab365-search-bar .qw-trigger {
  border: none !important;
  background: transparent;
  padding: 0;
  height: auto;
  min-height: 30px;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0;
  outline: none;
  box-shadow: none;
}

/* Date trigger — reset flex display */
.clean-hero .cab365-search-card .cab365-search-bar .qw-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  height: auto;
}

/* Passenger counter inside bar */
.clean-hero .cab365-search-card .cab365-search-bar .qw-counter,
.clean-hero .cab365-search-card .cab365-search-bar .cab365-counter {
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  gap: 6px;
  align-items: center;
}

.clean-hero .cab365-search-card .cab365-search-bar .qw-counter button {
  height: 28px;
  width: 28px;
  min-height: unset;
  border-radius: 50%;
  border: 1.5px solid #d8e1ef;
  background: #f4f7fc;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.clean-hero .cab365-search-card .cab365-search-bar .qw-counter input {
  min-height: unset;
  height: auto;
  text-align: center;
}

/* Submit button at right end of bar */
.clean-hero .cab365-search-card .cab365-search-bar .qw-submit {
  flex: 0 0 130px;
  width: 130px;
  min-width: 110px;
  align-self: stretch;
  border-radius: 0 18px 18px 0 !important;
  border: none !important;
  margin: 0;
  font-size: 0;
  min-height: unset;
  box-shadow: none;
}

.clean-hero .cab365-search-card .cab365-search-bar .qw-submit::after {
  content: "Search";
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

/* ---- Tablet (≤900px): stack to column ---- */
@media (max-width: 900px) {
  .clean-hero .cab365-search-card .cab365-search-bar {
    flex-direction: column;
    border-radius: 16px;
    overflow: visible;
  }

  .clean-hero .cab365-search-card .cab365-search-bar .cab365-search-row {
    border-right: none;
    border-bottom: 1.5px solid #e8edf5;
    padding: 14px 16px;
  }

  .clean-hero .cab365-search-card .cab365-search-bar input:not([type="hidden"]):not([type="checkbox"]),
  .clean-hero .cab365-search-card .cab365-search-bar select,
  .clean-hero .cab365-search-card .cab365-search-bar .qw-trigger {
    min-height: 42px;
    border: 1px solid #d8e1ef !important;
    border-radius: 12px !important;
    padding: 0 14px;
    background: #fff;
  }

  .clean-hero .cab365-search-card .cab365-search-bar .qw-submit {
    flex: 0 0 auto;
    width: 100%;
    border-radius: 14px !important;
    min-height: 54px;
    margin: 4px 0 0;
  }
}

/* Homepage hero only: don't force 100vh — let reviews sit directly below.
   Landing pages (.landing-clean-hero) keep min-height: 100vh untouched. */
.home-hero.clean-hero {
  min-height: auto;
  padding-bottom: 36px;
}

/* ---- Mobile (≤640px) ---- */
@media (max-width: 640px) {
  /* Outer containers: fit entirely within viewport */
  .clean-hero {
    padding-left: 10px;
    padding-right: 10px;
  }

  .clean-hero .hero-center {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .clean-hero .hero-search-card {
    width: 100%;
    max-width: 100%;
  }

  /* Card: full width, tighter padding */
  .clean-hero .hero-search-card .cab365-search-card {
    padding: 12px;
    width: 100%;
  }

  /* All inner containers: honour box model and never overflow */
  .clean-hero .cab365-search-card,
  .clean-hero .quote-widget-shell,
  .clean-hero .cab365-search-bar,
  .clean-hero .cab365-search-row,
  .clean-hero .cab365-search-row input,
  .clean-hero .cab365-search-row select,
  .clean-hero .cab365-search-row .qw-trigger,
  .clean-hero .cab365-search-row .qw-counter,
  .clean-hero .cab365-search-row .qw-counter input,
  .clean-hero .cab365-search-row .qw-counter button {
    box-sizing: border-box;
    max-width: 100%;
  }

  /* Passenger counter row: prevent horizontal overflow */
  .clean-hero .cab365-search-row--passengers .qw-counter {
    width: 100%;
    min-width: 0;
  }

  .clean-hero .cab365-search-row--passengers .qw-counter input {
    min-width: 0;
  }

  /* Bar: tighter corner radius on small screens */
  .clean-hero .cab365-search-card .cab365-search-bar {
    border-radius: 14px;
  }

  .clean-hero .cab365-search-card .cab365-search-bar .cab365-search-row {
    padding: 12px 14px;
  }

  .clean-hero .cab365-search-card .cab365-search-bar .qw-submit {
    min-height: 50px;
    font-size: 0;
    border-radius: 12px !important;
  }

  .clean-hero .cab365-search-card .cab365-search-bar .qw-submit::after {
    font-size: 15px;
  }
}