/* Cookie Consent Component ONLY */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100px;
  width: calc(100% - 40px);
  background: #222;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  font-family: Arial, sans-serif;
}

.cookie-banner p {
  margin-bottom: 15px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-buttons button {
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

#accept-cookies {
  background-color: #4caf50;
  color: #fff;
}

#reject-cookies {
  background-color: #f44336;
  color: #fff;
}

.hidden {
  display: none;
}

.ec-contact-card {
  height: auto;
  margin-top: -27px;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  color: white;
}

/* Shared Floating Button Styles */
.floating-btn {
  position: fixed;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  color: white;
}

/* WhatsApp Button */
.whatsapp-btn {
  bottom: 20px;
  background-color: #25d366;
}

/* Book Appointment Button */
.book-btn {
  bottom: 90px;
  /* stacked above WhatsApp */
  background-color: #0066ff;
}

.book-btn {
  bottom: 100px;
}

.whatsapp-btn {
  bottom: 20px;
}

.floating-btn:active {
  transform: scale(0.95);
}

.floating-btn:hover {
  transform: scale(1.08);
}

.floating-btn::after {
  content: attr(aria-label);
  position: absolute;
  right: 70px;
  background: #000;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.floating-btn:hover::after {
  opacity: 1;
}


