@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500&display=swap');

body {
  font-family: "Tajawal", sans-serif;
}

#mainButton {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #00BCD4;
  color: #fff;
  font-size: 32px;
  line-height: 60px;
  text-align: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 2147483647 !important;
}

.subButton {
  position: fixed !important;
  right: 30px !important;
  width: 220px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #FDD017;
  color: #333;
  direction: rtl;
  text-align: center;
  border: none;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
  z-index: 2147483647 !important;
}

.subButton:hover {
  background: #f7e27a;
}

/* الأزرار تظهر فوق الزر الرئيسي مباشرة */
#whatsappButton  { bottom: 100px !important; }
#facebookButton  { bottom: 155px !important; }
#instagramButton { bottom: 210px !important; }
#tiktokButton    { bottom: 265px !important; }
#youtubeButton   { bottom: 320px !important; }

/* موبايل */
@media (max-width: 768px) {
  #mainButton {
    right: 20px !important;
    bottom: 20px !important;
    width: 56px;
    height: 56px;
    line-height: 56px;
    font-size: 30px;
  }

  .subButton {
    right: 20px !important;
    width: 180px;
    padding: 10px 12px;
    font-size: 14px;
  }

  #whatsappButton  { bottom: 86px !important; }
  #facebookButton  { bottom: 136px !important; }
  #instagramButton { bottom: 186px !important; }
  #tiktokButton    { bottom: 236px !important; }
  #youtubeButton   { bottom: 286px !important; }
}