





.booking-banner {
  position: relative;
  padding: 1.25rem 1.4rem;
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
  background: rgba(70, 70, 70, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.booking-banner::before {
  content: "";
  position: absolute;
  inset: 0;
 
  filter: blur(2px);
  transform: scale(1.04);
  z-index: -2;
}

.booking-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(64,49,51,0.35) 0%, rgba(79,89,114,0.18) 50%, rgba(48,125,88,0.18) 100%);
  z-index: -1;
}

.booking-banner__item {
  gap: 1rem;
}

.booking-banner__day {
  font-size: 4rem;
  line-height: 0.9;
  font-weight: 700;
  color: #fff;

}

.booking-banner__meta {
  font-size: 0.95rem;
  line-height: 1.15;
  font-weight: 600;
  text-transform: none;
}

.booking-banner__label {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.booking-banner__arrow {
  font-size: 4rem;
  line-height: 1;
  font-weight: 300;
  color: #fff;
      padding-left: 0.3em;
}

.booking-banner__btn {
  background: #fff;
  color: #0d4f86 !important;
  border: 0;
  border-radius: 10px;
  padding: 0.95rem 1.7rem;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.booking-banner__btn:hover,
.booking-banner__btn:focus {
  background: #f4f4f4;
  color: #0d4f86;
}

@media (max-width: 990px) {
  .booking-banner {
    padding: 1.2rem;
  }

  .booking-banner__day {
    font-size: 3rem;
    min-width: 64px;
  }

  .booking-banner__label {
    font-size: 1rem;
  }

  .booking-banner__meta {
    font-size: 0.9rem;
  }

  .booking-banner__btn {
    width: 100%;
    margin-top: 0.5rem;
  }
  .carousel-item img {
     filter: brightness(0.5);
  }
}
.booking-banner input {
  display: none;
}

.booking-banner__item {
  cursor: pointer;
}