body {
    font-family: 'Inter', sans-serif;
}

#choose-dates {
    font-size: 1.2em;
    margin-bottom: 1vh;
}

.myDate {
    width: 90%;
    border: 1px solid #eaeaea;
    padding: 5vw;
    border-radius: 5px;
    margin-bottom: 1vh;
}

/*****************************
     BROWSE RENTALS PAGE
*****************************/
.rent-car-listing-view-more {
    display: block;
    width: 100%;
    padding: 5px;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    font-size: 0.9em;
    margin-bottom: 1vh;
}

.rent-car-listing-wa-contact {
    display: block;
    width: 100%;
    padding: 5px;
    background-color: #25D366;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    font-size: 0.9em;
}

.pagination-holder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 300px; /* adjust as needed */
  margin: 0 auto; /* center the whole pagination bar */
  padding: 10px;
  font-size: 16px;
  position: relative;
}

.pagination-holder-left-arrow,
.pagination-holder-right-arrow {
  cursor: pointer;
  flex: 0 0 auto;
}

.pagination-holder > div:nth-child(2) {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-weight: 500;
}

.slider-thumb {
  width: 100%;
  height: 225px; /* or responsive like 30vh */
  overflow: hidden;
  position: relative;
}

.slider-thumb .image {
  width: 100%;
  height: 100%;
}

.slider-thumb .image a {
  display: block;
  width: 100%;
  height: 100%;
}

.slider-thumb .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slider-thumb,
.slider-thumb .slick-list,
.slider-thumb .slick-track,
.slider-thumb .slick-slide {
  height: 225px !important; /* Force your height */
}

.slider-thumb .image,
.slider-thumb .image a,
.slider-thumb .image img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block;
}

#calendar-top-selection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  background-color: #000;
  width: 95%;
  color: #f1f1f1;
  color: #f1f1f1; /* Softer than pure white */
  padding: 10px 14px; /* was likely 16–20px before */
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

#calendar-top-selection div:first-child {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
}

#calendar-top-selection-primary-text {
    font-size: 1.1em;
}

#calendar-top-selection-dates {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 2px;
}

#calendar-left {
  width: 80%;
}

#calendar-right {
  width: 18%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #D4AF37; /* gold pencil icon */
  font-size: 1.30rem;
}

#calendar-right i {
    background: linear-gradient(45deg, #d4af37, #ffc800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* customer calendar UI */
#calendar-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.calendar-header button {
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.calendar-body label {
  font-size: 0.95rem;
  margin-bottom: 6px;
  display: block;
  color: #ddd;
}

.calendar-body input[type="date"] {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  border-radius: 8px;
  outline: none;
}

.calendar-body input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1); /* makes the date picker icon white */
}

.calendar-body button {
  background-color: #d4af37;
  border: none;
  padding: 14px;
  width: 100%;
  font-size: 1rem;
  color: #000;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.calendar-body button:hover {
  background-color: #e0be5b;
}

#calendar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
}

/* SEARCH BAR */
.floating-search-wrapper {
  position: sticky;
  top: 12px;
  z-index: 1000;
  background: #111;
  width: 95%;
  padding: 10px 12px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  box-sizing: border-box;
  margin-top: 1vh;
}

.floating-search-bar {
  flex-grow: 1;
  padding: 10px 34px 10px 12px;
  font-size: 0.95rem;
  border-radius: 8px;
  border: 1px solid #333;
  background: #111;
  color: #fff;
  outline: none;
  width: 100%;
}

.clear-floating-search {
  position: absolute;
  right: 18px;
  font-size: 1.2rem;
  color: #aaa;
  cursor: pointer;
  user-select: none;
}

.clear-floating-search:hover {
  color: #fff;
}

@media (min-width: 768px) {
    .myDate {
        width: 90%;
        border: 1px solid #eaeaea;
        padding: 1vw;
        border-radius: 5px;
        margin-bottom: 1vh;
    }

    #homepage-form {
        height: auto;
        padding: 3vw;
    }
}

@media (min-width: 992px) {

}

@media (min-width: 1200px) {

}

.promo-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #FFD700; /* Gold */
    color: #000;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    z-index: 10;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.inner-box {
    position: relative;
}

.info-icon {
    margin-left: 5px;
    font-size: 0.9em;
    cursor: pointer;
}

.promo-tooltip {
    position: absolute;
    top: 35px;
    left: 0;
    background-color: #333;
    color: #fff;
    font-size: 0.75em;
    padding: 8px 12px;
    border-radius: 5px;
    max-width: 200px;
    z-index: 20;
    box-shadow: 0 0 5px rgba(0,0,0,0.4);
}

.promo-tooltip .close-tooltip {
    display: block;
    text-align: right;
    margin-top: 5px;
    cursor: pointer;
    font-size: 0.9em;
    color: #FFD700;
}

.was-price {
    display: inline-block;
    width: fit-content;
    white-space: nowrap;
    text-decoration: line-through;
}

#per-day-disclaimer {
    font-size: 0.6em;
    line-height: auto;
    display: inline;
    font-weight: 100;
}

.from-price {
    font-weight: normal;
    margin-bottom: 8px;
    font-size: 10px;
    color: #777;
    line-height: 1.2;
}

.car-card-info {
    float: left;
    width: 59%;
}

.car-card-action {
    float: left;
    width: 40%;
}

/* Bubble row */
.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin:6px 0 4px;  /* tuck neatly under the title */
}

/* Default pill */
.pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 10px;
  border-radius:999px;               /* pill shape */
  background:#fff;                   /* light, premium */
  border:1px solid #e5e5e5;          /* thin outline like Booking.com */
  color:#111;
  font-size:12px;
  font-weight:500;
  white-space:nowrap;                /* keeps each pill on one line */
}

/* Icons inside pills */
.pill i{
  font-size:12px;
  color:#111;
}

/* ACE USP highlight (subtle gold accent) */
.pill--gold{
  border-color:#D4AF37;
}
.pill--gold i{
  color:#D4AF37;
}

/* Optional: tighten on very small screens */
@media (max-width: 360px){
  .pill{ font-size:11px; padding:3px 8px; gap:4px; }
  .pill i{ font-size:11px; }
}

/* very subtle separator */
.soft-divider{
  height:1px;
  background: linear-gradient(to right, transparent, #e9e9e9, transparent);
  margin:8px 0;
}

.meta-inline{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:#222;
  margin:2px 0 8px;
  flex-wrap:nowrap;           /* keep on one line when possible */
}

.trust-inline{
  display:inline-flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;
}

.trust-icon{
  color:#D4AF37;              /* subtle gold accent like the mockup */
  font-size:13px;
}

.dot{ color:#999; }
.km{ color:#444; }
@media (max-width:360px){
  .meta-inline{ flex-wrap:wrap; row-gap:4px; }
}
