/* Horizontal Scroll Sections - Amenities on mobile */
.amenities-grid {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.amenities-grid::-webkit-scrollbar {
  height: 4px;
}

.amenities-grid::-webkit-scrollbar-track {
  background: transparent;
}

.amenities-grid::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* Scroll hint for amenities */
.amenities-scroll-hint {
  display: none;
  text-align: center;
  color: var(--grey);
  font-size: 0.75rem;
  margin-top: 0.5rem;
  animation: pulse-hint 2s ease-in-out infinite;
}

@keyframes pulse-hint {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@media (max-width: 600px) {
  .amenities-scroll-hint {
    display: block;
  }
}

/* Room Cards - Fix WhatsApp Button */
.room-card {
  position: relative;
}

.room-card-footer {
  flex-wrap: wrap;
  gap: 0.5rem;
}

.room-card-actions {
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn-whatsapp {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Floating WhatsApp - ensure it doesn't overlap content */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .room-card-actions {
    width: 100%;
  }
  
  .btn-book,
  .btn-whatsapp {
    flex: 1;
    text-align: center;
    justify-content: center;
    min-width: 0;
  }
}
