/* ===================== PROMOTIONS PAGE ===================== */

/* --- Section Layout --- */
.promotions-section {
  padding: 30px 0 60px;
}

.promotions-header {
  margin-bottom: 50px;
}

.promotions-title {
  font-family: 'Poppins', sans-serif;
  font-size: 33px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.promotions-subtitle {
  font-size: 16px;
  color: #fff;
  max-width: 550px;
  margin: 0 auto;
}

/* --- Promotions Grid --- */
.promotions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* --- Promo Card --- */
.promo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 220px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

/* --- Overlay --- */
.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

.promo-card:hover .promo-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 100%);
}

.overlay-light {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.05) 100%);
}

/* --- Badge --- */
.promo-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  backdrop-filter: blur(8px);
}

.badge-ad {
  background: rgba(100, 60, 30, 0.6);
  color: #F8C486;
  border: 1px solid rgba(248, 196, 134, 0.2);
}

.badge-sponsored {
  background: rgba(90, 127, 140, 0.5);
  color: #B5E4EC;
  border: 1px solid rgba(181, 228, 236, 0.2);
}

/* --- Content --- */
.promo-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 28px;
  z-index: 2;
}

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

.promo-fancy-dark {
  color: #3a2a1a;
  text-shadow: none;
}

/* Bold block title */
.promo-bold-title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Accent colored title */
.promo-accent-title {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #F0C060;
  line-height: 1.1;
  margin-bottom: 8px;
}

/* Deal text */
.promo-deal {
  font-size: 15px;
  font-weight: 600;
  color: #F0C060;
  letter-spacing: 1px;
  margin: 0;
}

/* Save percentage */
.promo-save {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.promo-save span {
  font-size: 32px;
  font-weight: 800;
  color: #F0C060;
}

/* Meta info */
.promo-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 8px;
  margin-top: 4px;
}

/* --- Hover Micro-Interactions --- */
.promo-card .promo-content {
  transition: transform 0.3s ease;
}

.promo-card:hover .promo-content {
  transform: translateY(-5px);
}

.promo-card img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-card:hover img {
  transform: scale(1.05);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .promotions-section {
    padding: 20px 0 40px;
  }

  .promotions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .promotions-title {
    font-size: 30px;
  }

  .promo-card {
    min-height: 200px;
  }

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

  .promo-bold-title {
    font-size: 28px;
  }

  .promo-accent-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .promo-card {
    min-height: 180px;
  }

  .promo-content {
    padding: 20px;
  }

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

  .promo-bold-title {
    font-size: 24px;
  }

  .promo-accent-title {
    font-size: 20px;
  }

  .promo-save span {
    font-size: 26px;
  }
}
