/* ============================================
   OVERLAY
   ============================================ */
.promo-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.promo-popup-overlay.is-visible {
  display: flex;
}

/* ============================================
   POPUP WRAPPER
   ============================================ */
.promo-popup {
  position: relative;
  background: linear-gradient(63.22deg, #EA8910 -6.83%, #FCD936 103.3%);
  border-radius: 24px;
  padding: 44px 36px 32px;
  max-width: 1100px;
  width: 100%;
  text-align: center;
  color: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

/* ============================================
   CLOSE BUTTON
   ============================================ */
.promo-popup__close {
  position: absolute;
  top: 5px;
  right: 9px;
  background: none;
  border: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  opacity: 0.75;
  transition: opacity 0.2s;
  z-index: 2;
}
.promo-popup__close:hover {
  opacity: 1;
}

/* ============================================
   SPARKLES
   ============================================ */
.sparkle {
  position: absolute;
  color: #fff;
  opacity: 0.65;
  pointer-events: none;
}
.s1 { top: 55px;  left: 75px;  font-size: 3.8rem; }
.s2 { top: 36px;  left: 58px;  font-size: 1.5rem; }
.s3 { top: 110px;  right: 56px; font-size: 3.6rem; }
.s4 { top: 65px;  right: 30px; font-size: 1.85rem; }

/* ============================================
   TITLE & SUBTITLE
   ============================================ */
.promo-popup__title {
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 8px;
  line-height: 1.1;
  color: #FFFFFF;
}
.promo-popup__subtitle {
  font-size: 20px;
  margin: 0 0 28px;
  opacity: 0.92;
  color: #FFFFFF;
}

/* ============================================
   CARDS GRID
   ============================================ */
.promo-popup__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.promo-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  color: #333;
  text-align: left;
}

/* Card Header */
.promo-card__header {
  background: #9569D0;
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  padding: 12px 10px;
}

/* Card Body */
.promo-card__body {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 25px 14px;
}
.promo-card__icon {
  width: 60px;
  height: auto;
  flex-shrink: 0;
  margin-left: 25px;
}
.promo-card__offer {
  display: flex;
  flex-direction: column;
  margin-left: 40px;
}
.promo-card__highlight {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.promo-card__discount {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  line-height: 1.05;
  text-transform: uppercase;
}

/* Card Description */
.promo-card__desc {
  padding: 0 14px 14px;
  font-size: 15px;
  color: #333;
  line-height: 1.4;
  margin: 0;
}
.promo-card__check {
  color: #9569D0;
  font-weight: 700;
  margin-right: 5px;
}

/* ============================================
   FOOTER
   ============================================ */
.promo-popup__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}
.promo-popup__footer p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.95;
  color: #fff;
}
.promo-popup__btn {
  display: inline-block;
  background: #9569D0;
  color: #fff!important;
  padding: 20px 45px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.95rem;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.promo-popup__btn:hover {
  background: #5e3a80;
  transform: translateY(-1px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 700px) {
  .promo-popup-overlay {
    align-items: flex-start;   
    padding: 16px;
  }

  .promo-popup {
    padding: 36px 20px 24px;
    max-height: 90vh;              
    overflow-y: auto;              
    margin: auto;          
  }

  .promo-popup__title {
    font-size: 2.6rem;
  }

  .promo-popup__cards {
    grid-template-columns: 1fr;
  }

  .promo-popup__footer {
    flex-direction: column;
    text-align: center;
  }

  .promo-popup__footer p {
    text-align: center;
	font-size: 11px;
  }
}