.floating-button-link {
  text-decoration: none;
  display: inline-block;
}

.floating-book-now-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #D38789;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  opacity: 0; /* Start hidden */
  transform: translateY(20px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  font-size: 16px;
}

.floating-book-now-button.show {
  opacity: 1;
  transform: translateY(0);
}

.floating-book-now-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  background-color: #c87476;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .floating-book-now-button {
    font-size: 14px;
    padding: 8px 16px;
    bottom: 15px;
    right: 15px;
    opacity: 0; /* Explicitly set opacity to 0 for mobile too */
  }
  
  .floating-book-now-button.show {
    opacity: 1; /* Make sure the show class works on mobile */
  }
}