@import url('https://fonts.googleapis.com/css2?family=Tajawal&display=swap');

body {
    font-family: 'Tajawal', sans-serif !important;
}

@media (max-width: 480px) {
   body {
       font-family: 'Tajawal', sans-serif !important;
   }
}


.brand-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Tajawal', sans-serif;
  direction: rtl;
  font-size: 14px;
  color: #000;

  width: fit-content;
  max-width: 90vw;
  box-sizing: border-box;

  margin: 20px auto;
  overflow-wrap: break-word;
  white-space: nowrap;
}

.brand-box .brand-logo {
  width: 50px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-box .brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-box .authentic {
  font-weight: bold;
  color: #2ecc71;
  margin-bottom: 4px;
  white-space: nowrap;
}

.brand-box .brand-link {
  color: #000;
  white-space: nowrap;
}

.brand-box .brand-link a {
  color: #000;
  text-decoration: underline;
  margin-right: 4px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .brand-box {
    width: 95vw;
    max-width: none;
    padding: 10px 16px;
    overflow-x: visible;
    margin: 20px auto;
    white-space: normal; 
  }

  .brand-box .brand-link {
    white-space: normal;
  }
}


.whatsapp-float {
  position: fixed;
  bottom: 80px;
  left: 20px; 
  background: #25d366;
  color: white;
  padding: 10px 14px;
  border-radius: 30px;
  font-size: 14px;
  z-index: 9999;
  text-decoration: none;
  right: auto; 
}

#whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px; 
  right: auto; 
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: background-color 0.3s ease;
}

#whatsapp-button:hover {
  background-color: #1ebe57;
}