/* FRAGRANCIA — deal.css */

/* ══════════════════════════════════════════════════════════
   DEAL HERO
══════════════════════════════════════════════════════════ */
.deal-hero {
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark) 100%);
  border-bottom: 1px solid rgba(201,168,76,.12);
  overflow: hidden;
}
/* decorative radial glow */
.deal-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.07), transparent 65%);
  pointer-events: none;
}
.deal-hero::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.05), transparent 65%);
  pointer-events: none;
}
.deal-hero-overlay {
  position: relative;
  z-index: 2;
  padding: 80px 0 70px;
}
.deal-hero-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
}
.deal-hero-desc {
  font-family: var(--font-sub);
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  max-width: 460px;
}
.deal-hero-timer-wrap {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--fra-radius);
  padding: 32px 36px;
  display: inline-block;
}

/* Inherit .deal-countdown, .deal-timer-unit etc. from home.css
   (loaded via the style.css global include chain) */

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media(max-width:991.98px) {
  .deal-hero-overlay { padding: 60px 0 50px; }
  .deal-hero-title { font-size: 2.4rem; }
  .deal-hero-timer-wrap { padding: 24px 28px; }
}
@media(max-width:767.98px) {
  .deal-hero-title { font-size: 2rem; }
  .deal-hero-timer-wrap { padding: 20px 22px; width: 100%; text-align: center; }
  .deal-hero-desc { max-width: 100%; }
}
@media(max-width:575.98px) {
  .deal-hero-overlay { padding: 50px 0 40px; }
  .deal-hero-title { font-size: 1.7rem; }
}
