/* ── Offer Modal ───────────────────────────────────────── */
.offer-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.offer-modal.active {
  display: flex;
}
.offer-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,18,42,.75);
  backdrop-filter: blur(6px);
  animation: modalFadeIn .3s ease;
}
.offer-modal__content {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl,20px);
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(7,18,42,.35);
  animation: modalSlideIn .4s cubic-bezier(.16,1,.3,1);
}
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalSlideIn { from { opacity: 0; transform: translateY(24px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

.offer-modal__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
@media (max-width: 480px) {
  .offer-modal__image { height: 160px; }
}

.offer-modal__body {
  padding: 32px 28px;
  text-align: center;
}
@media (max-width: 480px) {
  .offer-modal__body { padding: 24px 20px; }
}

.offer-modal__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--primary) 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.offer-modal__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--bg-3);
  line-height: 1.2;
  margin: 0 0 12px;
}
@media (max-width: 480px) {
  .offer-modal__title { font-size: 1.35rem; }
}

.offer-modal__text {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 24px;
}

.offer-modal__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #C8942A 0%, #D9A83A 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.offer-modal__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,148,42,.4);
  color: #fff;
}

.offer-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.92);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 2;
}
.offer-modal__close:hover {
  background: #fff;
  transform: scale(1.1);
}
.offer-modal__close svg {
  width: 18px;
  height: 18px;
  color: var(--bg-3);
}

.offer-modal__footer {
  padding: 0 28px 20px;
  text-align: center;
}
.offer-modal__note {
  font-size: 12px;
  color: var(--muted-2);
}