:root {
  --gem-orange: #f57c00;
  --gem-orange-deep: #d05a00;
  --gem-dark: #1f2125;
  --gem-brown: #5a3824;
  --gem-cream: #f8f3e8;
  --gem-cream-soft: #fcf8f0;
  --gem-border: #e2d7c5;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --transition-fast: .18s ease-out;
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Greta";
  src: url("assets/greta-medium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Greta";
  src: url("assets/greta-bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Greta Arabic";
  src: url("assets/greta-arabic-regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Greta Arabic";
  src: url("assets/greta-arabic-bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
  color: var(--gem-dark);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[lang="ar"],
html[lang="ar"] body,
html[lang="ar"] button,
html[lang="ar"] input,
html[lang="ar"] select {
  font-family: "Greta Arabic", system-ui, sans-serif;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: 18px;
}

.hidden,
.booking-hidden {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.nav-inner {
  min-height: 160px;
  padding-block: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-logo img {
  width: auto;
  height: 150px;
  display: block;
}

.nav-logo-text {
  color: #5a3210;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-actions,
.nav-lang-switch {
  display: flex;
  align-items: center;
}

.nav-lang-switch {
  gap: 6px;
  font-size: 13px;
}

.nav-lang {
  padding: 4px 8px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #8c653c;
  font-family: "Greta", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s ease-out, color .15s ease-out;
}

.nav-lang.is-active {
  background: var(--gem-orange);
  color: #fff;
}

.nav-lang:hover:not(.is-active) {
  background: rgba(245, 124, 0, .08);
}

.nav-lang-sep {
  color: #c9b7a2;
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: 68vh;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .55) 10%, rgba(0, 0, 0, .15) 70%, rgba(0, 0, 0, .1) 80%),
    linear-gradient(to bottom, rgba(0, 0, 0, .1), rgba(0, 0, 0, .25));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  min-height: 60vh;
  margin: 0 auto;
  padding: 72px 18px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy {
  max-width: 1000px;
}

.hero-badge {
  margin-bottom: 14px;
  color: #f5cf8b;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0 0 -5px;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 600px;
  margin: 16px 0;
  color: #f3ebdf;
  font-size: 16px;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta,
.primary-btn,
.secondary-btn,
.cta-ticket-btn {
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.nav-cta {
  padding: 9px 14px;
  background: var(--gem-orange);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(245, 124, 0, .4);
}

.nav-cta:hover,
.primary-btn:hover {
  transform: translateY(-1px);
  background: var(--gem-orange-deep);
  box-shadow: 0 14px 34px rgba(245, 124, 0, .55);
}

.section {
  padding: 30px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.8fr);
  gap: 32px;
  align-items: stretch;
}

.intro-card,
.hours-card {
  padding: 24px 28px;
  border-radius: 32px;
  background: #fdf6ea;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .06);
}

.intro-card h2 {
  margin: 0 0 10px;
  color: var(--gem-brown);
  font-size: 22px;
  line-height: 1.2;
}

.intro-card p {
  margin: 0 0 8px;
  color: #444;
  font-size: 17px;
  line-height: 1.9;
}

.hours-card {
  border: 1px solid rgba(0, 0, 0, .03);
  border-radius: 28px;
  background: #fff5e8;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
}

.hours-header {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hours-header h2 {
  margin: 0;
  color: #5b3411;
  font-size: 20px;
}

.hours-pill {
  padding: 4px 10px;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: var(--radius-pill);
  background: #fff;
  color: #c76c12;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hours-block {
  min-width: 0;
  flex: 1 1 220px;
}

.hours-block-title {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5b3411;
  font-weight: 600;
}

.hours-dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: #d9a469;
}

.hours-dot-highlight {
  background: #ff8c1a;
}

.hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}

.hours-list li {
  padding: 4px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #3c2d21;
  font-size: 14.72px;
}

.hours-list li span:first-child {
  opacity: .8;
}

.hours-note {
  margin: 16px 0 0;
  color: #423426;
  font-size: 14.4px;
  font-weight: 700;
  opacity: .9;
}

.cta-ticket-section {
  padding: 40px 0 60px;
  text-align: center;
}

.cta-ticket-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-ticket-btn {
  padding: 14px 36px;
  background: var(--gem-orange);
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .03em;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
}

.cta-ticket-btn:hover {
  background: #ff9a1f;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, .22);
}

#booking-section {
  padding: 26px 0 40px;
  border-top: 1px solid var(--gem-border);
  background: var(--gem-cream-soft);
}

.booking-header {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.booking-header h2 {
  margin: 0;
  color: var(--gem-brown);
  font-size: 19px;
  font-weight: 650;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.5fr) minmax(320px, .9fr);
  gap: 24px;
  align-items: flex-start;
}

.booking-flow,
.cart-panel {
  min-width: 0;
}

.stepper {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #6f6f6f;
  font-size: 13px;
}

.step-pill {
  padding: 6px 10px;
  border: 1px dashed rgba(0, 0, 0, .16);
  border-radius: var(--radius-pill);
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.step-pill .number {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(0, 0, 0, .25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.step-pill.is-active {
  border-style: solid;
  border-color: var(--gem-orange);
  background: #fffaf3;
  color: var(--gem-brown);
}

.step-pill.is-active .number {
  border-color: transparent;
  background: var(--gem-orange);
  color: #fff;
}

.booking-panel {
  max-width: 100%;
  padding: 16px 16px 18px;
  border: 1px solid var(--gem-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
}

.panel-header {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-header h3 {
  margin: 0;
  color: var(--gem-brown);
  font-size: 17px;
  font-weight: 650;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.3fr);
  gap: 14px;
}

.field-group {
  margin-bottom: 12px;
}

.field-label {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 550;
}

.field-row,
.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.radio-pill,
.time-slot {
  padding: 6px 9px;
  border: 1px solid rgba(0, 0, 0, .18);
  border-radius: var(--radius-pill);
  background: #fff;
  font-size: 12px;
  cursor: pointer;
}

.radio-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.radio-pill input {
  accent-color: var(--gem-orange);
}

.radio-pill.is-active {
  border-color: var(--gem-orange);
  background: #fff5e6;
}

.calendar-field {
  position: relative;
  display: inline-block;
}

.calendar-display {
  width: 260px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: var(--radius-pill);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}

.calendar-display:hover {
  border-color: var(--gem-orange-deep);
}

.calendar-icon {
  color: var(--gem-orange);
  font-size: 16px;
}

.calendar-popup {
  min-width: 280px;
  margin-top: 10px;
  padding: 12px 12px 16px;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .16);
  position: relative;
  z-index: 5;
}

.calendar-popup.is-hidden {
  display: none;
}

.calendar-header {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calendar-nav {
  padding: 4px 8px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

.calendar-nav:hover:not(:disabled) {
  background: rgba(0, 0, 0, .05);
}

.calendar-nav:disabled {
  opacity: .25;
  cursor: default;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.calendar-weekdays {
  margin-bottom: 6px;
  color: rgba(0, 0, 0, .55);
  font-size: 11px;
}

.calendar-grid {
  gap: 4px;
}

.calendar-day,
.calendar-spacer {
  width: 32px;
  height: 32px;
  margin: 0 auto;
}

.calendar-day {
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #000;
  font-size: 13px;
  cursor: pointer;
}

.calendar-day:hover:not(:disabled) {
  background: rgba(245, 124, 0, .12);
}

.calendar-day.is-selected {
  background: var(--gem-orange);
  color: #fff;
  font-weight: 600;
}

.calendar-day:disabled {
  color: rgba(0, 0, 0, .25);
  cursor: default;
}

.info-tip {
  width: 16px;
  height: 16px;
  border: 1px solid #777;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  cursor: help;
}

.time-slots.is-muted {
  opacity: .42;
  pointer-events: none;
}

.time-slot {
  padding-inline: 10px;
}

.time-slot.is-selected {
  border-color: var(--gem-orange);
  background: var(--gem-orange);
  color: #fff;
}

.discount-link {
  margin: 9px 0 0;
  font-size: 12px;
}

.discount-link button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #9d5809;
  text-decoration: underline;
  cursor: pointer;
}

.ticket-categories {
  padding: 10px 10px 12px;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
}

.category-tabs {
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.category-tab {
  min-width: 0;
  min-height: 34px;
  padding: 6px 8px;
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: var(--radius-pill);
  background: #fdf4e6;
  font-size: 12px;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  flex: 1 1 0;
  white-space: normal;
}

.category-tab:nth-child(2) {
  flex-grow: 1.55;
}

.category-tab.is-active {
  border-color: var(--gem-orange);
  background: var(--gem-orange);
  color: #fff;
}

.category-panel {
  padding: 8px 8px 6px;
  border-radius: 14px;
  background: #fbfbfb;
}

.ticket-row {
  padding: 7px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, .7fr) auto;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.ticket-row.is-hidden {
  display: none;
}

.ticket-label {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.ticket-label-main {
  font-weight: 600;
}

.ticket-label small {
  color: #666;
  font-size: 10px;
  line-height: 1.2;
}

.ticket-price {
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.counter {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.counter button {
  width: 26px;
  height: 26px;
  padding: 0;
  border: 1px solid var(--gem-orange);
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.counter button:disabled {
  border-color: #ccc;
  color: #aaa;
  cursor: default;
}

.counter output {
  width: 40px;
  margin: 0 4px;
  padding: 4px 0;
  border-radius: 8px;
  background: var(--gem-orange);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.actions-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.booking-layout.is-addon-step,
.booking-layout.is-contact-step,
.booking-layout.is-review-step {
  grid-template-columns: minmax(0, 1fr);
}

.booking-layout.is-addon-step .cart-panel,
.booking-layout.is-contact-step .cart-panel,
.booking-layout.is-review-step .cart-panel {
  display: none;
}

.panel-subtitle {
  margin: 0 0 10px;
  color: #555;
  font-size: 13px;
}

.addon-panel {
  padding: 20px 22px 22px;
}

.addon-panel-header {
  margin-bottom: 8px;
}

.addon-panel-header h3 {
  font-size: 22px;
}

.ghost-btn {
  padding: 9px 14px;
  border: 1px solid var(--gem-orange);
  border-radius: var(--radius-pill);
  background: var(--gem-orange);
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.ghost-btn:hover {
  background: #fff;
  color: var(--gem-orange);
  transform: translateY(-1px);
}

.addon-subtitle {
  margin-bottom: 14px;
  font-size: 17px;
}

.addon-card {
  min-height: 510px;
  padding: 26px 32px;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 294px minmax(0, 1fr);
  gap: 32px;
  background: #fff;
}

.addon-image {
  width: 294px;
  height: 328px;
  margin: 0;
}

.addon-image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 14px 14px 0 0;
  object-fit: cover;
}

.addon-content {
  min-width: 0;
  min-height: 456px;
  display: flex;
  flex-direction: column;
}

.addon-content h3 {
  margin: 0 0 30px;
  color: #272727;
  font-size: 22px;
  line-height: 1.2;
}

.addon-content > p {
  max-width: 680px;
  margin: 0 0 20px;
  color: #303030;
  font-size: 18px;
  line-height: 1.42;
}

.addon-more {
  width: fit-content;
  margin: 4px 0 0;
  padding: 0 6px;
  border: 0;
  background: transparent;
  color: var(--gem-orange);
  font-size: 17px;
  text-decoration: underline;
  cursor: pointer;
}

.addon-extra {
  margin-top: 10px;
  color: #555;
  font-size: 14px;
}

.addon-extra p {
  margin: 0;
}

.addon-purchase-row {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.addon-price > span {
  display: block;
  margin-bottom: 2px;
  color: #b9a28f;
  font-size: 14px;
  letter-spacing: .04em;
}

.addon-price div {
  color: #555;
  font-size: 16px;
}

.addon-price strong {
  color: var(--gem-orange);
  font-size: 23px;
}

.addon-counter button {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  font-size: 22px;
}

.addon-counter output {
  width: 54px;
  padding: 7px 0;
  border-radius: 11px;
  font-size: 15px;
}

.step-footer {
  padding-top: 30px;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.step-footer-button {
  min-height: 47px;
  padding-inline: 20px;
  font-size: 16px;
  font-weight: 650;
}

.contact-panel {
  min-height: 390px;
  padding: 27px 22px 23px;
  display: flex;
  flex-direction: column;
}

.contact-panel-header {
  margin-bottom: 8px;
}

.contact-panel-header h3 {
  font-size: 23px;
}

.contact-subtitle {
  margin-bottom: 13px;
  font-size: 18px;
  line-height: 1.35;
}

.contact-form {
  min-height: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.contact-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 27px 20px;
}

.contact-field {
  min-width: 0;
  display: grid;
  gap: 6px;
  color: #272727;
  font-size: 18px;
  font-weight: 600;
}

.contact-field input,
.contact-field select {
  width: 100%;
  height: 48px;
  border: 1px solid #cfcfcf;
  border-radius: var(--radius-pill);
  background: #fff;
  color: #343434;
  font: inherit;
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-field input {
  padding: 0 14px;
}

.contact-field input::placeholder,
.contact-field select:invalid {
  color: #999;
  opacity: 1;
}

.contact-field input:focus,
.contact-field select:focus {
  border-color: var(--gem-orange);
  box-shadow: 0 0 0 3px rgba(245, 124, 0, .14);
}

.contact-field.has-error input,
.contact-field.has-error select {
  border-color: #c93d32;
  box-shadow: 0 0 0 3px rgba(201, 61, 50, .1);
}

.field-error {
  min-height: 0;
  margin: -1px 13px 0;
  display: none;
  color: #b52d24;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
}

.contact-field.has-error .field-error {
  display: block;
}

.phone-control {
  min-width: 0;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 8px;
}

.select-control {
  min-width: 0;
  position: relative;
  display: block;
}

.select-control select {
  padding: 0 39px 0 14px;
  appearance: none;
  cursor: pointer;
}

.phone-code-control select {
  padding-left: 11px;
  padding-right: 27px;
}

.select-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
  position: absolute;
  top: 17px;
  right: 15px;
  pointer-events: none;
  transform: rotate(45deg);
}

.phone-code-control .select-chevron {
  width: 7px;
  height: 7px;
  top: 18px;
  right: 11px;
  border-width: 1.5px;
  border-color: #555;
}

.contact-form-footer {
  margin-top: auto;
  padding-top: 38px;
  display: flex;
  justify-content: flex-end;
}

.contact-next {
  min-width: 98px;
  min-height: 47px;
  padding-inline: 18px;
  font-size: 16px;
  font-weight: 650;
}

.review-panel {
  padding: 25px 22px 24px;
}

.review-panel-header {
  margin-bottom: 8px;
}

.review-panel-header h3 {
  font-size: 23px;
}

.review-subtitle {
  margin-bottom: 17px;
  font-size: 18px;
  line-height: 1.35;
}

.review-details {
  margin-bottom: 23px;
  display: grid;
  gap: 8px;
}

.review-row,
.payment-row,
.review-line-item {
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
  font-size: 17px;
  line-height: 1.35;
}

.review-row > span {
  color: #555;
}

.review-row strong {
  min-width: 0;
  font-weight: 400;
  text-align: end;
  overflow-wrap: anywhere;
}

.review-row.is-emphasized strong {
  font-weight: 700;
}

.promo-block {
  margin-bottom: 20px;
}

.promo-block > label {
  margin-bottom: 4px;
  display: block;
  font-size: 21px;
  line-height: 1.3;
}

.promo-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.promo-control input {
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #cfcfcf;
  border-radius: var(--radius-pill);
  background: #fff;
  color: #343434;
  font-size: 17px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.promo-control input:focus {
  border-color: var(--gem-orange);
  box-shadow: 0 0 0 3px rgba(245, 124, 0, .14);
}

.promo-apply {
  min-width: 88px;
  min-height: 48px;
  padding-inline: 17px;
  font-size: 16px;
  font-weight: 650;
}

.promo-status {
  min-height: 0;
  margin: 5px 13px 0;
  display: block;
  color: #777;
  font-size: 13px;
}

.payment-summary {
  padding: 13px 13px 10px;
  border: 1px solid #e4e0da;
  border-radius: 18px;
  background: #fcfbf8;
}

#review-line-items {
  display: grid;
  gap: 5px;
}

.review-line-item,
.payment-row {
  font-size: 17px;
}

.review-line-item strong,
.payment-row strong {
  font-weight: 400;
  white-space: nowrap;
}

.payment-row {
  margin-top: 5px;
}

.payment-total {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #d2ccc3;
  font-weight: 700;
}

.payment-total strong {
  font-weight: 700;
}

.proceed-payment {
  min-height: 47px;
  margin-top: 14px;
  padding-inline: 18px;
  font-size: 16px;
  font-weight: 700;
}

.primary-btn,
.secondary-btn {
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 540;
}

.primary-btn {
  background: var(--gem-orange);
  color: #fff;
  box-shadow: 0 10px 26px rgba(245, 124, 0, .45);
}

.primary-btn:disabled {
  opacity: .5;
  box-shadow: none;
  cursor: default;
}

.secondary-btn {
  border: 1px solid rgba(0, 0, 0, .18);
  background: #fff;
  color: var(--gem-brown);
}

.cart-panel {
  position: sticky;
  top: 76px;
  margin-top: 48px;
  padding: 14px 14px 16px;
  border-radius: var(--radius-lg);
  background: var(--gem-dark);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .55);
}

.cart-header {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cart-header h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 620;
}

.cart-badge {
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .06);
  font-size: 11px;
}

.cart-main {
  padding: 10px 10px 8px;
  border-radius: 14px;
  background: rgba(0, 0, 0, .3);
  font-size: 13px;
}

.cart-row {
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.cart-row strong {
  font-size: 14px;
  text-align: end;
}

.cart-total {
  margin-top: 8px;
}

.site-footer {
  position: relative;
  margin-top: 24px;
  background: #0f1216;
  color: #f7f3e8;
  font-size: 13px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #f57c00, #fbb03b);
}

.footer-main {
  padding-block: 24px 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-row img {
  width: auto;
  max-height: 100px;
}

.footer-logo-text {
  color: #f5f0e6;
  font-size: 16px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-block-title,
.footer-social-title {
  display: block;
  margin-bottom: 8px;
  color: #fbbf7a;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-main ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-main li {
  padding: 2px 0;
  color: #d7cfbf;
}

.footer-main a:hover {
  text-decoration: underline;
}

.footer-social {
  margin-top: 4px;
}

.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .18s ease, transform .18s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-1px);
}

.social-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: 24px;
  background: rgba(0, 0, 0, .55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal {
  width: min(92vw, 620px);
  max-height: min(82vh, 720px);
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
  display: flex;
  flex-direction: column;
}

.modal-small {
  width: min(92vw, 520px);
}

.modal-header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid #eee4d6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.modal-header h2 {
  margin: 0;
  color: var(--gem-brown);
  font-size: 20px;
}

.modal-close {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f5eee4;
  color: #4b392b;
  font-size: 24px;
  cursor: pointer;
}

.modal-body {
  padding: 14px 24px;
  overflow-y: auto;
  color: #333;
  font-size: 14px;
  line-height: 1.55;
}

.modal-body ul {
  margin: 0;
  padding-inline-start: 22px;
}

.modal-body li {
  margin-bottom: 10px;
}

.modal-body a {
  text-decoration: underline;
}

.modal-footer {
  padding: 14px 20px 18px;
  border-top: 1px solid #eee4d6;
  display: flex;
  justify-content: flex-end;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(245, 124, 0, .45);
  outline-offset: 3px;
}

html[dir="rtl"] .hero-bg::after {
  transform: scaleX(-1);
}

html[dir="rtl"] .hours-list li,
html[dir="rtl"] .cart-row {
  flex-direction: row;
}

html[dir="rtl"] .select-control select {
  padding-right: 14px;
  padding-left: 39px;
}

html[dir="rtl"] .phone-code-control select {
  padding-right: 11px;
  padding-left: 27px;
}

html[dir="rtl"] .select-chevron {
  right: auto;
  left: 15px;
}

html[dir="rtl"] .phone-code-control .select-chevron {
  right: auto;
  left: 11px;
}

html[dir="rtl"] #contact-email,
html[dir="rtl"] #contact-mobile,
html[dir="rtl"] #promo-code {
  direction: ltr;
  text-align: left;
}

html[dir="rtl"] .ticket-price,
html[dir="rtl"] .addon-price strong,
html[dir="rtl"] #summary-time,
html[dir="rtl"] #summary-total,
html[dir="rtl"] #review-date-time,
html[dir="rtl"] #review-email,
html[dir="rtl"] #review-mobile,
html[dir="rtl"] #review-subtotal,
html[dir="rtl"] #review-total,
html[dir="rtl"] .review-line-item strong {
  direction: ltr;
  unicode-bidi: isolate;
}

@media (max-width: 900px) {
  .intro-grid,
  .booking-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .cart-panel {
    position: static;
    margin-top: 0;
    order: -1;
  }

  .footer-main {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    min-height: 141px;
    padding-block: 8px;
  }

  .nav-logo img {
    height: 125px;
  }

  .nav-logo-text {
    max-width: 128px;
    font-size: 14px;
    letter-spacing: 0;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-inner {
    min-height: 60vh;
    padding: 52px 16px 32px;
  }

  .hero-copy h1 {
    font-size: clamp(25px, 7.5vw, 32px);
    letter-spacing: 0;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .intro-grid {
    gap: 20px;
  }

  .intro-card,
  .hours-card {
    padding: 20px;
  }

  .intro-card h2 {
    font-size: 20px;
  }

  .intro-card p {
    font-size: 15px;
    line-height: 1.65;
  }

  .hours-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .addon-panel {
    padding: 18px 16px;
  }

  .addon-panel-header {
    align-items: flex-start;
  }

  .addon-panel-header h3 {
    font-size: 20px;
  }

  .ghost-btn {
    flex: none;
    padding: 8px 11px;
    font-size: 11px;
  }

  .addon-subtitle {
    font-size: 15px;
  }

  .addon-card {
    min-height: 0;
    padding: 16px;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .addon-image {
    width: 100%;
    height: 300px;
  }

  .addon-image img {
    border-radius: 14px;
  }

  .addon-content {
    min-height: 0;
  }

  .addon-content h3 {
    margin-bottom: 18px;
  }

  .addon-content > p {
    font-size: 16px;
  }

  .addon-purchase-row {
    margin-top: 26px;
  }

  .step-footer {
    padding-top: 22px;
  }

  .contact-panel {
    min-height: 0;
    padding: 22px 16px;
  }

  .contact-panel-header h3 {
    font-size: 20px;
  }

  .contact-subtitle {
    font-size: 15px;
  }

  .contact-fields {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .contact-field {
    font-size: 16px;
  }

  .contact-form-footer {
    padding-top: 28px;
  }

  .review-panel {
    padding: 22px 16px;
  }

  .review-panel-header h3 {
    font-size: 20px;
  }

  .review-subtitle {
    font-size: 15px;
  }

  .review-row,
  .review-line-item,
  .payment-row {
    gap: 16px;
    font-size: 15px;
  }

  .promo-block > label {
    font-size: 18px;
  }

  .calendar-field,
  .calendar-display,
  .calendar-popup {
    width: 100%;
  }

  .category-tab {
    flex-basis: 100%;
  }

  .ticket-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .ticket-row .counter {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .footer-main {
    padding: 18px 0 16px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .footer-logo-block {
    align-items: center;
  }

  .footer-logo-text {
    display: none;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .modal-backdrop {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 14px;
  }

  .nav-logo img {
    height: 100px;
  }

  .nav-inner {
    min-height: 116px;
  }

  .nav-logo-text {
    max-width: 95px;
    font-size: 11px;
  }

  .nav-lang-switch {
    gap: 2px;
  }

  .nav-lang {
    padding-inline: 6px;
    font-size: 12px;
  }

  .hero-copy h1 {
    font-size: 26px;
  }

  .cta-ticket-btn {
    font-size: 21px;
  }

  .stepper {
    gap: 6px;
  }

  .step-pill {
    font-size: 11px;
  }

  .addon-panel-header {
    flex-direction: column;
  }

  .contact-panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .addon-image {
    height: 270px;
  }

  .addon-purchase-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .addon-counter {
    align-self: flex-end;
  }

  .step-footer {
    flex-direction: column-reverse;
  }

  .step-footer-button {
    width: 100%;
  }

  .phone-control {
    grid-template-columns: 155px minmax(0, 1fr);
  }

  .contact-next {
    width: 100%;
  }

  .promo-control {
    grid-template-columns: minmax(0, 1fr);
  }

  .promo-apply,
  .proceed-payment {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

/* ===== Форма карты (модалка) ===== */
.payment-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 18px;
}
.payment-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.payment-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gem-brown);
}
.payment-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gem-border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--gem-dark);
  font-size: 16px;
  font-family: inherit;
  letter-spacing: .5px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.payment-field input:focus {
  outline: none;
  border-color: var(--gem-orange);
  box-shadow: 0 0 0 3px rgba(245, 124, 0, .15);
}
.payment-field input::placeholder {
  color: #b8aa92;
  letter-spacing: 1px;
}
.payment-field.has-error input {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, .12);
}
.payment-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.payment-error {
  color: #c0392b;
  font-size: 12px;
  min-height: 14px;
}
.payment-server-error {
  text-align: center;
  font-weight: 600;
}
.payment-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: #fdf6ea;
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--gem-brown);
}
.payment-summary-row strong {
  color: var(--gem-orange-deep);
  font-size: 18px;
}
.payment-submit {
  width: 100%;
  padding: 14px 20px;
  background: var(--gem-orange);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(245, 124, 0, .4);
}
.payment-submit:disabled,
.payment-submit.is-loading {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}
.payment-secure {
  text-align: center;
  font-size: 12px;
  color: #8a7d6a;
  margin: 0;
}
@media (max-width: 480px) {
  .payment-row-2 {
    grid-template-columns: 1fr;
  }
}
