/* Add custom CSS styles below */ 

#wa-angel {
  display: none !important;
}
.salla-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.salla-popup {
  position: relative;
  width: 100%;
  max-width: 430px;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  animation: sallaPopupFadeUp 0.35s ease;
  direction: rtl;
  text-align: center;
}

.salla-popup__close {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #5d4b2f;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease, background 0.2s ease;
}

.salla-popup__close:hover {
  transform: scale(1.05);
  background: #ffffff;
}

.salla-popup__image {
  width: 100%;
  display: block;
  height: auto;
  background: #f8f5ef;
}

.salla-popup__content {
  padding: 22px 20px 24px;
}

.salla-popup__title {
  margin: 0 0 10px;
  color: #93774d;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 800;
}

.salla-popup__text {
  margin: 0 0 18px;
  color: #3d372f;
  font-size: 16px;
  line-height: 1.95;
  font-weight: 500;
}

.salla-popup__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 14px 18px;
  background: #93774d;
  color: #ffffff !important;
  text-decoration: none !important;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.salla-popup__button:hover {
  background: #7e668f;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(147, 119, 77, 0.28);
}

@keyframes sallaPopupFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 480px) {
  .salla-popup {
    max-width: 360px;
    border-radius: 18px;
  }

  .salla-popup__content {
    padding: 18px 16px 20px;
  }

  .salla-popup__title {
    font-size: 24px;
  }

  .salla-popup__text {
    font-size: 15px;
    line-height: 1.85;
  }

  .salla-popup__button {
    min-height: 48px;
    font-size: 15px;
  }
}