/* ============================================================
   SALE — sale.css
   ============================================================ */

.sale-page {
  padding: var(--sp-8) 0;
}

/* ── Hero ─────────────────────────────────────────────────── */

.sale-hero {
  margin-bottom: var(--sp-10);
}

.sale-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(230, 57, 70, 0.1);
  color: var(--clr-accent);
  font-size: var(--fz-sm);
  font-weight: 600;
  padding: var(--sp-1) var(--sp-3);
  border-radius: 100px;
  margin-bottom: var(--sp-4);
}

.sale-hero__title {
  font-size: var(--fz-4xl);
  font-weight: 700;
  color: var(--clr-text-primary);
  margin-bottom: var(--sp-3);
}

.sale-hero__desc {
  font-size: var(--fz-lg);
  color: var(--clr-text-secondary);
  max-width: 560px;
}

/* ── Offers grid ──────────────────────────────────────────── */

.sale-offers {
  margin-bottom: var(--sp-12);
}

.sale-offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-5);
}

/* ── Offer card ───────────────────────────────────────────── */

.sale-offer-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-6);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
}

.sale-offer-card--accent {
  border-color: var(--clr-accent);
  background: rgba(230, 57, 70, 0.04);
}

.sale-offer-card__tag {
  display: inline-block;
  font-size: var(--fz-xs);
  font-weight: 600;
  color: var(--clr-accent);
  background: rgba(230, 57, 70, 0.1);
  padding: 2px var(--sp-2);
  border-radius: 100px;
  width: fit-content;
}

.sale-offer-card__title {
  font-size: var(--fz-lg);
  font-weight: 600;
  color: var(--clr-text-primary);
}

.sale-offer-card__desc {
  font-size: var(--fz-sm);
  color: var(--clr-text-secondary);
  line-height: 1.6;
  flex: 1;
}

.sale-offer-card__cta {
  margin-top: auto;
  align-self: flex-start;
}

/* ── Contact section ──────────────────────────────────────── */

.sale-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-10) var(--sp-8);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  text-align: center;
}

.sale-contact__title {
  font-size: var(--fz-2xl);
  font-weight: 700;
  color: var(--clr-text-primary);
}

.sale-contact__desc {
  font-size: var(--fz-base);
  color: var(--clr-text-secondary);
  max-width: 480px;
}

.sale-contact__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 640px) {
  .sale-hero__title {
    font-size: var(--fz-3xl);
  }

  .sale-offers-grid {
    grid-template-columns: 1fr;
  }

  .sale-contact {
    padding: var(--sp-8) var(--sp-4);
  }

  .sale-contact__buttons {
    flex-direction: column;
    width: 100%;
  }

  .sale-contact__buttons .btn {
    width: 100%;
    justify-content: center;
  }
}
