.offer-root {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
}
.offer-root.is-open {
  display: flex;
}
.offer-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(28, 28, 26, 0.4);
  backdrop-filter: blur(2px);
}
.offer-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 24px));
  max-height: min(92dvh, 860px);
  overflow: auto;
  background: var(--ivory);
  display: grid;
  box-shadow: 0 24px 80px rgba(28, 28, 26, 0.18);
}
@media (min-width: 800px) {
  .offer-root {
    align-items: center;
  }
  .offer-dialog {
    grid-template-columns: 1fr 1fr;
  }
}
.offer-media {
  display: none;
  min-height: 220px;
  position: relative;
}
@media (min-width: 800px) {
  .offer-media {
    display: block;
  }
}
.offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-body {
  padding: 1.5rem 1.5rem 1.75rem;
  position: relative;
}
.offer-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  font-size: 1.6rem;
}
.offer-dialog h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  margin: 0.8rem 0 0.6rem;
}
.offer-dialog form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
