
    /* discount css */


/* Overlay background */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none !important;

}

/* Main Popup Box */
.popup-container {
  display: flex;
  width: 90%;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  animation: fadeIn 0.4s ease-in-out;
}

/* Image Side */
.popup-image {
  flex: 1;
  min-height: 350px;
}
.popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Side */
.popup-content {
    flex: 1;
    padding: 35px 30px;
    position: relative;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: rgb(255 255 255 / 89%);
}

/* Close Button */
div#popup-discount .close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 20px;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: initial;
}
div#popup-discount .close-btn:hover {
  background: #f44336;
  color: #fff;
}

/* Heading */
.popup-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-1);
}

/* Paragraphs */
.popup-content p {
  font-size: 16px;
  margin: 8px 0;
}

/* Discount Code Box */
.discount-code {
  background: linear-gradient(135deg, #fceabb 0%, #f8b500 100%);
  color: #000;
  font-weight: 700;
  padding: 12px 24px;
  font-size: 20px;
  border-radius: 10px;
  letter-spacing: 1px;
  margin: 20px 0;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* CTA Button */
.cta-btn {
    background: linear-gradient(135deg, #ffa9b5, #ffa9b6);
    color: var(--color-1);
    padding: 14px 30px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    box-shadow: 0 6px 20px rgba(255, 75, 43, 0.3);
    font-family: Montserrat-Medium;
    letter-spacing: 0.5px;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,75,43,0.4);
}
.popup-content p strong {
    font-size: 18px;
    color: var(--color-1);
}

.popup-content h2 span {
    display: block;
    font-size: 40px;
}
.popup-content h2 span img {
    width: 40px;
    margin: auto;
    margin-bottom: 8px;
}
/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 767px) {
  .popup-container {
    flex-direction: column;
  }
  .popup-content {
    padding: 25px 20px;
  }
  .popup-content h2 {
    font-size: 24px;
  }
  .popup-image{
    display: none;
  }
  .discount-code {
    padding: 10px 24px;
    font-size: 18px;
}
.cta-btn {
    
    padding: 13px 15px;
    font-size: 15px;
}
.popup-content p {

    margin: 5px 0;
}
div#popup-discount .close-btn {
    width: 25px;
    height: 25px;
}

}

