.floating-buttons {
  position: fixed;
  bottom: 40%;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}



.floating-pop-up {
  position: fixed;
  bottom: 1%;
  right: 5px;
  width: 250px;
  height: 250px;
  
}

.floating-btn-call {
  position: fixed;
  bottom: 50%;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-btn-whatsapp {
  background-color: #25d366; /* WhatsApp green */
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.floating-btn-whatsapp:hover {
  transform: scale(1.1);
}

.floating-btn-call:hover {
  transform: scale(1.1);
}










/* ==========================================================
   popup.css — one-time image popup
   ========================================================== */

/* Hidden until JS decides to show it. Prevents a flash on load. */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(12, 12, 14, 0.72);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.popup-overlay.is-visible {
  display: flex;
  opacity: 1;
}

/* Stops the page behind from scrolling while the popup is open */
body.popup-open {
  overflow: hidden;
}

.popup-box {
  position: relative;
  max-width: min(560px, 100%);
  max-height: 88vh;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
}

.popup-overlay.is-visible .popup-box {
  transform: translateY(0) scale(1);
}

.popup-box img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: contain;
}

/* Close button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  transition: background 0.2s ease;
}

.popup-close:hover,
.popup-close:focus-visible {
  background: rgba(0, 0, 0, 0.85);
}

.popup-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .popup-overlay {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .popup-overlay,
  .popup-box {
    transition: none;
  }
}