/* Ledbirting — DOOH Iceland */

:root {
  --bg-deep: #120810;
  --bg-surface: #1a0f16;
  --bg-elevated: #24141f;
  --bg-card: #1e1219;
  --pink-bright: #ff2d8a;
  --pink-glow: #ff4da6;
  --pink-muted: #c4367a;
  --pink-dim: #6b2d4f;
  --text-primary: #f5e8ef;
  --text-secondary: #b89aab;
  --text-muted: #7a5c6e;
  --border: rgba(255, 45, 138, 0.12);
  --border-hover: rgba(255, 45, 138, 0.28);
  --glow: rgba(255, 45, 138, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Ambient mystique background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(255, 45, 138, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(180, 50, 120, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(100, 30, 70, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 8, 16, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo {
  display: block;
  object-fit: contain;
}

.site-logo--nav {
  height: 34px;
  width: auto;
  max-width: 200px;
}

.site-logo--auth {
  height: 52px;
  width: auto;
  max-width: 280px;
  margin: 0 auto;
}

.nav__logo-mark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--pink-bright), var(--pink-muted));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 0 20px var(--glow);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav__link {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav__link:hover {
  color: var(--text-primary);
  background: rgba(255, 45, 138, 0.06);
}

.nav__link--active {
  color: var(--pink-bright);
  background: rgba(255, 45, 138, 0.1);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn--primary {
  background: var(--pink-bright);
  color: white;
  box-shadow: 0 4px 24px rgba(255, 45, 138, 0.35);
}

.btn--primary:hover {
  background: var(--pink-glow);
  transform: translateY(-1px);
  box-shadow: 0 6px 32px rgba(255, 45, 138, 0.45);
}

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn--secondary:hover {
  border-color: var(--pink-bright);
  background: rgba(255, 45, 138, 0.06);
}

.btn--full {
  width: 100%;
}

/* Hero */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-bright);
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(180deg, var(--text-primary) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats */
.stats {
  padding: 60px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.stat:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 40px var(--glow);
}

.stat__number {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--pink-bright);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Section */
.section {
  padding: 80px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-muted);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

/* Features */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.feature__icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 45, 138, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.feature__title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* CTA band */
.cta-band {
  padding: 60px 0 100px;
}

.cta-band__inner {
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band__inner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band__title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  position: relative;
}

.cta-band__text {
  color: var(--text-secondary);
  margin-bottom: 28px;
  position: relative;
}

/* Location cards */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.location-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 48px var(--glow);
}

.location-card__visual {
  height: 180px;
  background: linear-gradient(160deg, var(--bg-elevated) 0%, rgba(255, 45, 138, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.location-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--bg-card) 100%);
}

.location-card__screen {
  width: 80px;
  height: 120px;
  background: var(--bg-deep);
  border: 2px solid var(--pink-dim);
  border-radius: 6px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px var(--glow);
}

.location-card__screen::before {
  content: "";
  position: absolute;
  inset: 6px;
  background: linear-gradient(180deg, rgba(255, 45, 138, 0.3) 0%, rgba(255, 45, 138, 0.05) 100%);
  border-radius: 3px;
}

.location-card__body {
  padding: 24px 28px;
}

.location-card__region {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-bright);
  margin-bottom: 6px;
}

.location-card__name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.location-card__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.location-card__tag {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.location-card__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.location-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.location-card__price {
  font-size: 0.9375rem;
  font-weight: 600;
}

.location-card__price span {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.8125rem;
}

/* Filter bar */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.filter-btn {
  padding: 8px 20px;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn--active {
  color: var(--pink-bright);
  border-color: var(--pink-dim);
  background: rgba(255, 45, 138, 0.08);
}

/* Empty page */
.empty-state {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px;
  text-align: center;
}

.empty-state__inner {
  max-width: 400px;
}

.empty-state__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: rgba(255, 45, 138, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0.6;
}

.empty-state__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.empty-state__text {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  padding: 80px 0 100px;
}

.contact-info__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.contact-info__text {
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 45, 138, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail__value {
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink-dim);
  box-shadow: 0 0 0 3px rgba(255, 45, 138, 0.1);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237a5c6e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-surface);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Footer */
.footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer__links a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--pink-bright);
}

/* Checkout flow */
.checkout {
  padding: 40px 0 80px;
}

.checkout__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
}

.checkout__main {
  min-width: 0;
}

.checkout-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity var(--transition), border-color var(--transition);
}

.checkout-step--active,
.checkout-step--done {
  opacity: 1;
}

.checkout-step--active {
  border-color: var(--pink-dim);
  background: rgba(255, 45, 138, 0.08);
}

.checkout-step--done .checkout-step__num {
  background: var(--pink-muted);
}

.checkout-step__num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--pink-dim);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-step--active .checkout-step__num {
  background: var(--pink-bright);
}

.checkout-step__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

.checkout-step--active .checkout-step__label {
  color: var(--text-primary);
}

.checkout-panel {
  display: none;
}

.checkout-panel--active {
  display: block;
}

.checkout-panel__header {
  margin-bottom: 28px;
}

.checkout-panel__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.checkout-panel__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.checkout-screens {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.checkout-screens--compact {
  grid-template-columns: 1fr;
  max-height: 360px;
  overflow-y: auto;
}

.screen-pick {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  font-family: var(--font);
  color: inherit;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.screen-pick:hover {
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.screen-pick--selected {
  border-color: var(--pink-bright);
  box-shadow: 0 0 0 1px var(--pink-bright), 0 8px 32px var(--glow);
}

.screen-pick--compact {
  flex-direction: row;
}

.screen-pick--compact .screen-pick__visual {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.screen-pick--compact .screen-pick__body {
  padding: 12px 16px;
}

.screen-pick__visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.screen-pick__display {
  position: relative;
  width: 48px;
  height: 72px;
  background: var(--bg-deep);
  border: 2px solid var(--pink-dim);
  border-radius: 4px;
  box-shadow: 0 0 20px var(--glow);
}

.screen-pick__display::before {
  content: "";
  position: absolute;
  inset: 4px;
  background: linear-gradient(180deg, rgba(255, 45, 138, 0.35) 0%, rgba(255, 45, 138, 0.05) 100%);
  border-radius: 2px;
}

.screen-pick__visual {
  position: relative;
}

.screen-pick__check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  background: var(--pink-bright);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.screen-pick__body {
  padding: 16px 18px;
}

.screen-pick__region {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-bright);
  margin-bottom: 4px;
}

.screen-pick__name {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.screen-pick__price {
  font-size: 0.8125rem;
  font-weight: 600;
}

.screen-pick__price span {
  font-weight: 400;
  color: var(--text-muted);
}

.package-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.package-empty {
  color: var(--text-muted);
  font-size: 0.9375rem;
  padding: 24px;
  text-align: center;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
}

.package-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
}

.package-item__visual {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.package-item__visual .screen-pick__display {
  width: 28px;
  height: 42px;
}

.package-item__info {
  flex: 1;
  min-width: 0;
}

.package-item__region {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink-muted);
}

.package-item__name {
  font-size: 0.9375rem;
  font-weight: 600;
}

.package-item__price {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.package-item__remove {
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 45, 138, 0.08);
  color: var(--text-muted);
  border-radius: 8px;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  transition: background var(--transition), color var(--transition);
}

.package-item__remove:hover {
  background: rgba(255, 45, 138, 0.18);
  color: var(--pink-bright);
}

.package-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.add-screens-panel {
  margin-top: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.add-screens-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.add-screens-panel__title {
  font-size: 1rem;
  font-weight: 600;
}

.add-screens-panel__close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

.add-screens-panel__close:hover {
  color: var(--text-primary);
}

.schedule-toggle {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.schedule-toggle__option {
  cursor: pointer;
}

.schedule-toggle__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.schedule-toggle__card {
  display: block;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}

.schedule-toggle__option input:checked + .schedule-toggle__card {
  border-color: var(--pink-bright);
  background: rgba(255, 45, 138, 0.06);
}

.schedule-toggle__title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.schedule-toggle__text {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.schedule-form {
  margin-bottom: 28px;
}

.per-screen-schedule {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
}

.per-screen-schedule__name {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.review-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px 0;
  margin-bottom: 28px;
}

.review-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}

.review-item:last-of-type {
  border-bottom: none;
}

.review-item__name {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.review-item__meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.review-item__price {
  font-size: 0.9375rem;
  font-weight: 600;
  white-space: nowrap;
}

.review-total {
  display: flex;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 1.125rem;
  font-weight: 700;
  border-top: 1px solid var(--border-hover);
  color: var(--pink-bright);
}

.payment-section__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.payment-option {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.payment-option--active {
  border-color: var(--pink-dim);
}

.payment-option__header {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.payment-option__icon {
  font-size: 1.5rem;
}

.payment-option__name {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.payment-option__desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.payment-form {
  padding: 24px;
}

.confirmation {
  text-align: center;
  padding: 48px 24px;
  max-width: 480px;
  margin: 0 auto;
}

.confirmation__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: var(--pink-bright);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(255, 45, 138, 0.4);
}

.confirmation__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.confirmation__text {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.confirmation__ref {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--pink-bright);
}

.confirmation__note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Live cart sidebar */
.checkout-cart {
  position: sticky;
  top: 96px;
}

.checkout-cart__inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.checkout-cart__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.checkout-cart__empty {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  padding: 16px 0;
}

.checkout-cart__item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.checkout-cart__item:last-child {
  border-bottom: none;
}

.checkout-cart__item-name {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 2px;
}

.checkout-cart__item-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.checkout-cart__item-price {
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}

.checkout-cart__totals {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-hover);
}

.checkout-cart__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.checkout-cart__row--total {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pink-bright);
  margin-bottom: 0;
  margin-top: 8px;
}

/* Auth gate */
body.auth-pending .page {
  display: none !important;
}

body.auth-ready .page {
  display: flex;
}

body.auth-ready #auth-gate {
  display: none !important;
}

body.auth-pending #auth-gate {
  display: flex;
}

.auth-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg-deep);
}

.auth-gate__card {
  width: 100%;
  max-width: 400px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.auth-gate__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.auth-gate__title {
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.auth-gate__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.6;
}

.auth-gate__error {
  font-size: 0.8125rem;
  color: #ff6b8a;
  margin-bottom: 12px;
  min-height: 1.25rem;
}

.nav__signout-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

.nav__user {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav__signout-btn {
  padding: 8px 16px;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.nav__signout-btn:hover {
  border-color: var(--pink-dim);
  color: var(--pink-bright);
}

.locations-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 48px 24px;
  font-size: 0.9375rem;
}

.locations-loading--error {
  color: #ff6b8a;
}

.location-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.location-card__book {
  padding: 10px 22px;
  font-size: 0.8125rem;
}

.screen-pick__img {
  width: 48px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .checkout__layout {
    grid-template-columns: 1fr;
  }

  .checkout-cart {
    position: static;
    order: -1;
  }

  .checkout-screens {
    grid-template-columns: 1fr;
  }
  .stats__grid,
  .features__grid {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: block;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(18, 8, 16, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }

  .nav__links--open {
    display: flex;
  }

  .nav__link {
    width: 100%;
    padding: 12px 16px;
  }

  .hero {
    padding: 72px 0 60px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .nav__signout-item {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    padding-top: 8px;
    gap: 8px;
  }

  .nav__user {
    display: block;
    max-width: none;
    text-align: center;
    padding: 8px 16px;
  }

  .nav__signout-btn {
    width: 100%;
  }
}
