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

.discount-card {
  background-image: url('https://cdn.salla.sa/form-builder/JrEOGBBq4gT8GimLcW0fo7daoB59skMr5sOfzxZW.png');
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  width: 90%;
  max-width: 350px;
  height: 400px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: fadeIn 0.4s ease-in-out;
}

.overlay-content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  color: white;
  text-align: center;
  font-family: 'Tajawal', sans-serif;
}

#copy-discount {
  background-color: #7B554C;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}

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

.testimonials-content .testimonial-pic {
    border-radius: 50%;
    overflow: hidden;
}