/* Add custom CSS styles b/* Popup Container */
#roveixPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  direction: rtl;
}

/* Popup Box */
#roveixPopup .popup-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}

#roveixPopup .popup-box p {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}

#roveixPopup .popup-box a {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
}

#roveixPopup .popup-box .close {
  margin-top: 15px;
  display: block;
  color: #666;
  font-size: 13px;
  cursor: pointer;
}

/* WhatsApp Floating Icon */
#roveixWhatsIcon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
  display: none;
}

#roveixWhatsIcon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 480px) {
  #roveixPopup .popup-box {
    max-width: 85%;
    padding: 15px;
    border-radius: 12px;
  }

  #roveixPopup .popup-box p {
    font-size: 14px;
  }

  #roveixPopup .popup-box a {
    font-size: 14px;
    padding: 8px 16px;
  }

  #roveixWhatsIcon {
    width: 45px;
    height: 45px;
    bottom: 15px;
    left: 15px;
    background-color: fed; /* ← هذا هو اللون الأخضر الحالي (لون واتساب) */
  }
}