/* Royal Binge Booking UI */
.rbc-shortcode-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.rbc-booking-app {
  --rbc-text: #111;
  --rbc-text-muted: #4b5563;
  --rbc-bg: #f9fafb;
  --rbc-card: #fff;
  --rbc-border: #e5e7eb;
  --rbc-theme: #ffd700;
  --rbc-danger: #dc2626;
  --rbc-success: #059669;
  --rbc-slot-active: #15803d;
  --rbc-slot-selected: #15803d;
  --rbc-slot-inactive: #9ca3af;
  --rbc-slot-hover: #f0fdf4;
  --rbc-slot-hover-text: #15803d;
  --rbc-sticky-top: 4.5rem;
  --rbc-heading-font: inherit;
  --rbc-body-font: inherit;
  --rbc-heading-color: #111;
  color: var(--rbc-text);
  font-family: var(--rbc-body-font);
  line-height: 1.5;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

.rbc-booking-app .rbc-title,
.rbc-booking-app h1,
.rbc-booking-app h2,
.rbc-booking-app h3 {
  font-family: var(--rbc-heading-font);
  color: var(--rbc-heading-color);
}

.rbc-booking-app * {
  box-sizing: border-box;
}

.rbc-layout {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

.rbc-layout.rbc-layout-theatre {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 1rem;
}

@media (min-width: 1024px) {
  .rbc-layout.rbc-layout-theatre {
    padding: 1.5rem 2rem;
  }
}

.rbc-layout-theatre .rbc-main-card {
  border: none;
  box-shadow: none;
  padding: 0;
  background: transparent;
}

@media (min-width: 1024px) {
  .rbc-layout {
    padding: 2rem 1.5rem;
  }
}

.rbc-main-card {
  background: var(--rbc-card);
  border: 1px solid var(--rbc-border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.rbc-sidebar {
  background: var(--rbc-card);
  border: 1px solid var(--rbc-border);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.rbc-title {
  font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  font-weight: 700;
  color: var(--rbc-text);
  margin: 0 0 0.25rem;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rbc-subtitle {
  font-size: 0.875rem;
  color: var(--rbc-text-muted);
  margin: 0 0 1.5rem;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.rbc-step-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.rbc-step-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background: #f3f4f6;
  color: var(--rbc-text-muted);
}

.rbc-step-pill.completed {
  background: #e5e7eb;
  color: var(--rbc-text);
}

.rbc-step-pill.active {
  background: var(--rbc-theme);
  color: var(--rbc-text);
}

.rbc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  color: var(--rbc-text);
  background: var(--rbc-theme);
  transition: opacity 0.15s;
}

.rbc-btn:hover:not(:disabled) {
  opacity: 0.9;
}

.rbc-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.rbc-btn-secondary {
  background: #f3f4f6;
  color: var(--rbc-text);
}

.rbc-btn-block {
  width: 100%;
}

.rbc-btn-sm {
  padding: 0.4rem 0.75rem;
  font-size: 0.8125rem;
}

.rbc-back-link,
.rbc-skip-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--rbc-text);
  text-decoration: none;
  margin-bottom: 1rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  background: #fff;
  line-height: 1.2;
}

.rbc-back-link:hover,
.rbc-skip-link:hover {
  text-decoration: none;
  border-color: #9ca3af;
  background: #f9fafb;
}

.rbc-chevron-left {
  display: inline-block;
  font-size: 1.15em;
  font-weight: 700;
  line-height: 1;
  margin-top: -0.05em;
}

.rbc-skip-link {
  margin-bottom: 0;
  color: var(--rbc-text-muted);
}

/* Location / Date */
.rbc-location-grid {
  display: grid;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .rbc-location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rbc-location-btn {
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--rbc-border);
  border-radius: 0.75rem;
  background: var(--rbc-card);
  font-weight: 600;
  color: var(--rbc-text);
  cursor: pointer;
  text-align: center;
}

.rbc-location-btn.selected,
.rbc-location-btn:hover {
  border-color: var(--rbc-theme);
  background: #fffbeb;
}

.rbc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rbc-layout-location {
  max-width: 52rem;
}

.rbc-main-card-location {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.rbc-location-hero {
  width: 100%;
  max-width: 44rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 1.5rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid var(--rbc-border, #e5e7eb);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  color: var(--rbc-text, #111);
  text-align: center;
}

.rbc-location-hero-title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--rbc-heading-color, var(--rbc-text, #111));
  line-height: 1.2;
}

.rbc-location-hero-sub {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--rbc-text-muted, #4b5563);
}

.rbc-location-pills {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  max-width: 100%;
  margin: 0 auto 1.35rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: #f3f4f6;
}

.rbc-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--rbc-text-muted, #4b5563);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.rbc-location-pill-icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  color: currentColor;
}

.rbc-location-pill-icon .rbc-icon,
.rbc-location-pill-icon svg {
  width: 1rem;
  height: 1rem;
  display: block;
}

.rbc-location-pill.selected {
  background: var(--rbc-theme, #ffd700);
  color: #111;
}

.rbc-location-pill:not(.selected):hover {
  color: var(--rbc-text, #111);
  background: #e5e7eb;
}

.rbc-location-select-wrap {
  max-width: 22rem;
  margin: 0 auto 1.35rem;
}

.rbc-location-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--rbc-border, #e5e7eb);
  border-radius: 0.75rem;
  background: #fff;
  color: var(--rbc-text, #111);
  font-size: 0.9375rem;
  font-weight: 600;
}

.rbc-location-hero .rbc-date-strip-wrap {
  margin-bottom: 1.25rem;
}

.rbc-location-hero .rbc-date-strip {
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .rbc-location-hero .rbc-date-strip {
    justify-content: center;
  }
}

.rbc-location-hero .rbc-date-chip {
  background: #fff;
  border-color: color-mix(in srgb, var(--rbc-theme, #ffd700) 55%, #d1d5db);
  color: var(--rbc-text, #111);
}

.rbc-location-hero .rbc-date-chip.selected {
  background: var(--rbc-theme, #ffd700);
  border-color: var(--rbc-theme, #ffd700);
  color: #111;
}

.rbc-location-hero .rbc-date-chip:hover,
.rbc-location-hero .rbc-date-chip:focus {
  border-color: var(--rbc-theme, #ffd700);
}

.rbc-location-hero-foot {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  margin-top: 0.25rem;
}

@media (min-width: 640px) {
  .rbc-location-hero-foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
  }
}

.rbc-location-viewers {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--rbc-text-muted, #4b5563);
  text-align: left;
  line-height: 1.4;
}

.rbc-location-viewers-count {
  font-weight: 700;
  color: var(--rbc-text, #111);
}

.rbc-location-cta {
  flex-shrink: 0;
  width: 100%;
  min-width: 12rem;
  padding: 0.9rem 1.4rem;
  border: none;
  border-radius: 0.75rem;
  background: var(--rbc-theme, #ffd700);
  color: #111;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
}

@media (min-width: 640px) {
  .rbc-location-cta {
    width: auto;
  }
}

.rbc-location-cta:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.rbc-location-hero .rbc-error,
.rbc-location-hero .rbc-loading {
  text-align: left;
  margin-bottom: 1rem;
}

.rbc-date-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--rbc-border);
  border-radius: 0.75rem;
  font-size: 1rem;
  color: var(--rbc-text);
  margin-top: 1rem;
}

.rbc-date-trigger {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  width: 100%;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--rbc-border);
  border-radius: 0.75rem;
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.rbc-date-trigger-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.rbc-date-trigger-value {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.rbc-date-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(17, 24, 39, 0.45);
}

.rbc-date-modal {
  width: min(100%, 22rem);
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.rbc-date-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.rbc-date-modal-label {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.rbc-date-modal-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rbc-date-modal-month {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}

.rbc-date-nav,
.rbc-date-modal-close {
  border: 0;
  background: #f3f4f6;
  color: #111827;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.rbc-date-weekdays,
.rbc-date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.rbc-date-weekdays {
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
}

.rbc-date-cell {
  aspect-ratio: 1;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  color: #111827;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}

.rbc-date-cell.empty {
  pointer-events: none;
}

.rbc-date-cell.disabled {
  color: #d1d5db;
  cursor: not-allowed;
}

.rbc-date-cell.has-slots:not(.selected) {
  background: #fffbeb;
  color: #111827;
}

.rbc-date-cell.selected {
  background: #ffd141;
  color: #111827;
  font-weight: 700;
}

.rbc-date-modal-foot {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
}

.rbc-layout-with-sidebar {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

@media (min-width: 1024px) {
  .rbc-layout-with-sidebar {
    grid-template-columns: minmax(0, 1fr) 360px;
    padding: 2rem 1.5rem;
  }
}

.rbc-top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #111;
  color: #fff;
  border-bottom: 1px solid #222;
}

.rbc-top-bar-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.rbc-top-bar-title {
  font-size: 0.875rem;
  font-weight: 600;
}

.rbc-top-timer {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fca5a5;
  margin: 0;
}

.rbc-title-center,
.rbc-subtitle-center {
  text-align: center;
}

.rbc-theatre-header {
  margin-bottom: 0.75rem;
}

.rbc-theatre-intro {
  margin-bottom: 0.75rem !important;
}

.rbc-date-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: #9ca3af;
  margin-top: 0.5rem;
}

.rbc-theatre-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rbc-border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--rbc-card);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.rbc-theatre-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rbc-theatre-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #e5e7eb;
}

.rbc-theatre-img-placeholder {
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

.rbc-theatre-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.rbc-theatre-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 500;
}

.rbc-theatre-video {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--rbc-text);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none !important;
}

.rbc-theatre-video:hover,
.rbc-theatre-video:focus {
  text-decoration: none !important;
}

.rbc-theatre-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem;
}

.rbc-theatre-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.rbc-theatre-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.rbc-theatre-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.rbc-slots-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  background: #fef2f2;
  color: #dc2626;
  font-size: 0.6875rem;
  font-weight: 600;
}

.rbc-slots-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  animation: rbc-slots-dot-blink 2.4s ease-in-out infinite;
}

@keyframes rbc-slots-dot-blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

.rbc-slots-badge.muted {
  background: #f3f4f6;
  color: #6b7280;
}

.rbc-theatre-location {
  font-size: 0.875rem;
  color: var(--rbc-text-muted);
  margin: 0;
}

.rbc-theatre-links {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.rbc-theatre-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4b5563;
  text-decoration: none;
}

.rbc-theatre-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: #374151;
}

.rbc-theatre-features li {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  white-space: nowrap;
}

.rbc-theatre-next-step {
  margin-bottom: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #f3f4f6;
  background: #f9fafb;
  font-size: 0.6875rem;
  color: #4b5563;
}

.rbc-slot-heading {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.rbc-slot-grid-2 {
  display: grid;
  grid-template-columns: repeat(var(--rbc-slot-cols-mobile, 2), minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .rbc-slot-grid-2 {
    grid-template-columns: repeat(var(--rbc-slot-cols-desktop, 2), minmax(0, 1fr));
  }
}

.rbc-slot-grid-2 .rbc-slot-btn {
  width: 100%;
  border-radius: 9999px;
  padding: 0.55rem 0.5rem;
  font-size: var(--rbc-slot-font-mobile, 12px);
  font-weight: 600;
  border: 1.5px solid #d1d5db;
  background: var(--rbc-slot-inactive-bg, #f3f4f6);
  color: var(--rbc-slot-inactive-text, #9ca3af);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .rbc-slot-grid-2 .rbc-slot-btn {
    font-size: var(--rbc-slot-font-desktop, 12px);
  }
}

.rbc-slot-grid-2 .rbc-slot-btn svg {
  width: 0.95em;
  height: 0.95em;
  flex-shrink: 0;
}

.rbc-slot-grid-2 .rbc-slot-btn.available {
  background: var(--rbc-slot-active-bg, #fff);
  border-color: var(--rbc-slot-active, #15803d);
  color: var(--rbc-slot-active-text, #15803d);
}

.rbc-slot-grid-2 .rbc-slot-btn.available:hover {
  background: var(--rbc-slot-hover, #f0fdf4);
  color: var(--rbc-slot-hover-text, var(--rbc-slot-active-text, #15803d));
}

.rbc-slot-grid-2 .rbc-slot-btn.selected {
  border-color: var(--rbc-slot-selected, #15803d);
  background: var(--rbc-slot-selected-bg, #15803d);
  color: var(--rbc-slot-selected-text, #fff);
  box-shadow: none;
  font-weight: 700;
}

.rbc-slot-grid-2 .rbc-slot-btn.booked,
.rbc-slot-grid-2 .rbc-slot-btn.unavailable {
  background: var(--rbc-slot-inactive-bg, #f3f4f6);
  border-color: #e5e7eb;
  color: var(--rbc-slot-inactive-text, #9ca3af);
  cursor: not-allowed;
  text-decoration: line-through;
}

.rbc-slot-grid-2 .rbc-slot-btn.tomorrow:not(.disabled) {
  background: var(--rbc-slot-active-bg, #fff);
  border-color: var(--rbc-slot-active, #15803d);
  color: var(--rbc-slot-active-text, #15803d);
}

.rbc-slot-grid-2 .rbc-slot-btn.tomorrow:not(.disabled):hover {
  background: var(--rbc-slot-hover, #f0fdf4);
  color: var(--rbc-slot-hover-text, var(--rbc-slot-active-text, #15803d));
}

.rbc-slot-btn.selected {
  border-color: var(--rbc-slot-selected, #15803d);
  background: var(--rbc-slot-selected, #15803d);
  color: #fff;
  box-shadow: none;
  font-weight: 700;
}

.rbc-slot-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.rbc-theatre-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

.rbc-theatre-price {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.rbc-theatre-price-sub {
  font-size: 0.75rem;
  color: var(--rbc-text-muted);
  margin: 0;
}

.rbc-btn-reserve {
  flex-shrink: 0;
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  background: #ffd141;
  border: 1.5px solid #111827;
  color: #111827;
}

.rbc-btn-reserve:hover:not(:disabled) {
  background: #ffca28;
}

.rbc-btn-reserve:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.rbc-error-inline {
  font-size: 0.75rem;
  color: var(--rbc-danger);
  margin: 0.25rem 0 0;
}

.rbc-contact-header {
  margin-bottom: 0.5rem;
}

.rbc-field-hint {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--rbc-text-muted);
}

.rbc-phone-wrap {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--rbc-border);
  border-radius: 0.75rem;
}

.rbc-phone-code {
  border: none;
  border-right: 1px solid var(--rbc-border);
  background: #f9fafb;
  padding: 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  max-width: 4.5rem;
  min-width: 3.75rem;
}

.rbc-phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  background: #f9fafb;
  font-size: 0.875rem;
  color: var(--rbc-text);
  border-right: 1px solid var(--rbc-border);
}

.rbc-phone-wrap input {
  border: none;
  border-radius: 0;
  flex: 1;
}

.rbc-guest-box,
.rbc-section {
  margin-bottom: 1.25rem;
}

.rbc-guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  background: #f9fafb;
}

.rbc-guest-title {
  font-weight: 600;
  margin: 0 0 0.15rem;
}

.rbc-guest-sub {
  font-size: 0.875rem;
  color: #374151;
  margin: 0;
}

.rbc-qty-controls-lg {
  border: 1px solid var(--rbc-border);
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.15rem 0.35rem;
}

.rbc-choice-grid {
  display: grid;
  gap: 0.75rem;
}

.rbc-choice-grid.rbc-choice-inline {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.rbc-choice-grid.rbc-choice-inline .rbc-choice-btn {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 0.5rem;
  font-size: 0.8125rem;
  text-align: center;
}

@media (min-width: 640px) {
  .rbc-choice-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rbc-choice-grid.rbc-choice-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .rbc-choice-grid.rbc-choice-inline .rbc-choice-btn {
    text-align: left;
    padding: 1rem;
    font-size: 0.875rem;
  }
}

.rbc-choice-btn {
  padding: 1rem;
  border: 2px solid var(--rbc-border);
  border-radius: 1rem;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rbc-text);
  cursor: pointer;
  text-align: left;
}

.rbc-choice-btn.selected {
  border-color: #111;
  background: #fff;
}

.rbc-choice-btn.locked {
  background: #fff8d6;
  border-color: #fff0a8;
  color: #6b7280;
  cursor: not-allowed;
}

.rbc-summary-steps {
  display: flex;
  justify-content: space-between;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.rbc-summary-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  padding: 0;
  font-size: 0.625rem;
  font-weight: 500;
  color: #9ca3af;
  cursor: pointer;
}

.rbc-summary-step.active {
  color: var(--rbc-text);
}

.rbc-summary-step.done {
  color: #16a34a;
}

.rbc-summary-step.locked {
  cursor: not-allowed;
  opacity: 0.6;
}

.rbc-summary-step:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.rbc-summary-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: #f3f4f6;
  font-size: 0.625rem;
}

.rbc-summary-step.active .rbc-summary-step-num {
  background: #111;
  color: #fff;
}

.rbc-summary-block {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #f3f4f6;
  background: #f9fafb;
  margin-bottom: 0.75rem;
}

.rbc-summary-val {
  font-weight: 600;
  text-align: right;
}

.rbc-pay-banner {
  margin: 0.75rem 0;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  font-size: 0.875rem;
}

.rbc-pay-banner-title {
  font-weight: 600;
  color: #166534;
  margin: 0 0 0.15rem;
}

.rbc-pay-banner-sub {
  color: #15803d;
  margin: 0;
  font-size: 0.8125rem;
}

@media (min-width: 1024px) {
  .rbc-layout.rbc-layout-full {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 2rem;
  }

  .rbc-layout-full .rbc-main-card {
    max-width: none;
    width: 100%;
  }

  .rbc-layout-with-sidebar {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
  }

  .rbc-layout-with-sidebar .rbc-sidebar {
    position: sticky;
    top: calc(var(--rbc-sticky-top, 4.5rem) + 1rem);
    max-height: calc(100vh - var(--rbc-sticky-top, 4.5rem) - 2rem);
    overflow: auto;
  }

  .rbc-layout-with-sidebar .rbc-verify-inline-summary {
    display: block;
  }

  .rbc-actions-mobile-hide {
    display: none;
  }
}

@media (max-width: 1023px) {
  .rbc-layout {
    padding: 1rem;
    gap: 1rem;
  }

  .rbc-layout.rbc-layout-theatre {
    padding: 1rem;
  }

  .rbc-main-card {
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
  }

  .rbc-layout-with-sidebar .rbc-sidebar {
    display: none;
  }

  .rbc-layout-with-sidebar.rbc-has-mobile-bar,
  .rbc-layout-full.rbc-has-mobile-bar {
    padding-bottom: 8rem;
  }

  .rbc-actions-mobile-hide {
    display: none;
  }

  .rbc-sidebar .rbc-btn-block {
    display: none;
  }
}

.rbc-theatre-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .rbc-theatre-grid {
    --rbc-theatre-card-max: 420px;
    grid-template-columns: repeat(var(--rbc-theatre-cols, 2), minmax(0, var(--rbc-theatre-card-max)));
    justify-content: center;
    margin-inline: auto;
    width: 100%;
    max-width: calc(var(--rbc-theatre-cols, 2) * var(--rbc-theatre-card-max) + (var(--rbc-theatre-cols, 2) - 1) * 1.5rem);
  }

  .rbc-theatre-grid-single {
    grid-template-columns: minmax(0, var(--rbc-theatre-card-max));
    max-width: var(--rbc-theatre-card-max);
  }
}

.rbc-theatre-meta {
  font-size: 0.8125rem;
  color: var(--rbc-text-muted);
  margin-bottom: 0.75rem;
}

.rbc-slot-grid {
  display: grid;
  gap: 0.5rem;
}

.rbc-slot-btn {
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--rbc-border);
  border-radius: 0.5rem;
  background: var(--rbc-card);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--rbc-text);
  cursor: pointer;
  text-align: center;
}

.rbc-slot-btn.available:hover {
  border-color: var(--rbc-slot-active, var(--rbc-theme));
  background: var(--rbc-slot-hover, #fffbeb);
  color: var(--rbc-slot-hover-text, var(--rbc-slot-active-text, #15803d));
}

.rbc-slot-btn.selected {
  border-color: var(--rbc-slot-selected, #22c55e);
  background: #fff;
  color: var(--rbc-slot-selected, #16a34a);
  box-shadow: 0 0 0 1px var(--rbc-slot-selected, #22c55e);
  font-weight: 600;
}

.rbc-slot-btn.booked {
  background: #f3f4f6;
  color: var(--rbc-slot-inactive, #9ca3af);
  cursor: not-allowed;
  text-decoration: line-through;
}

.rbc-slot-btn.unavailable {
  background: #f9fafb;
  color: var(--rbc-slot-inactive, #9ca3af);
  cursor: not-allowed;
}

.rbc-slot-btn.tomorrow {
  background: var(--rbc-slot-active-bg, #fff);
  border-color: var(--rbc-slot-active, #15803d);
  color: var(--rbc-slot-active-text, #15803d);
  font-weight: 600;
}

.rbc-slot-btn.tomorrow:hover {
  background: var(--rbc-slot-hover, #f0fdf4);
  color: var(--rbc-slot-hover-text, var(--rbc-slot-active-text, #15803d));
}

/* Contact form */
.rbc-form-group {
  margin-bottom: 1rem;
}

.rbc-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rbc-text);
  margin-bottom: 0.35rem;
}

.rbc-form-group input,
.rbc-form-group select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--rbc-border);
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  color: var(--rbc-text);
}

.rbc-form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .rbc-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.rbc-checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0;
  font-size: 0.875rem;
  color: var(--rbc-text);
}

/* Occasion grid */
.rbc-occasion-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
  .rbc-occasion-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rbc-occasion-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 2px solid var(--rbc-border);
  border-radius: 0.75rem;
  cursor: pointer;
  background: var(--rbc-card);
  transition: border-color 0.15s;
  overflow: hidden;
}

.rbc-occasion-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #f3f4f6;
}

.rbc-occasion-body {
  padding: 0.75rem;
}

.rbc-occasion-card:hover,
.rbc-occasion-card.selected {
  border-color: var(--rbc-theme);
  background: #fffbeb;
}

.rbc-occasion-card.selected .rbc-occasion-body {
  background: #fffbeb;
}

.rbc-occasion-label {
  font-weight: 700;
  color: var(--rbc-text);
  margin: 0 0 0.25rem;
}

.rbc-occasion-desc {
  font-size: 0.8125rem;
  color: var(--rbc-text-muted);
  margin: 0;
}

/* Addon cards */
.rbc-addon-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.rbc-addon-grid.rbc-addon-grid-2-mobile {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .rbc-addon-grid,
  .rbc-addon-grid.rbc-addon-grid-2-mobile {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .rbc-addon-grid,
  .rbc-addon-grid.rbc-addon-grid-2-mobile {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rbc-addon-card {
  border: 1px solid var(--rbc-border);
  border-radius: 1rem;
  padding: 1rem;
  background: var(--rbc-card);
  min-width: 0;
}

.rbc-addon-grid.rbc-addon-grid-2-mobile .rbc-addon-card {
  padding: 0.65rem;
}

.rbc-addon-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  background: #f3f4f6;
}

.rbc-addon-grid.rbc-addon-grid-2-mobile .rbc-addon-img {
  margin-bottom: 0.5rem;
  border-radius: 0.5rem;
}

.rbc-addon-name {
  font-weight: 700;
  color: var(--rbc-text);
  margin: 0 0 0.5rem;
}

.rbc-addon-grid.rbc-addon-grid-2-mobile .rbc-addon-name {
  font-size: 0.8125rem;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.rbc-addon-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.rbc-addon-price {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--rbc-text);
}

.rbc-addon-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 2.25rem;
  margin-left: auto;
}

.rbc-addon-qty-controls {
  margin-left: auto;
}

.rbc-summary-addon-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0 0;
}

.rbc-summary-addon-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.rbc-summary-addon-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--rbc-text);
}

.rbc-summary-addon-variant {
  font-size: 0.75rem;
  color: var(--rbc-text-muted);
}

.rbc-summary-addon-price {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--rbc-text);
  white-space: nowrap;
}

.rbc-mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10300;
  display: none;
  align-items: stretch;
  gap: 0.75rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--rbc-border);
  box-shadow: 0 -8px 24px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(8px);
}

.rbc-mobile-bar-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  min-width: 7rem;
}

.rbc-mobile-total {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--rbc-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.rbc-mobile-total strong {
  font-size: 1rem;
  color: var(--rbc-text);
  text-transform: none;
  letter-spacing: 0;
}

.rbc-mobile-summary-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--rbc-text);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.rbc-mobile-chevron {
  font-size: 1rem;
  line-height: 1;
  color: var(--rbc-text-muted);
}

.rbc-mobile-continue {
  flex: 1;
  min-height: 2.75rem;
}

.rbc-mobile-sheet {
  position: fixed;
  inset: 0;
  top: max(3.5rem, 12vh);
  bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  z-index: 10200;
  pointer-events: none;
}

.rbc-mobile-sheet.is-open {
  pointer-events: auto;
}

.rbc-mobile-sheet-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(17, 24, 39, 0.45);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.rbc-mobile-sheet.is-open .rbc-mobile-sheet-backdrop {
  opacity: 1;
}

.rbc-mobile-sheet-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: min(72vh, calc(100% - 1rem));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--rbc-card);
  border-radius: 1rem 1rem 0 0;
  box-shadow: 0 -12px 40px rgba(17, 24, 39, 0.18);
  transform: translateY(100%);
  transition: transform 0.24s ease;
  touch-action: pan-y;
}

.rbc-mobile-sheet-panel.is-dragging {
  transition: none;
}

.rbc-mobile-sheet.is-open .rbc-mobile-sheet-panel {
  transform: translateY(0);
}

.rbc-mobile-sheet-handle {
  width: 2.75rem;
  height: 0.3rem;
  margin: 0.65rem auto 0;
  border-radius: 9999px;
  background: #d1d5db;
  flex-shrink: 0;
  cursor: grab;
  touch-action: none;
}

.rbc-mobile-sheet-handle::before {
  content: '';
  display: block;
  width: 100%;
  min-height: 2.75rem;
  margin-top: -1.2rem;
}

.rbc-mobile-sheet-header {
  flex-shrink: 0;
  padding: 0.5rem 1rem 0;
  border-bottom: 1px solid var(--rbc-border);
  background: var(--rbc-card);
  touch-action: none;
}

.rbc-mobile-sheet-header .rbc-summary-title {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0;
  border-bottom: none;
}

.rbc-mobile-sheet-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  -webkit-overflow-scrolling: touch;
}

body.rbc-mobile-sheet-open {
  overflow: hidden;
}

@media (max-width: 1023px) {
  .rbc-mobile-bar {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .rbc-mobile-bar,
  .rbc-mobile-sheet {
    display: none !important;
  }
}

.rbc-variant-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.rbc-variant-pill {
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--rbc-border);
  border-radius: 9999px;
  font-size: 0.75rem;
  background: var(--rbc-card);
  color: var(--rbc-text);
  cursor: pointer;
}

.rbc-variant-pill.selected {
  border-color: var(--rbc-theme);
  background: var(--rbc-theme);
  font-weight: 600;
}

.rbc-addon-grid.rbc-addon-grid-2-mobile .rbc-variant-pills {
  gap: 0.25rem;
  margin-bottom: 0.45rem;
}

.rbc-addon-grid.rbc-addon-grid-2-mobile .rbc-variant-pill {
  padding: 0.2rem 0.4rem;
  font-size: 0.6875rem;
}

.rbc-addon-grid.rbc-addon-grid-2-mobile .rbc-addon-price-row {
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
}

.rbc-addon-grid.rbc-addon-grid-2-mobile .rbc-addon-price {
  font-size: 0.8125rem;
}

.rbc-addon-grid.rbc-addon-grid-2-mobile .rbc-addon-actions {
  justify-content: stretch;
  min-height: 0;
  margin-left: 0;
}

.rbc-addon-grid.rbc-addon-grid-2-mobile .rbc-addon-add-btn,
.rbc-addon-grid.rbc-addon-grid-2-mobile .rbc-btn-sm {
  width: 100%;
  padding: 0.35rem 0.5rem;
  font-size: 0.75rem;
}

.rbc-addon-grid.rbc-addon-grid-2-mobile .rbc-addon-qty-controls {
  margin-left: 0;
  width: 100%;
  justify-content: space-between;
}

.rbc-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.rbc-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rbc-qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--rbc-border);
  border-radius: 0.5rem;
  background: var(--rbc-card);
  font-weight: 700;
  color: var(--rbc-text);
  cursor: pointer;
}

.rbc-qty-value {
  font-weight: 700;
  min-width: 1.5rem;
  text-align: center;
  color: var(--rbc-text);
}

/* Summary sidebar */
.rbc-summary-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--rbc-text);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rbc-border);
}

.rbc-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--rbc-text);
  margin-bottom: 0.5rem;
}

.rbc-summary-row.muted {
  color: var(--rbc-text-muted);
}

.rbc-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 700;
  color: var(--rbc-text);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--rbc-border);
}

.rbc-coupon-row {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rbc-border);
}

.rbc-phone-code {
  max-width: 4.75rem;
  min-width: 4.25rem;
  padding-left: 0.35rem;
  padding-right: 0.2rem;
  font-size: 0.8125rem;
}

.rbc-coupon-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.rbc-coupon-row-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111;
}

.rbc-coupon-toggle-link {
  border: none;
  background: none;
  padding: 0;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.rbc-coupon-toggle-link:hover {
  color: #6b7280;
  text-decoration: none;
}

.rbc-coupon-input {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  align-items: stretch;
}

.rbc-coupon-input input {
  flex: 1;
  min-width: 0;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--rbc-border);
  border-radius: 0.5rem;
  font-size: 1rem;
  color: var(--rbc-text);
}

.rbc-coupon-input .rbc-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.rbc-coupon-error {
  margin-top: 0.5rem;
}

.rbc-coupon-applied-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--rbc-border);
  border-radius: 0.5rem;
  background: #fafafa;
}

.rbc-coupon-applied-text {
  font-size: 0.875rem;
  color: var(--rbc-text);
  min-width: 0;
  word-break: break-word;
}

.rbc-coupon-applied-right {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.rbc-coupon-remove {
  border: 0;
  background: transparent;
  color: var(--rbc-danger, #dc2626);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.rbc-coupon-remove:hover {
  opacity: 0.85;
}

@media (max-width: 1023px) {
  .rbc-mobile-sheet-scroll .rbc-coupon-row {
    position: sticky;
    bottom: 0;
    margin-bottom: 0.25rem;
    padding-bottom: 0.25rem;
    background: var(--rbc-card, #fff);
  }

  .rbc-mobile-sheet-scroll .rbc-coupon-input {
    flex-wrap: nowrap;
  }

  .rbc-mobile-sheet-scroll .rbc-coupon-input input {
    font-size: 16px;
  }

  .rbc-mobile-sheet-scroll .rbc-coupon-applied-box {
    flex-wrap: wrap;
  }
}

.rbc-btn-ghost {
  background: transparent;
  color: var(--rbc-text-muted);
  border: 1px solid var(--rbc-border);
}

.rbc-btn-ghost:hover {
  color: var(--rbc-text);
  background: #f9fafb;
}

.rbc-timer {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--rbc-danger);
  margin-top: 0.75rem;
}

/* Payment modal */
.rbc-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 11000;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.rbc-modal {
  background: var(--rbc-card);
  border-radius: 1rem;
  max-width: 32rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.rbc-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.rbc-modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rbc-text);
  margin: 0;
}

.rbc-payment-timer {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--rbc-danger, #dc2626);
  min-height: 1.25rem;
}

.rbc-modal-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--rbc-text-muted);
  line-height: 1;
}

.rbc-terms-body {
  font-size: 0.875rem;
  color: var(--rbc-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.rbc-terms-body p {
  margin: 0 0 0.5rem;
}

.rbc-agree-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--rbc-border);
  border-radius: 0.75rem;
  font-size: 0.875rem;
  color: var(--rbc-text);
  margin-bottom: 1rem;
}

.rbc-error {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: var(--rbc-danger);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.rbc-success-box {
  text-align: center;
  padding: 2rem 1rem;
}

.rbc-success-box h2 {
  color: var(--rbc-text);
  margin: 0 0 0.5rem;
}

.rbc-success-box p {
  color: var(--rbc-text-muted);
  margin: 0 0 1rem;
}

.rbc-loading {
  text-align: center;
  padding: 2rem;
  color: var(--rbc-text-muted);
}

.rbc-processing-overlay {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(17, 24, 39, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.rbc-processing-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.rbc-processing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 180px;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.rbc-processing-spinner {
  width: 2rem;
  height: 2rem;
  border: 3px solid rgba(0, 0, 0, 0.08);
  border-top-color: var(--rbc-theme, #ffd700);
  border-radius: 50%;
  animation: rbc-spin 0.8s linear infinite;
}

.rbc-processing-text {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111;
  text-align: center;
}

.rbc-processing-overlay.is-error .rbc-processing-card {
  border: 1px solid #fecaca;
  background: #fff7f7;
}

.rbc-processing-overlay.is-error .rbc-processing-text {
  color: #b91c1c;
}

@keyframes rbc-spin {
  to {
    transform: rotate(360deg);
  }
}

.rbc-hidden {
  display: none !important;
}

.rbc-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  width: 100%;
}

.rbc-actions .rbc-btn {
  width: 100%;
}

@media (min-width: 640px) {
  .rbc-actions .rbc-btn {
    width: auto;
    min-width: 12rem;
  }
}

.rbc-skip-link {
  font-size: 0.875rem;
  color: var(--rbc-text-muted);
  text-decoration: none;
}

.rbc-skip-link:hover {
  color: var(--rbc-text);
}

.rbc-verify-timer-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.75rem 0 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid #fde68a;
  border-radius: 0.75rem;
  background: #fffbeb;
}

.rbc-verify-timer-text {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #92400e;
}

.rbc-verify-timer-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #92400e;
}

.rbc-verify-timer {
  font-size: 0.8125rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #b45309;
}

.rbc-verify-box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--rbc-border, #e5e7eb);
  border-radius: 1rem;
  background: #fff;
}

.rbc-verify-box .rbc-summary-details {
  margin-bottom: 1rem;
}

.rbc-verify-pay-btn {
  margin-top: 1rem;
}

.rbc-layout-theatre-sticky .rbc-main-card {
  padding-bottom: 1rem;
}

.rbc-change-date-bar {
  display: none;
}

/* Date strip: wrap scrolls on mobile; chips never expand the page */
.rbc-date-strip-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 0 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rbc-date-strip-wrap::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.rbc-date-strip {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.5rem;
  width: max-content;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 0.15rem 0.1rem 0.35rem;
  overflow: visible;
}

@media (min-width: 768px) {
  .rbc-date-strip-wrap {
    overflow: visible;
    touch-action: auto;
  }

  .rbc-date-strip {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.25rem 0 0.5rem;
  }
}

.rbc-date-chip {
  flex: 0 0 auto;
  box-sizing: border-box;
  width: auto;
  min-width: 5.25rem;
  padding: 0.5rem 0.65rem;
  border-radius: 0.65rem;
  border: 1.5px solid color-mix(in srgb, var(--rbc-theme, #ffd700) 55%, #d1d5db);
  background: #fff;
  color: var(--rbc-text, #111);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

@media (max-width: 767px) {
  .rbc-date-chip {
    min-width: 2.85rem;
    padding: 0.22rem 0.28rem;
    border-radius: 0.4rem;
    border-width: 1px;
  }

  .rbc-date-chip-more {
    min-width: 3rem;
  }

  .rbc-date-chip-day {
    font-size: 0.45rem;
    letter-spacing: 0.02em;
  }

  .rbc-date-chip-date {
    margin-top: 0.02rem;
    font-size: 0.625rem;
  }

  .rbc-date-chip-icon {
    width: 0.65rem;
    height: 0.65rem;
  }

  .rbc-date-strip {
    gap: 0.28rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .rbc-date-strip::-webkit-scrollbar {
    display: none;
  }
}

.rbc-date-chip-more {
  min-width: 5.75rem;
}

.rbc-date-chip-day {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.85;
}

.rbc-date-chip-date {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
}

.rbc-date-chip-calendar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.rbc-date-chip-icon {
  width: 0.95rem;
  height: 0.95rem;
}

.rbc-date-chip.selected {
  background: var(--rbc-theme, #ffd700);
  border-color: var(--rbc-theme, #ffd700);
  color: #111;
}

.rbc-date-chip.selected .rbc-date-chip-day {
  opacity: 1;
}

.rbc-date-chip:hover,
.rbc-date-chip:focus {
  border-color: var(--rbc-theme, #ffd700);
}

.rbc-change-date-value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--rbc-text);
}

.rbc-change-date-btn {
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-size: 0.75rem;
  font-weight: 600;
  color: #b45309;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rbc-change-date-btn:hover,
.rbc-change-date-btn:focus {
  color: #92400e;
  background: none;
}

.rbc-theatre-features .rbc-icon,
.rbc-theatre-location .rbc-icon {
  margin-right: 0.35rem;
}

.rbc-theatre-link .rbc-icon,
.rbc-theatre-video .rbc-icon {
  display: inline-block;
  vertical-align: -0.2em;
  margin-right: 0;
  color: var(--rbc-icon-color, #666);
}
