:root {
  --orange: #FA6702;
  --orange-dark: #DE5800;
  --orange-tint: #FFF0E4;
  --orange-tint-strong: #FFE0C7;
  --bg: #F5F5F5;
  --white: #FFFFFF;
  --ink: #211D1A;
  --ink-soft: #6E6862;
  --line: #E7E2DC;
  --line-strong: #D8D1C8;
  --green: #22C35E;
  --green-dark: #1AA34D;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --shadow: 0 12px 28px -14px rgba(33,29,26,0.28);
  --shadow-soft: 0 4px 14px -6px rgba(33,29,26,0.16);
  --font-display: "Baloo 2", "Trebuchet MS", sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

button {
  font-family: inherit;
  cursor: pointer;
}

button:focus-visible, [tabindex]:focus-visible, .day-cell:focus-visible {
  outline: 2px solid var(--orange-dark);
  outline-offset: 2px;
}

/* Standalone wrapper (replaces the old two-column .layout) */
.panel {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.star-slot {
  position: relative;
  display: inline-block;
  width: 21.7px;
  height: 20.6px;
  flex: none;
}

.star-slot svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 21.7px;
  height: 20.6px;
  display: block;
}

.star-outline path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 1;
}

.star-filled path {
  fill: var(--orange);
}

.star-clip {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  display: block;
}

.eyebrow-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--orange-dark);
  border-bottom: 1.5px solid var(--orange-dark);
  padding-bottom: 2px;
  margin-bottom: 8px;
  text-decoration: none;
}

.headline {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.28;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
}

.price-stars-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 14px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-row .label {
  font-size: 12.5px;
  color: var(--ink-soft);
}

.price-row .price {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--orange-dark);
  font-weight: 700;
}

.meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.meta-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  background: var(--bg);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
}

.meta-chip svg {
  width: 14px;
  height: 14px;
  flex: none;
}

.step-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-family: var(--font-body);
  transition: background 0.2s;
}

.step-num svg {
  width: 13px;
  height: 13px;
}

.step-head h3 {
  font-size: 15px;
  margin: 0;
}

.step-head .see-all {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-dark);
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.step-head .see-all:hover {
  text-decoration: underline;
}

.zone-hint {
  font-size: 12px;
  color: var(--ink-soft);
  margin: -8px 0 12px;
}

/* Date/time quick picks */
.slot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.slot-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 10px 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: 0.15s;
}

.slot-card:hover {
  border-color: var(--orange);
}

.slot-card.selected {
  border-color: var(--orange);
  background: var(--orange-tint);
  box-shadow: inset 0 0 0 1px var(--orange);
}

.slot-card .d {
  font-size: 13px;
  font-weight: 700;
}

.slot-card .t {
  font-size: 12.5px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 5px;
}

.slot-card .t svg {
  width: 12px;
  height: 12px;
}

.selection-bar {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--orange-tint);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--orange-dark);
}

.selection-bar svg {
  width: 16px;
  height: 16px;
  flex: none;
}

.selection-bar.empty {
  background: var(--bg);
  color: var(--ink-soft);
  font-weight: 500;
}

/* Zone accordion */
.zone-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zone-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.zone-card.has-qty {
  border-color: var(--orange);
}

.zone-header {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.zone-header .zone-info {
  flex: 1;
  min-width: 0;
}

.zone-name {
  font-weight: 700;
  font-size: 14px;
  display: block;
}

.zone-price {
  font-size: 12.5px;
  color: var(--ink-soft);
}

.zone-badge {
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 2px 9px;
  flex: none;
}

.chevron {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--ink-soft);
  transition: transform 0.2s;
}

.zone-card.open .chevron {
  transform: rotate(180deg);
}

.zone-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  background: var(--bg);
}

.zone-card.open .zone-body {
  max-height: 320px;
}

.ticket-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px dashed var(--line-strong);
}

.ticket-row:first-child {
  border-top: none;
}

.ticket-meta {
  flex: 1;
  min-width: 0;
}

.ticket-type {
  font-weight: 600;
  font-size: 13.5px;
  display: block;
}

.ticket-sub {
  font-size: 11.5px;
  color: var(--ink-soft);
}

.ticket-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  width: 70px;
  text-align: right;
  flex: none;
}

.stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  flex: none;
}

.stepper button {
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.stepper button:disabled {
  color: var(--line-strong);
  cursor: default;
}

.stepper button:not(:disabled):hover {
  background: var(--orange-tint);
}

.stepper .qty {
  width: 22px;
  text-align: center;
  font-weight: 700;
  font-size: 13.5px;
}

/* Ticket-style summary */
.summary-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: visible;
}

.summary-top {
  padding: 18px 20px 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 4px;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 6px;
}

.summary-total .lbl {
  font-size: 13.5px;
  font-weight: 600;
}

.summary-total .amt {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--orange-dark);
  font-weight: 700;
}

.perforation {
  position: relative;
  height: 0;
  border-top: 2px dashed var(--line-strong);
  margin: 0 4px;
}

.perforation::before, .perforation::after {
  content: "";
  position: absolute;
  top: -11px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg);
}

.perforation::before {
  left: -15px;
}

.perforation::after {
  right: -15px;
}

.summary-actions {
  padding: 16px 20px 20px;
  display: flex;
  gap: 10px;
}

.cta-hint {
  padding: 0 20px 16px;
  margin-top: -10px;
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
}

.btn_circos {
  flex: 1;
  border-radius: 999px;
  padding: 13px 14px;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid transparent;
  transition: 0.15s;
}

.btn-outline {
  background: #fff;
  border-color: var(--orange);
  color: var(--orange-dark);
}

.btn-outline:hover {
  background: var(--orange-tint);
}

.btn-solid {
  background: var(--orange);
  color: #fff;
}

.btn-solid:hover {
  background: var(--orange-dark);
}

.btn_circos:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .summary-card {
    position: -webkit-sticky;
    position: sticky;
    bottom: 14px;
    z-index: 20;
  }
}
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 13px;
  border-radius: 999px;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: var(--green-dark);
}

.whatsapp-btn svg {
  width: 18px;
  height: 18px;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast svg {
  width: 16px;
  height: 16px;
  color: #7CD9A0;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(33, 29, 26, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  padding: 16px;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow: auto;
  box-shadow: var(--shadow);
  transform: scale(0.96);
  transition: 0.2s;
}

.modal-overlay.show .modal {
  transform: scale(1);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.modal-head h3 {
  font-family: var(--font-display);
  font-size: 19px;
  margin: 0;
}

.modal-close {
  background: var(--bg);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close svg {
  width: 16px;
  height: 16px;
}

.modal-body {
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
}

@media (max-width: 520px) {
  .modal-body {
    grid-template-columns: 1fr;
  }
}
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cal-nav .month-label {
  font-weight: 700;
  font-size: 14.5px;
}

.cal-nav button {
  background: var(--bg);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-nav button:disabled {
  opacity: 0.3;
  cursor: default;
}

.cal-nav button svg {
  width: 14px;
  height: 14px;
}

.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 11px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 6px;
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.day-cell {
  aspect-ratio: 1;
  border: none;
  background: none;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--ink);
}

.day-cell.empty {
  visibility: hidden;
}

.day-cell.disabled {
  color: var(--line-strong);
  cursor: default;
}

.day-cell.available:hover {
  background: var(--orange-tint);
}

.day-cell.available::after {
  content: "";
  position: absolute;
  bottom: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

.day-cell.selected {
  background: var(--orange);
  color: #fff;
}

.day-cell.selected::after {
  display: none;
}

.times-col h4 {
  font-size: 13px;
  margin: 0 0 10px;
  color: var(--ink-soft);
}

.time-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.time-btn {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
  font-size: 13.5px;
}

.time-btn:hover {
  border-color: var(--orange);
}

.time-btn.selected {
  border-color: var(--orange);
  background: var(--orange-tint);
  color: var(--orange-dark);
}

.time-btn.sold-out {
  color: var(--line-strong);
  background: var(--bg);
  border-color: var(--line);
  cursor: not-allowed;
  text-decoration: line-through;
}

.time-btn.sold-out:hover {
  border-color: var(--line);
}

.modal-foot {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 22px;
  border-top: 1px solid var(--line);
}

.modal-foot .btn_circos {
  flex: none;
  padding: 11px 22px;
}

@media (min-width: 768px) {
  .container__swiper__main {
    /*max-width: 100%!important;*/
  }
}
