/* ==========================================================================
   CONTACT POPUP WIDGET (moved from inline styles)
   ========================================================================== */

.custom-contact-popup-modal {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 240px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.2s ease-in-out;
  z-index: 999999;
}

.custom-contact-popup-modal.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.contact-popup-header {
  padding: 12px 14px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.contact-popup-header .header-title {
  font-weight: 700;
  font-size: 14px;
  color: #1a202c;
}

.contact-popup-header .header-subtitle {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

.contact-popup-body {
  padding: 12px 14px;
  display: grid;
  gap: 10px;
}

.popupLinkBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: opacity 0.2s ease;
}

.popupLinkBtn:hover {
  opacity: 0.9;
}

.popupLinkBtn.whatsapp-btn {
  background-color: #25d366;
}

.popupLinkBtn.messenger-btn {
  background-color: #0084ff;
}
