.bkb-stickyWrapper {
  position: sticky;
  top: 16px; /* Stick near the top of the viewport when scrolling */
  z-index: 100;
  display: flex;
  justify-content: center;
  margin-top: -50px; /* Overlap the hero section */
  margin-bottom: -40px; /* Pull the next section up to prevent empty space */
  padding: 0 16px;
  transition: top 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.bkb-bookingBar {
  background: white;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  padding: 8px 8px 8px 32px;
  gap: 24px;
  width: 100%;
  max-width: 1000px;
  border: 1px solid #eaeaea;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(0);
}

.bkb-large {
  max-width: 1250px;
  padding: 12px 12px 12px 40px;
  box-shadow: var(--shadow-high);
  transform: translateY(0);
}

.bkb-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.bkb-sectionWithDivider {
  border-left: 1px dashed #ccc;
  padding-left: 24px;
}

.bkb-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.bkb-icon {
  color: var(--color-primary, #f62440);
}

.bkb-labelText {
  color: #888;
}

.bkb-value {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: font-size 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.bkb-large .bkb-value {
  font-size: 22px;
}

.bkb-button {
  background: #1c1c1c;
  color: white;
  border: none;
  border-radius: 999px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.2s ease,
    padding 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    font-size 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
}

.bkb-large .bkb-button {
  padding: 20px 40px;
  font-size: 18px;
}

.bkb-button:hover {
  background: var(--color-primary, #f62440);
  transform: scale(1.02);
}

.bkb-calendarDropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 16px;
  background: white;
  border-radius: var(--radius-card);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  overflow: hidden;
  border: 1px solid #eaeaea;
  cursor: default;
}

@media (max-width: 768px) {
  .bkb-stickyWrapper {
    position: sticky;
    top: 12px;
    margin-top: -30px;
    margin-bottom: -20px;
    transition: top 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .bkb-bookingBar {
    flex-direction: column;
    border-radius: 24px;
    padding: 24px;
    gap: 16px;
    align-items: stretch;
    position: relative;
  }

  .bkb-mobileCollapsed {
    padding: 4px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .bkb-mobileCollapsed .bkb-section {
    display: none !important;
  }

  .bkb-sectionWithDivider {
    border-left: none;
    border-top: 1px dashed #ccc;
    padding-left: 0;
    padding-top: 16px;
  }

  .bkb-button {
    justify-content: center;
    margin-top: 8px;
    width: 100%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }

  .bkb-mobileCollapsed .bkb-button {
    margin-top: 0;
    padding: 14px 28px;
    background: #1c1c1c;
    border: 2px solid rgba(255, 255, 255, 0.15);
  }
}
