/* Sticky Reservation & Quick-Action Bar */
.hotel411-sticky-bar {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--wp--preset--color--hotel-navy, #0A192F);
  color: var(--wp--preset--color--hotel-cream, #F8F6F0);
  border-bottom: 2px solid var(--wp--preset--color--hotel-gold, #D4AF37);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.hotel411-sticky-bar .bar-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.hotel411-sticky-bar .book-btn {
  background-color: var(--wp--preset--color--hotel-gold, #D4AF37);
  color: #0A192F;
  text-decoration: none;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}

.hotel411-sticky-bar .book-btn:hover {
  opacity: 0.9;
}

@media (max-width: 600px) {
  .hotel411-sticky-bar {
    flex-direction: column;
    gap: 8px;
    padding: 10px 16px;
    text-align: center;
  }
}