/* ===================== PROMOTION DETAIL PAGE ===================== */

/* --- Hero Banner --- */
.promo-detail-hero {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  margin-top: 0;
}

.promo-detail-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.promo-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
}

.promo-detail-hero-content {
  position: relative;
  z-index: 2;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 380px;
}

/* Badge */
.promo-detail-badge {
  display: inline-block;
  background: rgba(90, 127, 140, 0.6);
  color: #B5E4EC;
  border: 1px solid rgba(181, 228, 236, 0.2);
  padding: 10px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  margin-bottom: 20px;
}

/* Script title */
.promo-detail-fancy-title {
  font-family: 'Great Vibes', cursive;
  font-size: 64px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.1;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
}

/* Deal text */
.promo-detail-deal {
  font-size: 22px;
  font-weight: 700;
  color: #F0C060;
  letter-spacing: 2px;
  margin-bottom: 0;
}

/* View All button */
.promo-detail-viewall {
  display: inline-block;
  background: rgba(165, 101, 49, 0.8);
  color: #fff;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  align-self: center;
  margin-top: 20px;
  border: 1px solid rgb(255, 255, 255);
}

.promo-detail-viewall:hover {
  background: rgba(189, 128, 79, 0.8);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* --- Body Section --- */
.promo-detail-body {
  padding: 40px 0 60px;
}

/* Offer Row */
.promo-offer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 30px;
}

.promo-offer-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.promo-offer-validity {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.promo-offer-validity i {
  margin-right: 6px;
}

.promo-offer-badge {
  display: inline-block;
  background: #5A7F8C;
  color: #fff;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

/* About Business */
.promo-about {
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 35px;
}

.promo-about-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.promo-about-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0;
}

/* Contact Card */
.promo-contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  max-width: 440px;
}

.promo-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.promo-contact-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10%;
  background: rgba(93, 199, 237, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.promo-contact-icon i {
  font-size: 18px;
  color: #7ECBD3;
}

.promo-contact-item p {
  margin: 0;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}

.promo-contact-link {
  font-size: 15px;
  color: #7ECBD3;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.promo-contact-link:hover {
  color: #a3e0e8;
}

.promo-status-open {
  color: #4CAF50;
  font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .promo-detail-hero {
    min-height: 300px;
    margin-top: 0;
  }

  .promo-detail-hero-content {
    min-height: 300px;
    padding: 30px 20px;
  }

  .promo-detail-fancy-title {
    font-size: 42px;
  }

  .promo-detail-deal {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .promo-detail-badge {
    font-size: 13px;
    padding: 8px 20px;
  }

  .promo-offer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-contact-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .promo-detail-hero {
    min-height: 260px;
  }

  .promo-detail-hero-content {
    min-height: 260px;
    padding: 20px 16px;
  }

  .promo-detail-fancy-title {
    font-size: 34px;
  }

  .promo-detail-deal {
    font-size: 14px;
  }

  .promo-detail-viewall {
    padding: 10px 24px;
    font-size: 14px;
  }

  .promo-contact-card {
    padding: 20px;
  }
}