.daily-offer[hidden] {
  display: none;
}

.daily-offer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 16px;
}

.daily-offer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 12, 0.76);
  backdrop-filter: blur(5px);
}

.daily-offer__dialog {
  position: relative;
  width: min(540px, 92vw);
  max-height: calc(100vh - 32px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: linear-gradient(145deg, #111820 0%, #05080c 72%);
  color: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  animation: daily-offer-enter 220ms ease-out both;
}

.daily-offer__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: 700 24px/1 Arial, sans-serif;
  cursor: pointer;
}

.daily-offer__content {
  padding: 44px 40px 36px;
}

.daily-offer__eyebrow {
  margin: 0 52px 12px 0;
  color: #fabe04;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.daily-offer__discount {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
  color: #66c8ff;
}

.daily-offer__discount strong {
  font-size: clamp(4rem, 16vw, 6.5rem);
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.daily-offer__discount span {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
}

.daily-offer__dialog h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.55rem, 5vw, 2.25rem);
  line-height: 1.08;
}

.daily-offer__body,
.daily-offer__terms,
.daily-offer__note {
  color: #d5dde6;
}

.daily-offer__code {
  margin: 20px 0;
  padding: 14px 16px;
  border: 1px dashed rgba(250, 190, 4, 0.65);
  border-radius: 14px;
  background: rgba(250, 190, 4, 0.08);
  color: #fff;
  font-size: 1.05rem;
}

.daily-offer__code strong {
  color: #fabe04;
  letter-spacing: 0.05em;
}

.daily-offer__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0 16px;
}

.daily-offer__action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 2px solid #66c8ff;
  border-radius: 12px;
  background: #66c8ff;
  color: #05080c;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.daily-offer__action--secondary {
  background: transparent;
  color: #fff;
}

.daily-offer__terms,
.daily-offer__note {
  margin: 8px 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
}

.daily-offer__close:hover,
.daily-offer__close:focus-visible,
.daily-offer__action:hover,
.daily-offer__action:focus-visible {
  outline: 3px solid #fabe04;
  outline-offset: 3px;
}

body.daily-offer-open {
  overflow: hidden;
}

@keyframes daily-offer-enter {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 600px) {
  .daily-offer__dialog { width: calc(100vw - 32px); }
  .daily-offer__content { padding: 42px 22px 24px; }
  .daily-offer__actions { grid-template-columns: 1fr; }
  .daily-offer__action { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .daily-offer__dialog { animation: none; }
}
