/* ReelsXpress /book premium booking app — 1K fixed-viewport UI polish */

:root {
  --rxb-noir: var(--rx-brand-deep);
  --rxb-plum: var(--rx-brand-deep);
  --rxb-ruby: var(--rx-ruby);
  --rxb-ruby-deep: var(--rx-ruby);
  --rxb-gold: var(--rx-gold);
  --rxb-champagne: var(--rx-champagne);
  --rxb-cream: var(--rx-champagne);
  --rxb-white: var(--rx-champagne);
  --rxb-muted: var(--rx-slate);
  --rxb-line: rgb(var(--rx-brand-deep-rgb) / 0.12);
  --rxb-line-strong: rgb(var(--rx-brand-deep-rgb) / 0.18);
  --rxb-heading-font: var(--rx-heading-font, Georgia, "Times New Roman", serif);
  --rxb-body-font: var(
    --rx-body-font,
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif
  );
  --rxb-radius-xs: 0.75rem;
  --rxb-radius-sm: 1rem;
  --rxb-radius-md: 1.35rem;
  --rxb-radius-lg: 1.8rem;
  --rxb-radius-xl: 2.25rem;
  --rxb-pill: 999px;
  --rxb-shadow-soft: 0 0.8rem 2.5rem rgb(var(--rx-brand-deep-rgb) / 0.08);
  --rxb-shadow-card: 0 1.1rem 2.6rem rgb(var(--rx-brand-deep-rgb) / 0.1);
  --rxb-shadow-lift: 0 1.35rem 3.3rem rgb(var(--rx-brand-deep-rgb) / 0.15);
  --rxb-safe-top: env(safe-area-inset-top, 0px);
  --rxb-safe-bottom: env(safe-area-inset-bottom, 0px);
  --rxb-admin-offset: 0px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--rxb-champagne);
}

body.rx-booking-body {
  min-height: calc(100dvh - var(--rxb-admin-offset));
  margin: 0;
  font-family: var(--rxb-body-font);
  color: var(--rxb-noir);
  background:
    radial-gradient(
      circle at 15% 0%,
      rgb(var(--rx-champagne-rgb) / 0.2),
      transparent 22rem
    ),
    radial-gradient(
      circle at 88% 3%,
      rgb(var(--rx-ruby-rgb) / 0.16),
      transparent 24rem
    ),
    linear-gradient(
      180deg,
      var(--rxb-champagne) 0%,
      var(--rxb-champagne) 42%,
      var(--rxb-champagne) 100%
    );
  overflow: hidden;
}

body.admin-bar.rx-booking-body {
  --rxb-admin-offset: 32px;
}

@media (max-width: 782px) {
  body.admin-bar.rx-booking-body {
    --rxb-admin-offset: 46px;
  }
}

body.rx-booking-body a {
  color: inherit;
  text-decoration: none;
}

body.rx-booking-body button,
body.rx-booking-body input,
body.rx-booking-body textarea {
  font: inherit;
}

body.rx-booking-body button {
  cursor: pointer;
}

body.rx-booking-body [hidden],
.hidden {
  display: none;
}

.rx-book-app {
  width: min(100%, 29.75rem);
  height: calc(100dvh - var(--rxb-admin-offset));
  min-height: 0;
  margin: 0 auto;
  padding: calc(0.75rem + var(--rxb-safe-top)) 0.75rem
    calc(0.75rem + var(--rxb-safe-bottom));
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 0.65rem;
  position: relative;
  isolation: isolate;
}

.rx-book-app::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 92% 16%,
      rgb(var(--rx-ruby-rgb) / 0.1),
      transparent 14rem
    ),
    radial-gradient(
      circle at 8% 40%,
      rgb(var(--rx-champagne-rgb) / 0.12),
      transparent 16rem
    ),
    linear-gradient(
      180deg,
      rgb(var(--rx-champagne-rgb) / 0.94),
      rgb(var(--rx-champagne-rgb) / 0.88)
    );
}

/* Header */
.rx-book-header {
  min-height: 2.9rem;
  display: grid;
  grid-template-columns: 2.9rem minmax(0, 1fr) 2.9rem;
  align-items: center;
}

.rx-book-header__left,
.rx-book-header__right {
  display: flex;
  align-items: center;
}

.rx-book-header__right {
  justify-content: flex-end;
}

.rx-icon-button {
  inline-size: 2.45rem;
  block-size: 2.45rem;
  border: 1px solid rgb(var(--rx-brand-deep-rgb) / 0.12);
  border-radius: var(--rxb-pill);
  background: rgb(var(--rx-champagne-rgb) / 0.82);
  color: var(--rxb-noir);
  display: inline-grid;
  place-items: center;
  box-shadow:
    0 0.35rem 1.2rem rgb(var(--rx-brand-deep-rgb) / 0.1),
    inset 0 1px 0 rgb(var(--rx-champagne-rgb) / 0.82);
  backdrop-filter: blur(12px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.rx-icon-button svg {
  inline-size: 1.25rem;
  block-size: 1.25rem;
}

.rx-icon-button:hover,
.rx-icon-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgb(var(--rx-ruby-rgb) / 0.28);
  background: rgb(var(--rx-champagne-rgb) / 0.95);
  box-shadow: var(--rxb-shadow-card);
  outline: none;
}

.rx-book-brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.rx-book-brand__logo {
  display: block;
  inline-size: min(10.5rem, 48vw);
  block-size: auto;
  object-fit: contain;
  filter: drop-shadow(0 0.55rem 1rem rgb(var(--rx-brand-deep-rgb) / 0.1));
}

/* Progress */
.rx-book-progress {
  position: relative;
  padding: 0.15rem 1.25rem 0.55rem;
}

.rx-progress-track {
  display: none;
}

.rx-progress-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.rx-progress-steps::before,
.rx-progress-steps::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 1rem;
  left: 13%;
  height: 2px;
  border-radius: var(--rxb-pill);
}

.rx-progress-steps::before {
  right: 13%;
  background: rgb(var(--rx-brand-deep-rgb) / 0.16);
}

.rx-progress-steps::after {
  width: 0;
  background: linear-gradient(90deg, var(--rxb-ruby), var(--rxb-gold));
  transition: width 240ms ease;
}

.rx-book-app[data-book-step="1"] .rx-progress-steps::after {
  width: 16%;
}
.rx-book-app[data-book-step="2"] .rx-progress-steps::after {
  width: 45%;
}
.rx-book-app[data-book-step="3"] .rx-progress-steps::after,
.rx-book-app[data-book-step="4"] .rx-progress-steps::after {
  width: 74%;
}

.rx-progress-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  font-size: clamp(0.67rem, 2.8vw, 0.78rem);
  font-weight: 850;
  line-height: 1.12;
  color: var(--rxb-muted);
  text-align: center;
}

.rx-progress-steps span {
  inline-size: 2rem;
  block-size: 2rem;
  display: grid;
  place-items: center;
  border: 2px solid rgb(var(--rx-brand-deep-rgb) / 0.18);
  border-radius: var(--rxb-pill);
  background: rgb(var(--rx-champagne-rgb) / 0.92);
  color: var(--rxb-muted);
  font-size: 0.93rem;
  font-weight: 950;
  box-shadow: 0 0.35rem 1rem rgb(var(--rx-brand-deep-rgb) / 0.09);
  transition: all 200ms ease;
}

.rx-progress-steps .is-active,
.rx-progress-steps .is-done {
  color: var(--rxb-noir);
}

.rx-progress-steps .is-active span,
.rx-progress-steps .is-done span {
  border-color: var(--rxb-noir);
  background: var(--rxb-noir);
  color: var(--rxb-champagne);
  box-shadow: 0 0.65rem 1.35rem rgb(var(--rx-brand-deep-rgb) / 0.26);
}

.rx-progress-steps .is-done span {
  font-size: 0;
  background: var(--rxb-ruby);
  border-color: var(--rxb-ruby);
}

.rx-progress-steps .is-done span::before {
  content: "✓";
  font-size: 0.95rem;
}

.rx-book-viewport {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.rx-book-screen {
  position: absolute;
  inset: 0;
  display: none;
  overflow-x: hidden;
  overflow-y: hidden;
  scrollbar-width: none;
  padding: 0.25rem 0 0;
}

.rx-book-screen::-webkit-scrollbar {
  display: none;
}

.rx-book-screen.is-active {
  display: block;
  animation: rxbScreenIn 260ms ease both;
}

@keyframes rxbScreenIn {
  from {
    opacity: 0;
    transform: translateY(0.6rem) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.rx-book-panel,
.rx-book-form {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Shared cards */
.rx-hero-card,
.rx-category-card,
.rx-trust-row,
.rx-package-card,
.rx-summary-card,
.rx-form-grid,
.rx-date-section,
.rx-success-panel,
.rx-success-summary,
.rx-success-whatsapp-note {
  border: 1px solid rgb(var(--rx-brand-deep-rgb) / 0.1);
  background: rgb(var(--rx-champagne-rgb) / 0.78);
  box-shadow: var(--rxb-shadow-soft);
  backdrop-filter: blur(16px);
}

/* Screen 1 */
.rx-hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.15rem, 3.8dvh, 1.85rem) 1rem;
  border-color: rgb(var(--rx-ruby-rgb) / 0.14);
  border-radius: var(--rxb-radius-xl);
  background:
    radial-gradient(
      circle at 100% 12%,
      rgb(var(--rx-champagne-rgb) / 0.16),
      transparent 8rem
    ),
    radial-gradient(
      circle at 0 100%,
      rgb(var(--rx-ruby-rgb) / 0.08),
      transparent 10rem
    ),
    linear-gradient(
      140deg,
      rgb(var(--rx-champagne-rgb) / 0.86),
      rgb(var(--rx-champagne-rgb) / 0.62)
    );
  text-align: center;
}

.rx-hero-spark {
  position: absolute;
  inline-size: 0.55rem;
  block-size: 0.55rem;
  background: var(--rxb-gold);
  clip-path: polygon(
    50% 0,
    61% 37%,
    100% 50%,
    61% 63%,
    50% 100%,
    39% 63%,
    0 50%,
    39% 37%
  );
  opacity: 0.92;
}

.rx-hero-spark--one {
  right: 1.45rem;
  top: 3.7rem;
}
.rx-hero-spark--two {
  left: 1.25rem;
  bottom: 1.4rem;
  inline-size: 0.4rem;
  block-size: 0.4rem;
  opacity: 0.5;
}

.rx-eyebrow,
.rx-selected-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 1.45rem;
  padding: 0 0.9rem;
  border: 1px solid rgb(var(--rx-ruby-rgb) / 0.22);
  border-radius: var(--rxb-pill);
  background: rgb(var(--rx-ruby-rgb) / 0.08);
  color: var(--rxb-ruby);
  font-size: 0.71rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.rx-hero-card h1,
.rx-section-head h2,
.rx-success-panel h2 {
  margin: 0.6rem 0 0;
  font-family: var(--rxb-heading-font);
  font-size: clamp(1.85rem, 7vw, 2.65rem);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: var(--rxb-noir);
}

.rx-hero-card p,
.rx-section-head p,
.rx-success-panel p {
  max-width: 23rem;
  margin: 0.55rem auto 0;
  font-size: clamp(0.92rem, 3.8vw, 1.06rem);
  line-height: 1.35;
  color: var(--rxb-muted);
}

.rx-category-grid,
.rx-package-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.72rem;
}

.rx-category-card {
  position: relative;
  min-height: clamp(5.65rem, 13dvh, 7.4rem);
  display: grid;
  grid-template-columns: clamp(4.2rem, 16vw, 5.35rem) minmax(0, 1fr) 2.8rem;
  align-items: center;
  gap: 0.95rem;
  padding: 0.85rem 0.92rem;
  border-radius: var(--rxb-radius-lg);
  color: var(--rxb-noir);
  text-align: left;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.rx-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgb(var(--rx-champagne-rgb) / 0.34),
    transparent 46%
  );
}

.rx-category-card:hover,
.rx-category-card:focus-visible,
.rx-category-card.is-selected {
  transform: translateY(-1px);
  border-color: rgb(var(--rx-ruby-rgb) / 0.34);
  box-shadow: var(--rxb-shadow-card);
  outline: none;
}

.rx-category-card--wedding {
  border-color: rgb(var(--rx-champagne-rgb) / 0.42);
  background: linear-gradient(
    135deg,
    rgb(var(--rx-champagne-rgb) / 0.9),
    rgb(var(--rx-champagne-rgb) / 0.82)
  );
}
.rx-category-card--event {
  background: linear-gradient(
    135deg,
    rgb(var(--rx-champagne-rgb) / 0.82),
    rgb(var(--rx-champagne-rgb) / 0.84)
  );
}
.rx-category-card--brand {
  background: linear-gradient(
    135deg,
    rgb(var(--rx-champagne-rgb) / 0.8),
    rgb(var(--rx-champagne-rgb) / 0.84)
  );
}
.rx-category-card--not-sure {
  background: linear-gradient(
    135deg,
    rgb(var(--rx-champagne-rgb) / 0.92),
    rgb(var(--rx-champagne-rgb) / 0.84)
  );
}

.rx-category-card__icon {
  inline-size: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 1.35rem;
  background: rgb(var(--rx-champagne-rgb) / 0.62);
  box-shadow: inset 0 1px 0 rgb(var(--rx-champagne-rgb) / 0.9);
}

.rx-category-card__icon svg {
  inline-size: 48%;
  block-size: 48%;
}

.rx-category-card--wedding .rx-category-card__icon {
  color: var(--rxb-gold);
  background: linear-gradient(
    135deg,
    rgb(var(--rx-champagne-rgb) / 1),
    rgb(var(--rx-champagne-rgb) / 0.68)
  );
}
.rx-category-card--event .rx-category-card__icon {
  color: var(--rxb-noir);
  background: linear-gradient(
    135deg,
    rgb(var(--rx-champagne-rgb) / 1),
    rgb(var(--rx-champagne-rgb) / 0.7)
  );
}
.rx-category-card--brand .rx-category-card__icon {
  color: var(--rxb-noir);
  background: linear-gradient(
    135deg,
    rgb(var(--rx-champagne-rgb) / 1),
    rgb(var(--rx-champagne-rgb) / 0.72)
  );
}
.rx-category-card--not-sure .rx-category-card__icon {
  color: var(--rxb-noir);
  background: linear-gradient(
    135deg,
    rgb(var(--rx-champagne-rgb) / 1),
    rgb(var(--rx-champagne-rgb) / 0.8)
  );
}

.rx-category-card__copy {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.rx-category-card__copy strong {
  font-family: var(--rxb-heading-font);
  font-size: clamp(1.25rem, 5.4vw, 1.62rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.rx-category-card__copy small {
  font-size: clamp(0.86rem, 3.6vw, 1rem);
  line-height: 1.25;
  color: var(--rxb-muted);
}

.rx-category-card__copy em {
  display: none;
}

.rx-category-card__arrow {
  inline-size: 2.55rem;
  block-size: 2.55rem;
  display: grid;
  place-items: center;
  border: 1px solid rgb(var(--rx-brand-deep-rgb) / 0.1);
  border-radius: var(--rxb-pill);
  background: rgb(var(--rx-champagne-rgb) / 0.76);
  color: var(--rxb-ruby);
  box-shadow: 0 0.45rem 1.2rem rgb(var(--rx-brand-deep-rgb) / 0.08);
}

.rx-category-card__arrow svg {
  inline-size: 1.1rem;
  block-size: 1.1rem;
}

.rx-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.42rem;
  padding: 0.46rem;
  border-radius: var(--rxb-radius-lg);
  border-color: rgb(var(--rx-brand-deep-rgb) / 0.12);
  background:
    linear-gradient(
      135deg,
      rgb(var(--rx-champagne-rgb) / 0.94),
      rgb(var(--rx-champagne-rgb) / 0.72)
    ),
    radial-gradient(
      circle at 0 0,
      rgb(var(--rx-gold-rgb) / 0.18),
      transparent 9rem
    );
  box-shadow: 0 0.9rem 2.4rem rgb(var(--rx-brand-deep-rgb) / 0.1);
}

.rx-trust-stat {
  position: relative;
  min-width: 0;
  min-height: 3.95rem;
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  justify-items: center;
  gap: 0.12rem;
  padding: 0.54rem 0.28rem 0.5rem;
  overflow: hidden;
  border: 1px solid rgb(var(--rx-brand-deep-rgb) / 0.1);
  border-radius: calc(var(--rxb-radius-lg) - 0.45rem);
  background:
    radial-gradient(
      circle at 50% 0,
      rgb(var(--rx-gold-rgb) / 0.16),
      transparent 3.4rem
    ),
    rgb(var(--rx-champagne-rgb) / 0.82);
  text-align: center;
}

.rx-trust-stat__icon {
  position: absolute;
  inset-inline-end: 0.34rem;
  inset-block-start: 0.32rem;
  display: grid;
  place-items: center;
  inline-size: 1.15rem;
  block-size: 1.15rem;
  border-radius: var(--rxb-pill);
  background: rgb(var(--rx-ruby-rgb) / 0.08);
  color: var(--rxb-ruby);
}

.rx-trust-stat__icon svg {
  inline-size: 0.72rem;
  block-size: 0.72rem;
}

.rx-trust-stat strong {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--rxb-heading-font);
  font-size: clamp(0.92rem, 4.2vw, 1.32rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--rxb-noir);
}

.rx-trust-stat small {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: clamp(0.52rem, 2.35vw, 0.66rem);
  font-weight: 850;
  line-height: 1.06;
  color: var(--rxb-muted);
}

/* Screen headings */
.rx-section-head {
  padding: 0.15rem 0.2rem 0;
  text-align: left;
}

.rx-section-head--center {
  text-align: center;
}

.rx-section-head--center .rx-selected-pill {
  margin-inline: auto;
}
.rx-section-head h2 {
  font-size: clamp(1.8rem, 7vw, 2.4rem);
}
.rx-section-head p {
  font-size: 0.94rem;
}

.rx-selected-pill {
  position: relative;
  gap: 0.5rem;
}

.rx-selected-pill::before,
.rx-selected-pill::after {
  content: "✧";
  color: var(--rxb-gold);
  font-size: 0.9rem;
  letter-spacing: 0;
}

/* Package cards */
.rx-package-grid {
  gap: 0.72rem;
}

.rx-package-card {
  position: relative;
  display: grid;
  grid-template-columns: clamp(4.2rem, 16vw, 5rem) minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  min-height: 5.75rem;
  padding: 0.5rem 0.65rem;
  border-radius: var(--rxb-radius-lg);
  color: var(--rxb-noir);
  text-align: left;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.rx-package-card:hover,
.rx-package-card:focus-visible,
.rx-package-card.is-selected {
  transform: translateY(-1px);
  border-color: rgb(var(--rx-ruby-rgb) / 0.4);
  box-shadow: var(--rxb-shadow-card);
  outline: none;
}

.rx-package-card.is-selected {
  background: linear-gradient(
    135deg,
    rgb(var(--rx-champagne-rgb) / 0.92),
    rgb(var(--rx-champagne-rgb) / 0.86)
  );
}

.rx-package-card__media {
  inline-size: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  color: var(--rxb-ruby);
  background: linear-gradient(
    135deg,
    rgb(var(--rx-champagne-rgb) / 0.95),
    rgb(var(--rx-champagne-rgb) / 0.78)
  );
}

.rx-package-card__media svg {
  inline-size: 48%;
  block-size: 48%;
}
.rx-package-card__media--silver {
  color: var(--rxb-noir);
  background: linear-gradient(
    135deg,
    var(--rxb-champagne),
    var(--rxb-champagne)
  );
}
.rx-package-card__media--gold {
  color: var(--rxb-gold);
  background: linear-gradient(
    135deg,
    var(--rxb-champagne),
    var(--rxb-champagne)
  );
}
.rx-package-card__media--platinum {
  color: var(--rxb-plum);
  background: linear-gradient(
    135deg,
    var(--rxb-champagne),
    var(--rxb-champagne)
  );
}
.rx-package-card__media--event {
  color: var(--rxb-plum);
  background: linear-gradient(
    135deg,
    var(--rxb-champagne),
    var(--rxb-champagne)
  );
}
.rx-package-card__media--brand {
  color: var(--rxb-plum);
  background: linear-gradient(
    135deg,
    var(--rxb-champagne),
    var(--rxb-champagne)
  );
}

.rx-package-card__body {
  display: grid;
  align-content: center;
  gap: 0.28rem;
  min-width: 0;
}

.rx-package-card__badge {
  width: fit-content;
  min-height: 1.15rem;
  padding: 0.1rem 0.52rem;
  border-radius: var(--rxb-pill);
  background: linear-gradient(135deg, var(--rxb-gold), var(--rxb-gold));
  color: var(--rxb-noir);
  font-size: 0.58rem;
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rx-package-card__body strong {
  font-family: var(--rxb-heading-font);
  font-size: clamp(1.12rem, 4.5vw, 1.42rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.rx-package-card__body small {
  font-size: clamp(0.76rem, 3.2vw, 0.9rem);
  line-height: 1.18;
  color: var(--rxb-muted);
}

.rx-package-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  margin-top: 0.08rem;
}

.rx-package-card__features [role="listitem"],
.rx-package-card__features li {
  display: inline-flex;
  align-items: center;
  min-height: 1.28rem;
  padding: 0.15rem 0.45rem;
  border: 1px solid rgb(var(--rx-brand-deep-rgb) / 0.1);
  border-radius: var(--rxb-pill);
  background: rgb(var(--rx-champagne-rgb) / 0.66);
  color: var(--rxb-muted);
  font-size: 0.64rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.rx-package-card__features [role="listitem"]::before,
.rx-package-card__features li + li::before {
  content: none;
}

.rx-package-card__offer {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.16rem 0.45rem;
  border: 1px solid rgb(var(--rx-ruby-rgb) / 0.16);
  border-radius: var(--rxb-pill);
  background: rgb(var(--rx-ruby-rgb) / 0.07);
  color: var(--rxb-ruby);
  font-size: 0.64rem;
  font-weight: 900;
}

.rx-package-card__price {
  margin-top: 0.12rem;
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1.05;
  color: var(--rxb-ruby);
}

.rx-package-card__select {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  min-width: 2.9rem;
}

.rx-package-card__select i {
  inline-size: 1.55rem;
  block-size: 1.55rem;
  border: 2px solid rgb(var(--rx-brand-deep-rgb) / 0.16);
  border-radius: var(--rxb-pill);
  background: rgb(var(--rx-champagne-rgb) / 0.75);
  box-shadow: inset 0 0 0 0.38rem rgb(var(--rx-champagne-rgb) / 0.85);
}

.rx-package-card__select b {
  padding: 0.28rem 0.72rem;
  border: 1px solid rgb(var(--rx-ruby-rgb) / 0.25);
  border-radius: var(--rxb-pill);
  background: rgb(var(--rx-ruby-rgb) / 0.06);
  color: var(--rxb-ruby);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
}

.rx-package-card.is-selected .rx-package-card__select i {
  border-color: var(--rxb-ruby);
  background: var(--rxb-ruby);
  box-shadow: inset 0 0 0 0.36rem var(--rxb-champagne);
}

.rx-package-card.is-selected .rx-package-card__select b {
  background: var(--rxb-ruby);
  color: var(--rxb-champagne);
}

/* Screen 3 */
#rx-screen-3 .rx-book-form {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  block-size: 100%;
  max-block-size: 100%;
  min-block-size: 100%;
  overflow: hidden;
}

#rx-screen-3 .rx-book-form-body {
  min-block-size: 0;
  display: grid;
  align-content: start;
  gap: var(--rx-space-2);
  overflow-x: hidden;
  overflow-y: auto;
  padding-inline-end: var(--rx-space-1);
  scrollbar-width: thin;
  scrollbar-color: rgb(var(--rx-ruby-rgb) / 0.34) transparent;
}

#rx-screen-3 .rx-book-form-body::-webkit-scrollbar {
  width: 0.38rem;
}

#rx-screen-3 .rx-book-form-body::-webkit-scrollbar-track {
  background: transparent;
}

#rx-screen-3 .rx-book-form-body::-webkit-scrollbar-thumb {
  border-radius: var(--rxb-pill);
  background: rgb(var(--rx-ruby-rgb) / 0.28);
}

#rx-screen-3 .rx-book-form-body > * {
  min-inline-size: 0;
}

.rx-summary-card {
  display: grid;
  grid-template-columns: 3.8rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.72rem;
  border-radius: var(--rxb-radius-md);
  border-color: rgb(var(--rx-ruby-rgb) / 0.18);
  background: rgb(var(--rx-champagne-rgb) / 0.82);
}

.rx-summary-card__icon,
.rx-success-mark {
  inline-size: 3.15rem;
  block-size: 3.15rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: linear-gradient(
    135deg,
    var(--rxb-champagne),
    var(--rxb-champagne)
  );
  color: var(--rxb-noir);
}

.rx-summary-card__icon svg {
  inline-size: 55%;
  block-size: 55%;
}
.rx-summary-card__icon--gold {
  color: var(--rxb-gold);
  background: linear-gradient(
    135deg,
    var(--rxb-champagne),
    var(--rxb-champagne)
  );
}
.rx-summary-card__icon--platinum {
  color: var(--rxb-plum);
  background: linear-gradient(
    135deg,
    var(--rxb-champagne),
    var(--rxb-champagne)
  );
}
.rx-summary-card__icon--ruby {
  color: var(--rxb-ruby);
  background: linear-gradient(
    135deg,
    var(--rxb-champagne),
    var(--rxb-champagne)
  );
}

.rx-summary-card small,
.rx-summary-card strong,
.rx-summary-card em {
  display: block;
}

.rx-summary-card small {
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rxb-muted);
}

.rx-summary-card strong {
  margin-top: 0.1rem;
  font-family: var(--rxb-heading-font);
  font-size: 1.34rem;
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.rx-summary-card em {
  margin-top: 0.14rem;
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.15;
  color: var(--rxb-muted);
}

.rx-summary-change {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  color: var(--rxb-ruby);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 0.15rem;
}

.rx-summary-change svg {
  inline-size: 1rem;
  block-size: 1rem;
}

.rx-form-grid,
.rx-date-section {
  display: grid;
  gap: 0.7rem;
  padding: 0.72rem;
  border-radius: var(--rxb-radius-md);
  background: rgb(var(--rx-champagne-rgb) / 0.82);
}

.rx-field {
  display: grid;
  gap: 0.42rem;
}

.rx-field span,
.rx-date-section h3 {
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--rxb-noir);
}

.rx-field b,
.rx-date-section b {
  color: var(--rxb-ruby);
}

.rx-field input,
.rx-field textarea,
.rx-phone-field {
  width: 100%;
  min-height: 3.05rem;
  border: 1px solid rgb(var(--rx-brand-deep-rgb) / 0.16);
  border-radius: var(--rxb-pill);
  background: rgb(var(--rx-champagne-rgb) / 0.82);
  color: var(--rxb-noir);
  outline: none;
  box-shadow: inset 0 1px 0 rgb(var(--rx-champagne-rgb) / 0.9);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.rx-field input,
.rx-field textarea {
  padding: 0.85rem 0.95rem;
}

.rx-field textarea {
  min-height: 5rem;
  resize: vertical;
  border-radius: var(--rxb-radius-md);
}

.rx-field input:focus,
.rx-field textarea:focus,
.rx-phone-field:focus-within {
  border-color: rgb(var(--rx-ruby-rgb) / 0.5);
  box-shadow: 0 0 0 0.22rem rgb(var(--rx-ruby-rgb) / 0.09);
  background: var(--rxb-champagne);
}

.rx-phone-field {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.rx-phone-field em {
  padding: 0 0.78rem 0 0.9rem;
  border-right: 1px solid rgb(var(--rx-brand-deep-rgb) / 0.12);
  font-style: normal;
  font-weight: 950;
  color: var(--rxb-ruby);
}

.rx-phone-field .rx-country-code {
  flex: 0 0 auto;
  max-width: 5.5rem;
  min-height: 0;
  border: 0;
  border-right: 1px solid rgb(var(--rx-brand-deep-rgb) / 0.12);
  border-radius: 0;
  background: transparent;
  color: var(--rxb-ruby);
  font-weight: 950;
  font-size: 0.85rem;
  padding: 0 1.2rem 0 0.9rem;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23c23b5a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 1.4rem;
}

.rx-phone-field input {
  flex: 1;
  min-height: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.rx-phone-field input:focus {
  box-shadow: none;
}

.rx-phone-field__wa {
  flex: 0 0 auto;
  inline-size: 2.15rem;
  block-size: 2.15rem;
  margin-right: 0.45rem;
  display: grid;
  place-items: center;
  border-radius: var(--rxb-pill);
  color: var(--rxb-ruby);
}

.rx-phone-field__wa svg {
  inline-size: 1.35rem;
  block-size: 1.35rem;
}

.rx-help-text,
.rx-field-error,
.rx-form-error,
.rx-safe-note {
  font-size: 0.72rem;
  line-height: 1.25;
}

.rx-help-text,
.rx-safe-note {
  color: var(--rxb-muted);
}
.rx-field-error,
.rx-form-error {
  color: var(--rxb-ruby-deep);
}
.rx-field-error:empty,
.rx-form-error:empty {
  display: none;
}
.rx-form-error {
  margin: 0;
  text-align: center;
  font-weight: 850;
}

.rx-date-section h3 {
  margin: 0;
}

.rx-date-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.rx-date-chip {
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid rgb(var(--rx-brand-deep-rgb) / 0.16);
  border-radius: var(--rxb-pill);
  background: rgb(var(--rx-champagne-rgb) / 0.76);
  color: var(--rxb-noir);
  font-size: 1rem;
  font-weight: 720;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.rx-date-chip svg {
  inline-size: 1.12rem;
  block-size: 1.12rem;
  color: var(--rxb-ruby);
}

.rx-date-chip--wide {
  grid-column: 1 / -1;
}

.rx-date-chip:hover,
.rx-date-chip:focus-visible,
.rx-date-chip.is-selected {
  transform: translateY(-1px);
  border-color: rgb(var(--rx-ruby-rgb) / 0.42);
  box-shadow: 0 0.55rem 1.3rem rgb(var(--rx-brand-deep-rgb) / 0.08);
  outline: none;
}

.rx-date-chip.is-selected {
  background: rgb(var(--rx-ruby-rgb) / 0.08);
  color: var(--rxb-ruby);
  font-weight: 900;
}

.rx-date-other {
  margin-top: 0.1rem;
}

.rx-submit-btn {
  min-height: 3.35rem;
  border: 1px solid rgb(var(--rx-champagne-rgb) / 0.7);
  border-radius: var(--rxb-pill);
  background: linear-gradient(
    135deg,
    var(--rxb-ruby) 0%,
    var(--rxb-ruby) 58%,
    var(--rxb-gold) 100%
  );
  color: var(--rxb-champagne);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--rxb-heading-font);
  font-size: clamp(1.05rem, 4.5vw, 1.3rem);
  font-weight: 950;
  letter-spacing: -0.02em;
  box-shadow:
    0 0.75rem 1.7rem rgb(var(--rx-ruby-rgb) / 0.3),
    inset 0 0 0 2px rgb(var(--rx-champagne-rgb) / 0.18);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.rx-submit-btn svg {
  inline-size: 1.28rem;
  block-size: 1.28rem;
}
.rx-submit-btn:not(:disabled):hover,
.rx-submit-btn:not(:disabled):focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.07);
  box-shadow: var(--rxb-shadow-lift);
  outline: none;
}
.rx-submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  filter: grayscale(0.12);
  box-shadow: none;
}
.rx-submit-btn.is-loading {
  opacity: 0.78;
}

.rx-safe-note {
  margin: -0.25rem 0 0;
  text-align: center;
}

/* Success */
.rx-success-panel {
  min-height: 100%;
  padding: 1.25rem 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: var(--rxb-radius-xl);
  background: rgb(var(--rx-champagne-rgb) / 0.86);
}

.rx-success-visual {
  position: relative;
  display: grid;
  place-items: center;
}
.rx-success-mark {
  inline-size: 4.4rem;
  block-size: 4.4rem;
  border-radius: var(--rxb-pill);
  background: linear-gradient(
    135deg,
    rgb(var(--rx-champagne-rgb) / 0.2),
    rgb(var(--rx-ruby-rgb) / 0.12)
  );
  color: var(--rxb-ruby);
  font-size: 2.2rem;
  font-weight: 950;
}

.rx-success-summary {
  width: 100%;
  display: grid;
  gap: 0.65rem;
  padding: 0.9rem;
  border-radius: var(--rxb-radius-md);
  text-align: left;
}

.rx-success-summary__title {
  font-size: 0.85rem;
  color: var(--rxb-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.rx-success-summary__row,
.rx-success-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}
.rx-success-summary__row span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--rxb-muted);
}
.rx-success-summary__row svg {
  inline-size: 1rem;
  block-size: 1rem;
  color: var(--rxb-ruby);
}
.rx-success-summary__total {
  padding-top: 0.65rem;
  border-top: 1px solid rgb(var(--rx-brand-deep-rgb) / 0.1);
  font-weight: 900;
}
.rx-success-summary__total b {
  color: var(--rxb-ruby);
}

.rx-success-whatsapp-note,
.rx-secondary-btn {
  width: 100%;
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: var(--rxb-radius-sm);
  font-weight: 900;
}

.rx-success-whatsapp-note {
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem;
  border: 1px solid rgb(var(--rx-ruby-rgb) / 0.2);
  background: rgb(var(--rx-ruby-rgb) / 0.06);
  color: var(--rxb-ruby);
}
.rx-success-whatsapp-note span svg {
  inline-size: 1.1rem;
  block-size: 1.1rem;
}
.rx-success-whatsapp-note small {
  color: var(--rxb-muted);
}

.rx-secondary-btn {
  background: rgb(var(--rx-brand-deep-rgb) / 0.07);
  color: var(--rxb-noir);
}
.rx-secondary-btn svg {
  inline-size: 1.1rem;
  block-size: 1.1rem;
}

@media (max-width: 699px) {
  body.rx-booking-body {
    height: calc(100dvh - var(--rxb-admin-offset));
  }

  .rx-book-app {
    width: 100%;
    padding-inline: 0.62rem;
    padding-top: calc(0.45rem + var(--rxb-safe-top));
    gap: 0.45rem;
  }

  .rx-book-header {
    min-height: 2.55rem;
    grid-template-columns: 2.55rem minmax(0, 1fr) 2.55rem;
  }
  .rx-icon-button {
    inline-size: 2.28rem;
    block-size: 2.28rem;
  }
  .rx-book-brand__logo {
    inline-size: min(9.8rem, 45vw);
  }

  .rx-book-progress {
    padding-inline: 1.1rem;
    padding-bottom: 0.42rem;
  }
  .rx-progress-steps span {
    inline-size: 1.88rem;
    block-size: 1.88rem;
  }
  .rx-progress-steps::before,
  .rx-progress-steps::after {
    top: 0.94rem;
  }

  .rx-book-panel,
  .rx-book-form {
    gap: clamp(0.45rem, 1.4dvh, 0.72rem);
  }

  .rx-hero-card {
    padding-block: clamp(1rem, 3dvh, 1.45rem);
  }
  .rx-category-card {
    min-height: clamp(5rem, 14dvh, 6.4rem);
  }

  #rx-screen-1 .rx-book-panel {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
  }

  #rx-screen-1 .rx-category-grid {
    min-height: 0;
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }

  #rx-screen-2 .rx-book-panel {
    display: grid;
    grid-template-rows: auto auto auto minmax(0, 1fr);
  }

  #rx-screen-2 .rx-package-grid {
    min-height: 0;
    overflow-y: hidden;
    padding-bottom: 0.2rem;
  }

  #rx-screen-3 .rx-book-form {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  }

  .rx-book-form-body {
    overflow-y: auto;
    padding-bottom: 0.5rem;
  }

  .rx-form-grid,
  .rx-date-section,
  .rx-summary-card {
    padding: clamp(0.58rem, 1.55dvh, 0.75rem);
  }

  .rx-field input,
  .rx-field textarea,
  .rx-phone-field {
    min-height: clamp(2.5rem, 5.8dvh, 3.05rem);
  }
  .rx-date-chip {
    min-height: clamp(2.65rem, 6.4dvh, 3.35rem);
  }
  .rx-submit-btn {
    min-height: clamp(2.75rem, 6.4dvh, 3.35rem);
  }
}

@media (max-height: 760px) and (max-width: 699px) {
  .rx-book-app {
    gap: 0.34rem;
    padding-bottom: calc(0.45rem + var(--rxb-safe-bottom));
  }
  .rx-hero-card p,
  .rx-section-head p,
  .rx-safe-note {
    display: none;
  }
  .rx-category-card {
    min-height: 4.45rem;
    grid-template-columns: 3.65rem minmax(0, 1fr) 2.25rem;
    padding-block: 0.55rem;
  }
  .rx-category-card__copy strong {
    font-size: 1.15rem;
  }
  .rx-category-card__copy small {
    font-size: 0.78rem;
  }
  .rx-package-card {
    min-height: 5.15rem;
    grid-template-columns: 3.55rem minmax(0, 1fr) auto;
    padding: 0.55rem;
  }
  .rx-package-card__features {
    max-height: 1.5rem;
    overflow: hidden;
  }
  .rx-package-card__select b {
    display: none;
  }
  .rx-form-grid,
  .rx-date-section {
    gap: 0.46rem;
  }
}

@media (min-width: 700px) {
  body.rx-booking-body {
    display: grid;
    place-items: center;
  }
  .rx-book-app {
    height: min(56rem, calc(100dvh - var(--rxb-admin-offset) - 1.4rem));
    min-height: 42rem;
    border: 1px solid rgb(var(--rx-brand-deep-rgb) / 0.12);
    border-radius: 2.1rem;
    overflow: hidden;
    box-shadow: 0 1.4rem 4rem rgb(var(--rx-brand-deep-rgb) / 0.14);
  }
  .rx-book-app::before {
    border-radius: inherit;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    scroll-behavior: auto;
    transition-duration: 0.01ms;
  }
}

/* ── 1K fixed mobile viewport pass: no internal page scroll ───────── */
.rx-book-screen {
  overflow: hidden;
}

@media (max-width: 699px) {
  body.rx-booking-body,
  html {
    overflow: hidden;
  }

  .rx-book-app {
    block-size: calc(100dvh - var(--rxb-admin-offset));
    min-block-size: 0;
    padding-inline: clamp(0.48rem, 2.2vw, 0.72rem);
    padding-block: calc(0.38rem + var(--rxb-safe-top))
      calc(0.46rem + var(--rxb-safe-bottom));
    gap: clamp(0.28rem, 1dvh, 0.46rem);
  }

  .rx-book-header {
    min-block-size: clamp(2.1rem, 6.4dvh, 2.5rem);
  }

  .rx-icon-button {
    inline-size: clamp(2.05rem, 6.4dvh, 2.28rem);
    block-size: clamp(2.05rem, 6.4dvh, 2.28rem);
  }

  .rx-book-brand__logo {
    inline-size: min(9.1rem, 42vw);
  }

  .rx-book-progress {
    padding: 0 clamp(0.55rem, 3vw, 1rem) clamp(0.2rem, 0.8dvh, 0.38rem);
  }

  .rx-progress-steps li {
    font-size: clamp(0.56rem, 2.3vw, 0.68rem);
    gap: 0.22rem;
  }

  .rx-progress-steps span {
    inline-size: clamp(1.55rem, 5.2dvh, 1.82rem);
    block-size: clamp(1.55rem, 5.2dvh, 1.82rem);
    font-size: 0.78rem;
  }

  .rx-progress-steps::before,
  .rx-progress-steps::after {
    top: calc(clamp(1.55rem, 5.2dvh, 1.82rem) / 2);
  }

  .rx-book-viewport,
  .rx-book-screen,
  .rx-book-screen.is-active,
  .rx-book-panel,
  .rx-book-form {
    min-block-size: 0;
    overflow: hidden;
  }

  .rx-book-screen.is-active {
    display: grid;
  }

  .rx-book-panel,
  .rx-book-form {
    block-size: 100%;
    gap: clamp(0.34rem, 1.05dvh, 0.58rem);
  }

  .rx-hero-card {
    padding: clamp(0.72rem, 2dvh, 1.08rem) 0.78rem;
    border-radius: clamp(1.25rem, 5vw, 1.65rem);
  }

  .rx-hero-card h1,
  .rx-section-head h2,
  .rx-success-panel h2 {
    font-size: clamp(1.42rem, 6.2vw, 2.05rem);
  }

  .rx-hero-card p,
  .rx-section-head p {
    font-size: clamp(0.74rem, 3vw, 0.9rem);
    line-height: 1.2;
  }

  #rx-screen-1 .rx-book-panel {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
  }

  #rx-screen-1 .rx-category-grid {
    min-block-size: 0;
    display: grid;
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: clamp(0.32rem, 1.05dvh, 0.56rem);
  }

  .rx-category-card {
    min-block-size: 0;
    block-size: 100%;
    grid-template-columns: clamp(3.05rem, 12vw, 3.85rem) minmax(0, 1fr) clamp(
        2rem,
        7vw,
        2.35rem
      );
    gap: clamp(0.46rem, 2vw, 0.76rem);
    padding: clamp(0.42rem, 1.25dvh, 0.68rem);
  }

  .rx-category-card__copy strong {
    font-size: clamp(1.02rem, 4.5vw, 1.26rem);
  }

  .rx-category-card__copy small {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: clamp(0.66rem, 2.9vw, 0.82rem);
  }

  .rx-category-card__arrow {
    inline-size: clamp(2rem, 7vw, 2.35rem);
    block-size: clamp(2rem, 7vw, 2.35rem);
  }

  .rx-trust-row {
    gap: clamp(0.24rem, 1.1vw, 0.42rem);
    padding: clamp(0.32rem, 1.05dvh, 0.46rem);
  }

  .rx-trust-stat {
    min-block-size: clamp(3.05rem, 9.6dvh, 3.75rem);
    padding: 0.45rem 0.18rem 0.38rem;
  }

  .rx-trust-stat__icon {
    display: none;
  }

  #rx-screen-2 .rx-book-panel {
    display: grid;
    grid-template-rows: auto auto auto minmax(0, 1fr);
  }

  #rx-screen-2 .rx-package-grid {
    display: grid;
    min-block-size: 0;
    block-size: 100%;
    overflow: hidden;
    gap: clamp(0.32rem, 1dvh, 0.52rem);
    padding: 0;
    align-content: stretch;
  }

  #rx-screen-2 .rx-package-grid[data-count="3"] {
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  #rx-screen-2 .rx-package-grid[data-count="4"] {
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
  #rx-screen-2 .rx-package-grid[data-count="5"] {
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .rx-package-card {
    min-block-size: 0;
    block-size: 100%;
    grid-template-columns: clamp(2.8rem, 11.5vw, 3.55rem) minmax(0, 1fr) auto;
    gap: clamp(0.38rem, 1.8vw, 0.62rem);
    padding: clamp(0.38rem, 1.1dvh, 0.58rem);
    border-radius: clamp(1rem, 4vw, 1.35rem);
  }

  .rx-package-card__body {
    gap: clamp(0.12rem, 0.55dvh, 0.24rem);
  }

  .rx-package-card__badge,
  .rx-package-card__offer {
    min-block-size: 0;
    padding: 0.08rem 0.38rem;
    font-size: clamp(0.48rem, 2vw, 0.56rem);
  }

  .rx-package-card__body strong {
    font-size: clamp(0.9rem, 3.8vw, 1.12rem);
  }

  .rx-package-card__body small {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: clamp(0.58rem, 2.55vw, 0.72rem);
  }

  .rx-package-card__features {
    max-block-size: 1.36rem;
    overflow: hidden;
  }

  .rx-package-card__features [role="listitem"],
  .rx-package-card__features li {
    min-block-size: 1.08rem;
    padding: 0.1rem 0.34rem;
    font-size: clamp(0.5rem, 2.08vw, 0.6rem);
  }

  .rx-package-card__price {
    font-size: clamp(0.72rem, 2.9vw, 0.86rem);
  }

  .rx-package-card__select {
    min-inline-size: 2rem;
  }

  .rx-package-card__select i {
    inline-size: 1.3rem;
    block-size: 1.3rem;
  }

  .rx-package-card__select b {
    display: none;
  }

  #rx-screen-3 .rx-book-form {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  }

  .rx-summary-card,
  .rx-form-grid,
  .rx-date-section {
    padding: clamp(0.44rem, 1.2dvh, 0.65rem);
  }

  .rx-summary-card {
    grid-template-columns: clamp(2.7rem, 11vw, 3.25rem) minmax(0, 1fr) auto;
  }

  .rx-form-grid,
  .rx-date-section {
    gap: clamp(0.32rem, 1dvh, 0.48rem);
  }

  .rx-field {
    gap: 0.2rem;
  }

  .rx-field span,
  .rx-date-section h3 {
    font-size: clamp(0.58rem, 2.35vw, 0.68rem);
  }

  .rx-field input,
  .rx-field textarea,
  .rx-phone-field {
    min-block-size: clamp(2.05rem, 5.1dvh, 2.56rem);
  }

  .rx-date-chips {
    gap: clamp(0.28rem, 0.9dvh, 0.4rem);
  }

  .rx-date-chip {
    min-block-size: clamp(2.05rem, 5.4dvh, 2.72rem);
  }

  .rx-submit-btn {
    min-block-size: clamp(2.35rem, 5.6dvh, 2.9rem);
  }
}

@media (max-height: 720px) and (max-width: 699px) {
  .rx-hero-card p,
  .rx-section-head p,
  .rx-safe-note,
  .rx-summary-card__icon,
  .rx-phone-field__wa {
    display: none;
  }

  .rx-hero-card {
    padding-block: 0.6rem;
  }

  .rx-category-card {
    grid-template-columns: 2.75rem minmax(0, 1fr) 2rem;
  }

  .rx-package-card {
    grid-template-columns: 2.55rem minmax(0, 1fr) auto;
  }

  .rx-package-card__features {
    display: none;
  }

  #rx-screen-3 .rx-section-head h2 {
    font-size: 1.28rem;
  }
}

/* ── Palette-only depth accents ─────────────────────────── */
.rx-category-card--wedding {
  background:
    radial-gradient(
      circle at 0 0,
      rgb(var(--rx-gold-rgb) / 0.22),
      transparent 6.5rem
    ),
    rgb(var(--rx-champagne-rgb) / 0.84);
}

.rx-category-card--event {
  background:
    radial-gradient(
      circle at 0 0,
      rgb(var(--rx-ruby-rgb) / 0.12),
      transparent 6rem
    ),
    rgb(var(--rx-champagne-rgb) / 0.84);
}

.rx-category-card--brand {
  background:
    radial-gradient(
      circle at 0 0,
      rgb(var(--rx-brand-deep-rgb) / 0.12),
      transparent 6rem
    ),
    rgb(var(--rx-champagne-rgb) / 0.84);
}

.rx-category-card--not-sure {
  background:
    radial-gradient(
      circle at 0 0,
      rgb(var(--rx-slate-rgb) / 0.14),
      transparent 6rem
    ),
    rgb(var(--rx-champagne-rgb) / 0.84);
}

.rx-category-card--wedding .rx-category-card__icon,
.rx-package-card__media--gold {
  color: var(--rxb-gold);
  background:
    radial-gradient(
      circle at 30% 20%,
      rgb(var(--rx-gold-rgb) / 0.34),
      transparent 3.8rem
    ),
    rgb(var(--rx-champagne-rgb) / 0.92);
}

.rx-category-card--event .rx-category-card__icon,
.rx-package-card__media--event,
.rx-package-card__media--ruby {
  color: var(--rxb-ruby);
  background:
    radial-gradient(
      circle at 30% 20%,
      rgb(var(--rx-ruby-rgb) / 0.2),
      transparent 3.8rem
    ),
    rgb(var(--rx-champagne-rgb) / 0.92);
}

.rx-category-card--brand .rx-category-card__icon,
.rx-package-card__media--brand,
.rx-package-card__media--silver,
.rx-package-card__media--platinum {
  color: var(--rxb-noir);
  background:
    radial-gradient(
      circle at 30% 20%,
      rgb(var(--rx-brand-deep-rgb) / 0.16),
      transparent 3.8rem
    ),
    rgb(var(--rx-champagne-rgb) / 0.92);
}

.rx-category-card--not-sure .rx-category-card__icon {
  color: var(--rxb-muted);
  background:
    radial-gradient(
      circle at 30% 20%,
      rgb(var(--rx-slate-rgb) / 0.16),
      transparent 3.8rem
    ),
    rgb(var(--rx-champagne-rgb) / 0.92);
}

#rx-screen-2 .rx-book-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-block-size: 0;
  overflow: hidden;
}

#rx-screen-2 .rx-section-head {
  padding-block-start: 0;
}

#rx-screen-2 .rx-package-grid {
  block-size: 100%;
  min-block-size: 0;
  overflow: hidden;
  align-content: stretch;
}

#rx-screen-2 .rx-package-grid[data-count="3"] {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}
#rx-screen-2 .rx-package-grid[data-count="4"] {
  grid-template-rows: repeat(4, minmax(0, 1fr));
}
#rx-screen-2 .rx-package-grid[data-count="5"] {
  grid-template-rows: repeat(5, minmax(0, 1fr));
}

.rx-package-card {
  block-size: 100%;
  min-block-size: 0;
  background:
    radial-gradient(
      circle at 0 0,
      rgb(var(--rx-gold-rgb) / 0.12),
      transparent 7rem
    ),
    rgb(var(--rx-champagne-rgb) / 0.88);
}

.rx-package-card__features {
  display: flex;
  max-block-size: none;
  overflow: hidden;
  flex-wrap: wrap;
  gap: clamp(0.18rem, 0.55dvh, 0.32rem);
}

.rx-package-card__features [role="listitem"],
.rx-package-card__features li {
  display: inline-flex;
  align-items: center;
  max-inline-size: 100%;
  border-color: rgb(var(--rx-brand-deep-rgb) / 0.12);
  background: rgb(var(--rx-champagne-rgb) / 0.78);
  color: var(--rxb-muted);
}

.rx-package-card__body {
  align-content: center;
}

#rx-screen-3 .rx-book-form {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  min-block-size: 0;
  overflow: hidden;
}

#rx-screen-3 .rx-date-section {
  min-block-size: 0;
  align-content: stretch;
}

@media (max-width: 699px) {
  .rx-book-screen,
  .rx-book-screen.is-active,
  .rx-book-panel,
  .rx-book-form {
    overflow: hidden;
  }

  #rx-screen-2 .rx-section-head h2 {
    margin-block-start: 0.4rem;
  }

  .rx-package-card {
    grid-template-columns: clamp(2.55rem, 10.5vw, 3.35rem) minmax(0, 1fr) auto;
    padding: clamp(0.4rem, 1.15dvh, 0.62rem);
  }

  .rx-package-card__body {
    gap: clamp(0.08rem, 0.42dvh, 0.2rem);
  }

  .rx-package-card__body strong {
    font-size: clamp(0.94rem, 3.85vw, 1.16rem);
  }

  .rx-package-card__body small {
    font-size: clamp(0.58rem, 2.45vw, 0.7rem);
  }

  .rx-package-card__features [role="listitem"],
  .rx-package-card__features li {
    min-block-size: clamp(0.92rem, 2.7dvh, 1.08rem);
    padding: 0.06rem 0.34rem;
    font-size: clamp(0.48rem, 2vw, 0.58rem);
    line-height: 1;
  }

  .rx-package-card__price {
    font-size: clamp(0.72rem, 2.9vw, 0.88rem);
  }
}

@media (max-height: 720px) and (max-width: 699px) {
  .rx-package-card__features {
    display: flex;
  }

  .rx-package-card__features [role="listitem"]:nth-child(n + 3),
  .rx-package-card__features li:nth-child(n + 3) {
    display: none;
  }

  #rx-screen-2 .rx-section-head p {
    display: none;
  }
}

@media (max-height: 640px) and (max-width: 699px) {
  .rx-package-card__media {
    display: none;
  }

  .rx-package-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .rx-package-card__features [role="listitem"]:nth-child(n + 2),
  .rx-package-card__features li:nth-child(n + 2) {
    display: none;
  }
}

/* ── Corrected premium final pass: fixed request page + homepage-width desktop ── */
:root {
  --rxb-home-max: var(--rx-container-max, 1180px);
  --rxb-home-pad: var(--rx-container-pad, clamp(1rem, 4vw, 2rem));
}

body.rx-booking-body,
html {
  overflow: hidden;
}

.rx-book-screen,
.rx-book-screen.is-active,
.rx-book-panel,
.rx-book-form {
  overflow: hidden;
}

.rx-summary-card > span {
  min-inline-size: 0;
  overflow: hidden;
}

.rx-summary-card small,
.rx-summary-card strong,
.rx-summary-card em {
  max-inline-size: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rx-summary-card small,
.rx-summary-card em {
  white-space: nowrap;
}

.rx-summary-card strong {
  white-space: nowrap;
}

.rx-summary-change {
  flex: 0 0 auto;
  min-inline-size: max-content;
}

@media (min-width: 700px) {
  body.rx-booking-body {
    display: grid;
    place-items: center;
    padding: 1rem 0;
  }

  .rx-book-app {
    inline-size: min(
      var(--rxb-home-max),
      calc(100vw - (var(--rxb-home-pad) * 2))
    );
    max-inline-size: var(--rxb-home-max);
    block-size: min(860px, calc(100dvh - var(--rxb-admin-offset) - 2rem));
    min-block-size: 0;
    padding: 1rem clamp(1.1rem, 2.2vw, 1.75rem) 1.15rem;
    border-radius: 2.25rem;
  }

  .rx-book-header {
    min-block-size: 3rem;
    grid-template-columns: 3rem minmax(0, 1fr) 3rem;
  }

  .rx-book-brand__logo {
    inline-size: min(12rem, 20vw);
  }

  .rx-book-progress {
    inline-size: min(44rem, 100%);
    margin-inline: auto;
    padding-inline: 1.25rem;
  }

  .rx-book-viewport {
    inline-size: 100%;
  }

  .rx-book-screen {
    padding-block-start: 0.35rem;
  }

  #rx-screen-1 .rx-book-panel,
  #rx-screen-2 .rx-book-panel,
  #rx-screen-3 .rx-book-form,
  #rx-screen-success .rx-book-panel {
    inline-size: 100%;
    margin-inline: auto;
  }

  #rx-screen-1 .rx-book-panel {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    max-inline-size: 62rem;
  }

  #rx-screen-1 .rx-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    min-block-size: 0;
  }

  .rx-category-card {
    min-block-size: 0;
    block-size: 100%;
    grid-template-columns: 4.4rem minmax(0, 1fr) 2.6rem;
  }

  .rx-trust-row {
    min-block-size: 5.4rem;
  }

  #rx-screen-2 .rx-book-panel {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    max-inline-size: 68rem;
    min-block-size: 0;
  }

  #rx-screen-2 .rx-section-head p {
    display: block;
  }

  #rx-screen-2 .rx-package-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    min-block-size: 0;
    block-size: 100%;
    overflow: hidden;
  }

  #rx-screen-2 .rx-package-grid[data-count="3"] {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  #rx-screen-2 .rx-package-grid[data-count="5"] {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: minmax(0, 1fr);
  }

  #rx-screen-2 .rx-package-grid[data-count="5"] .rx-package-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-items: stretch;
    justify-items: start;
    gap: var(--rx-space-2);
    padding: var(--rx-space-3);
    text-align: left;
  }

  #rx-screen-2 .rx-package-grid[data-count="5"] .rx-package-card__media {
    inline-size: 4rem;
    max-inline-size: 100%;
  }

  #rx-screen-2 .rx-package-grid[data-count="5"] .rx-package-card__body {
    inline-size: 100%;
    align-content: start;
    gap: var(--rx-space-1);
  }

  #rx-screen-2 .rx-package-grid[data-count="5"] .rx-package-card__body strong {
    font-size: 1.24rem;
    line-height: 1.02;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }

  #rx-screen-2 .rx-package-grid[data-count="5"] .rx-package-card__body small {
    font-size: 0.84rem;
    line-height: 1.24;
    overflow-wrap: anywhere;
  }

  #rx-screen-2 .rx-package-grid[data-count="5"] .rx-package-card__features {
    gap: var(--rx-space-1);
  }

  #rx-screen-2
    .rx-package-grid[data-count="5"]
    .rx-package-card__features
    [role="listitem"],
  #rx-screen-2 .rx-package-grid[data-count="5"] .rx-package-card__features li {
    white-space: normal;
    line-height: 1.08;
  }

  #rx-screen-2 .rx-package-grid[data-count="5"] .rx-package-card__price {
    margin-block-start: var(--rx-space-1);
    font-size: 0.92rem;
  }

  #rx-screen-2 .rx-package-grid[data-count="5"] .rx-package-card__select {
    inline-size: 100%;
    min-inline-size: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--rx-space-1);
  }

  #rx-screen-2 .rx-package-grid[data-count="5"] .rx-package-card__select b {
    white-space: nowrap;
  }

  .rx-package-card {
    grid-template-columns: 4.35rem minmax(0, 1fr) auto;
    min-block-size: 0;
    block-size: 100%;
    padding: 0.85rem;
  }

  .rx-package-card__body strong {
    font-size: clamp(1.22rem, 2.1vw, 1.55rem);
  }

  .rx-package-card__body small {
    font-size: clamp(0.84rem, 1.25vw, 0.95rem);
  }

  #rx-screen-3 .rx-book-form {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto auto;
    max-inline-size: 42rem;
    min-block-size: 0;
  }

  #rx-screen-3 .rx-section-head p {
    display: block;
  }

  #rx-screen-3 .rx-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  #rx-screen-3 .rx-date-chips {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  #rx-screen-3 .rx-date-chip--wide {
    grid-column: auto;
  }
}

@media (max-width: 699px) {
  .rx-book-app {
    block-size: calc(100dvh - var(--rxb-admin-offset));
    min-block-size: 0;
    padding-block: calc(0.38rem + var(--rxb-safe-top))
      calc(0.42rem + var(--rxb-safe-bottom));
    gap: clamp(0.26rem, 0.85dvh, 0.42rem);
  }

  .rx-book-panel,
  .rx-book-form {
    block-size: 100%;
    min-block-size: 0;
    gap: clamp(0.3rem, 0.95dvh, 0.5rem);
  }

  #rx-screen-2 .rx-book-panel {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
  }

  #rx-screen-2 .rx-section-head {
    padding-block-start: 0;
  }

  #rx-screen-2 .rx-section-head h2,
  #rx-screen-3 .rx-section-head h2 {
    margin-block-start: 0.34rem;
  }

  #rx-screen-2 .rx-package-grid {
    block-size: 100%;
    min-block-size: 0;
    overflow: hidden;
    align-content: stretch;
    gap: clamp(0.3rem, 0.9dvh, 0.48rem);
  }

  #rx-screen-2 .rx-package-grid[data-count="3"] {
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  #rx-screen-2 .rx-package-grid[data-count="4"] {
    grid-template-rows: repeat(4, minmax(0, 1fr));
  }
  #rx-screen-2 .rx-package-grid[data-count="5"] {
    grid-template-rows: repeat(5, minmax(0, 1fr));
  }

  .rx-package-card {
    min-block-size: 0;
    block-size: 100%;
    grid-template-columns: clamp(2.55rem, 10.5vw, 3.3rem) minmax(0, 1fr) auto;
    padding: clamp(0.38rem, 1dvh, 0.58rem);
    gap: clamp(0.36rem, 1.6vw, 0.58rem);
  }

  .rx-package-card__body {
    gap: clamp(0.08rem, 0.36dvh, 0.18rem);
  }

  .rx-package-card__features {
    display: flex;
    max-block-size: 1.25rem;
    overflow: hidden;
  }

  .rx-package-card__features [role="listitem"],
  .rx-package-card__features li {
    min-block-size: 1rem;
    padding: 0.05rem 0.32rem;
    font-size: clamp(0.46rem, 1.95vw, 0.56rem);
  }

  #rx-screen-3 .rx-book-form {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto auto;
    min-block-size: 0;
    overflow: hidden;
  }

  #rx-screen-3 .rx-section-head p,
  #rx-screen-3 .rx-safe-note {
    display: none;
  }

  #rx-screen-3 .rx-section-head {
    padding-block-start: 0;
  }

  #rx-screen-3 .rx-section-head h2 {
    font-size: clamp(1.32rem, 5.7vw, 1.75rem);
  }

  #rx-screen-3 .rx-selected-pill {
    min-block-size: 1.32rem;
    font-size: 0.62rem;
  }

  #rx-screen-3 .rx-summary-card {
    grid-template-columns: clamp(2.55rem, 10vw, 3rem) minmax(0, 1fr) auto;
    gap: clamp(0.42rem, 1.6vw, 0.62rem);
    padding: clamp(0.45rem, 1.08dvh, 0.62rem);
    min-block-size: 0;
  }

  #rx-screen-3 .rx-summary-card__icon {
    display: grid;
    inline-size: clamp(2.35rem, 9.4vw, 2.8rem);
    block-size: clamp(2.35rem, 9.4vw, 2.8rem);
    border-radius: 0.82rem;
  }

  #rx-screen-3 .rx-summary-card small {
    font-size: clamp(0.5rem, 2vw, 0.58rem);
    line-height: 1;
  }

  #rx-screen-3 .rx-summary-card strong {
    margin-block-start: 0.04rem;
    font-size: clamp(1.02rem, 4.4vw, 1.22rem);
    line-height: 1;
  }

  #rx-screen-3 .rx-summary-card em {
    margin-block-start: 0.08rem;
    font-size: clamp(0.62rem, 2.55vw, 0.72rem);
    line-height: 1.1;
  }

  #rx-screen-3 .rx-summary-change {
    gap: 0.24rem;
    padding: 0.38rem 0.5rem;
    border: 1px solid rgb(var(--rx-ruby-rgb) / 0.22);
    border-radius: var(--rxb-pill);
    background: rgb(var(--rx-ruby-rgb) / 0.06);
    font-size: clamp(0.62rem, 2.45vw, 0.72rem);
    line-height: 1;
    text-decoration: none;
  }

  #rx-screen-3 .rx-summary-change svg {
    inline-size: 0.82rem;
    block-size: 0.82rem;
  }

  #rx-screen-3 .rx-form-grid,
  #rx-screen-3 .rx-date-section {
    padding: clamp(0.45rem, 1.05dvh, 0.6rem);
    gap: clamp(0.28rem, 0.78dvh, 0.4rem);
  }

  #rx-screen-3 .rx-field {
    gap: 0.16rem;
  }

  #rx-screen-3 .rx-field span,
  #rx-screen-3 .rx-date-section h3 {
    font-size: clamp(0.56rem, 2.25vw, 0.66rem);
  }

  #rx-screen-3 .rx-field input,
  #rx-screen-3 .rx-phone-field {
    min-block-size: clamp(2rem, 4.75dvh, 2.4rem);
  }

  #rx-screen-3 .rx-field input,
  #rx-screen-3 .rx-phone-field input {
    font-size: clamp(0.76rem, 3vw, 0.9rem);
  }

  #rx-screen-3 .rx-phone-field__wa {
    inline-size: 1.8rem;
    block-size: 1.8rem;
    margin-right: 0.3rem;
  }

  #rx-screen-3 .rx-date-section {
    min-block-size: 0;
    overflow: hidden;
  }

  #rx-screen-3 .rx-date-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.25rem, 0.75dvh, 0.36rem);
  }

  #rx-screen-3 .rx-date-chip {
    min-block-size: clamp(1.95rem, 4.55dvh, 2.38rem);
    font-size: clamp(0.78rem, 3.25vw, 0.94rem);
    gap: 0.38rem;
  }

  #rx-screen-3 .rx-date-chip svg {
    inline-size: 0.95rem;
    block-size: 0.95rem;
  }

  #rx-screen-3 .rx-submit-btn {
    min-block-size: clamp(2.35rem, 5.15dvh, 2.74rem);
    font-size: clamp(0.98rem, 4.2vw, 1.18rem);
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 699px) and (max-height: 720px) {
  #rx-screen-3 .rx-summary-card__icon,
  #rx-screen-3 .rx-phone-field__wa {
    display: grid;
  }

  #rx-screen-3 .rx-form-grid,
  #rx-screen-3 .rx-date-section,
  #rx-screen-3 .rx-summary-card {
    padding-block: 0.42rem;
  }
}

@media (max-width: 699px) and (max-height: 650px) {
  #rx-screen-3 .rx-summary-card__icon,
  #rx-screen-3 .rx-phone-field__wa {
    display: none;
  }

  #rx-screen-3 .rx-summary-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  #rx-screen-3 .rx-date-chip {
    min-block-size: 1.82rem;
  }
}

/* ── Final fixed request + receipt polish ───────────────────────── */
:root {
  --rxb-confirm: var(--rxb-gold);
  --rxb-confirm-soft: rgb(var(--rx-gold-rgb) / 0.1);
  --rxb-confirm-line: rgb(var(--rx-gold-rgb) / 0.26);
}

.rx-form-error:empty {
  display: none;
}

#rx-screen-3 .rx-summary-card {
  grid-template-columns: clamp(3.05rem, 11vw, 3.55rem) minmax(0, 1fr) auto;
  min-block-size: clamp(4.25rem, 10.4dvh, 5.15rem);
  padding: clamp(0.68rem, 1.45dvh, 0.86rem);
  gap: clamp(0.62rem, 2.2vw, 0.85rem);
  border: 1px solid rgb(var(--rx-ruby-rgb) / 0.2);
  background:
    radial-gradient(
      circle at 0% 0%,
      rgb(var(--rx-gold-rgb) / 0.16),
      transparent 6rem
    ),
    rgb(var(--rx-champagne-rgb) / 0.9);
  box-shadow: 0 0.8rem 2.2rem rgb(var(--rx-brand-deep-rgb) / 0.08);
}

#rx-screen-3 .rx-summary-card__text {
  display: grid;
  align-content: center;
  min-inline-size: 0;
  gap: 0.08rem;
}

#rx-screen-3 .rx-summary-card__icon {
  inline-size: clamp(2.72rem, 10.4vw, 3.2rem);
  block-size: clamp(2.72rem, 10.4vw, 3.2rem);
  border-radius: 1.05rem;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgb(var(--rx-ruby-rgb) / 0.16),
      transparent 3.5rem
    ),
    rgb(var(--rx-champagne-rgb) / 0.98);
  box-shadow: inset 0 0 0 1px rgb(var(--rx-ruby-rgb) / 0.11);
}

#rx-screen-3 .rx-summary-card small {
  font-size: clamp(0.58rem, 2.15vw, 0.7rem);
  line-height: 1.05;
  letter-spacing: 0.09em;
}

#rx-screen-3 .rx-summary-card strong {
  margin: 0;
  font-size: clamp(1.22rem, 4.85vw, 1.55rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

#rx-screen-3 .rx-summary-card em {
  margin: 0;
  font-size: clamp(0.7rem, 2.65vw, 0.84rem);
  line-height: 1.16;
  overflow-wrap: anywhere;
}

#rx-screen-3 .rx-summary-change {
  align-self: center;
  min-block-size: clamp(2.2rem, 5.1dvh, 2.65rem);
  padding-inline: clamp(0.62rem, 2.6vw, 0.92rem);
  border: 1px solid rgb(var(--rx-ruby-rgb) / 0.22);
  border-radius: var(--rxb-pill);
  background: rgb(var(--rx-ruby-rgb) / 0.07);
  box-shadow: inset 0 1px 0 rgb(var(--rx-champagne-rgb) / 0.82);
  text-decoration: none;
}

#rx-screen-3 .rx-date-section {
  align-content: start;
  align-self: start;
  min-block-size: auto;
  block-size: auto;
  padding: clamp(0.62rem, 1.35dvh, 0.78rem);
  gap: clamp(0.42rem, 0.9dvh, 0.58rem);
}

#rx-screen-3 .rx-date-chips {
  align-content: start;
  gap: clamp(0.42rem, 0.92dvh, 0.58rem);
}

#rx-screen-3 .rx-date-chip {
  min-block-size: clamp(2.28rem, 5.1dvh, 2.78rem);
  font-weight: 850;
}

#rx-screen-3 .rx-date-chip--wide {
  min-block-size: clamp(2.26rem, 4.95dvh, 2.7rem);
}

#rx-screen-3 .rx-date-other {
  margin: 0;
}

#rx-screen-3 .rx-date-other input {
  min-block-size: clamp(2.2rem, 4.9dvh, 2.62rem);
}

#rx-screen-success .rx-book-panel {
  max-inline-size: 32rem;
  margin-inline: auto;
  gap: clamp(0.7rem, 1.4dvh, 0.95rem);
}

.rx-success-panel {
  position: relative;
  padding: clamp(1.1rem, 2.2dvh, 1.55rem) clamp(0.88rem, 3vw, 1.25rem);
  justify-content: center;
  background:
    radial-gradient(
      circle at 50% 0%,
      var(--rxb-confirm-soft),
      transparent 13rem
    ),
    rgb(var(--rx-champagne-rgb) / 0.92);
}

.rx-success-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: fit-content;
  margin-inline: auto;
  padding: 0.35rem 0.82rem;
  border: 1px solid var(--rxb-confirm-line);
  border-radius: var(--rxb-pill);
  background: var(--rxb-confirm-soft);
  color: var(--rxb-confirm);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rx-success-visual {
  inline-size: 6rem;
  block-size: 4.6rem;
  margin-inline: auto;
  border-radius: 1.4rem;
  background:
    linear-gradient(
      90deg,
      transparent 0 0.7rem,
      var(--rxb-confirm-line) 0.7rem 0.78rem,
      transparent 0.78rem calc(100% - 0.78rem),
      var(--rxb-confirm-line) calc(100% - 0.78rem) calc(100% - 0.7rem),
      transparent calc(100% - 0.7rem)
    ),
    linear-gradient(
      135deg,
      rgb(var(--rx-gold-rgb) / 0.15),
      rgb(var(--rx-champagne-rgb) / 0.92)
    );
  border: 1px solid var(--rxb-confirm-line);
  box-shadow: 0 1.1rem 2.2rem rgb(var(--rx-gold-rgb) / 0.12);
}

.rx-success-mark {
  inline-size: 3.05rem;
  block-size: 3.05rem;
  border-radius: var(--rxb-pill);
  background: var(--rxb-confirm);
  color: var(--rxb-champagne);
  font-size: 1.65rem;
  box-shadow: inset 0 0 0 0.28rem rgb(var(--rx-champagne-rgb) / 0.2);
}

.rx-success-panel h2 {
  margin: 0;
  color: var(--rxb-noir);
}

.rx-success-panel p {
  max-inline-size: 28rem;
  font-size: clamp(0.88rem, 2.4vw, 1rem);
}

.rx-success-summary {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--rxb-confirm-line);
  border-radius: 1.25rem;
  background:
    linear-gradient(90deg, rgb(var(--rx-gold-rgb) / 0.11), transparent 0.58rem),
    rgb(var(--rx-champagne-rgb) / 0.92);
  box-shadow: 0 0.9rem 2rem rgb(var(--rx-brand-deep-rgb) / 0.07);
}

.rx-success-summary::before,
.rx-success-summary::after {
  content: "";
  position: absolute;
  inset-inline-start: -0.55rem;
  inline-size: 1rem;
  block-size: 1rem;
  border-radius: 50%;
  background: var(--rxb-champagne);
  border: 1px solid var(--rxb-confirm-line);
}

.rx-success-summary::before {
  inset-block-start: 1.35rem;
}
.rx-success-summary::after {
  inset-block-end: 1.35rem;
}

.rx-success-summary__title {
  color: var(--rxb-confirm);
}

.rx-success-summary__row svg {
  color: var(--rxb-confirm);
}

.rx-success-summary__total {
  border-top-color: var(--rxb-confirm-line);
}

.rx-success-summary__total b {
  color: var(--rxb-confirm);
}

.rx-success-whatsapp-note {
  border-color: var(--rxb-confirm-line);
  background: var(--rxb-confirm-soft);
  color: var(--rxb-confirm);
}

@media (max-width: 699px) {
  #rx-screen-3 .rx-book-form {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto auto;
    align-content: stretch;
  }

  #rx-screen-3 .rx-form-error {
    align-self: end;
  }
  #rx-screen-3 .rx-submit-btn {
    align-self: end;
  }

  #rx-screen-3 .rx-form-grid {
    padding: clamp(0.58rem, 1.2dvh, 0.72rem);
    gap: clamp(0.38rem, 0.82dvh, 0.5rem);
  }

  #rx-screen-3 .rx-field input,
  #rx-screen-3 .rx-phone-field {
    min-block-size: clamp(2.24rem, 4.9dvh, 2.68rem);
  }

  #rx-screen-3 .rx-date-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #rx-screen-3 .rx-date-chip--wide {
    grid-column: 1 / -1;
  }

  #rx-screen-3 .rx-submit-btn {
    min-block-size: clamp(2.48rem, 5.3dvh, 2.92rem);
    margin: 0;
  }

  #rx-screen-success .rx-book-panel {
    block-size: 100%;
    min-block-size: 0;
  }

  .rx-success-summary {
    gap: 0.52rem;
    padding: 0.86rem;
  }

  .rx-success-whatsapp-note,
  .rx-secondary-btn {
    min-block-size: 2.85rem;
  }
}

@media (max-width: 699px) and (max-height: 720px) {
  #rx-screen-3 .rx-summary-card {
    min-block-size: clamp(3.8rem, 9.4dvh, 4.4rem);
    padding-block: 0.54rem;
  }

  #rx-screen-3 .rx-date-chip {
    min-block-size: clamp(2.02rem, 4.55dvh, 2.3rem);
  }

  #rx-screen-3 .rx-field input,
  #rx-screen-3 .rx-phone-field {
    min-block-size: clamp(2.02rem, 4.5dvh, 2.34rem);
  }

  .rx-success-visual {
    inline-size: 5.35rem;
    block-size: 4rem;
  }
}

@media (max-width: 699px) and (max-height: 650px) {
  #rx-screen-3 .rx-summary-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  #rx-screen-3 .rx-summary-card__icon {
    display: none;
  }

  #rx-screen-3 .rx-section-head h2 {
    font-size: clamp(1.2rem, 5vw, 1.45rem);
  }

  #rx-screen-3 .rx-date-chip {
    min-block-size: 1.84rem;
  }
}

/* Coupon Styles & WhatsApp Deep Link styling added for hardening */
.rx-coupon-wrapper {
  margin-block-start: var(--rx-space-0);
}

.rx-coupon-input-group {
  display: flex;
  gap: var(--rx-space-2);
  margin-block-start: var(--rx-space-1);
}

.rx-coupon-input-group input {
  text-transform: uppercase;
}

.rx-coupon-btn {
  padding-inline: var(--rx-space-4);
  border-radius: var(--rx-pill);
  border: 1px solid rgb(var(--rx-brand-deep-rgb) / 0.16);
  background: var(--rx-white);
  color: var(--rx-noir);
  font-weight: 700;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgb(var(--rx-champagne-rgb) / 0.9);
  transition:
    background var(--rx-motion-fast) var(--rx-ease-standard),
    border-color var(--rx-motion-fast) var(--rx-ease-standard);
  white-space: nowrap;
}

.rx-coupon-btn:hover:not(:disabled) {
  background: var(--rx-champagne-soft);
  border-color: rgb(var(--rx-brand-deep-rgb) / 0.32);
}

.rx-coupon-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.rx-coupon-status {
  display: block;
  margin-block-start: var(--rx-space-1);
  font-size: var(--rx-type-caption);
  font-weight: 700;
  min-height: 1.25rem;
}

.rx-coupon-status:empty {
  display: none;
}

.rx-coupon-status.is-success {
  color: var(--rx-success);
}

.rx-coupon-status.is-error {
  color: var(--rx-ruby);
}

.rx-coupon-status.is-loading {
  color: var(--rx-slate);
}

.rx-error-link {
  color: var(--rx-ruby);
  text-decoration: underline;
  font-weight: 700;
  margin-inline-start: var(--rx-space-1);
  display: inline-block;
}

.rx-error-link:hover {
  color: var(--rx-ruby-hover);
}
