/**
 * Sticky Floating Booking Button
 * Fixed at bottom right, always visible
 */

.h4-sticky-book {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.h4-sticky-book-btn {
  background: #E3967E;
  color: #fff;
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(227, 150, 126, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.h4-sticky-book-btn:hover {
  background: #D4856D;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(227, 150, 126, 0.5);
}

.h4-sticky-book-btn:active {
  transform: translateY(0);
}

.h4-sticky-book-icon {
  font-size: 18px;
  line-height: 1;
}

/* Hide on booking page itself */
.page-id-89 .h4-sticky-book {
  display: none;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .h4-sticky-book {
    bottom: 20px;
    right: 20px;
  }
  
  .h4-sticky-book-btn {
    padding: 14px 24px;
    font-size: 11px;
  }
  
  .h4-sticky-book-icon {
    font-size: 16px;
  }
}

/* Very small screens - make it smaller */
@media (max-width: 480px) {
  .h4-sticky-book {
    bottom: 15px;
    right: 15px;
  }
  
  .h4-sticky-book-btn {
    padding: 12px 20px;
    font-size: 10px;
  }
}
