* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-charcoal);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.55;
}

button,
input,
select,
textarea {
  font: inherit;
}

.gk-app {
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.55;
}

.gk-app button,
.gk-app input,
.gk-app select,
.gk-app textarea {
  appearance: none;
  -webkit-appearance: none;
  border-color: currentColor;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

/* Remove the mobile browser's native blue tap-highlight overlay that flashes
   over tappable cards/buttons on press. Explicit :active / :focus-visible /
   .is-selected states below still provide all feedback. */
button,
a,
label,
[role="radio"],
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

.gk-app {
  min-height: 100vh;
  overflow: hidden;
}

.gk-app *,
.gk-app *::before,
.gk-app *::after {
  min-width: 0;
}

.gk-shell {
  width: min(var(--page-max), calc(100% - 32px));
  margin: 0 auto;
}

.gk-eyebrow {
  margin: 0 0 var(--space-12);
  color: var(--color-green);
  font-size: var(--text-caption);
  font-weight: var(--weight-extrabold);
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.gk-eyebrow-light {
  color: var(--color-grape);
}

.gk-section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -1px;
}

.gk-section-heading h2 span {
  display: inline-block;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#gokids-booking-app.gk-app .gk-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  padding: 16px 28px;
  border: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: var(--weight-extrabold);
  line-height: 1.15;
  text-decoration: none;
  white-space: normal;
  transition: transform 90ms ease, box-shadow 90ms ease, background-color 160ms ease, border-color 160ms ease;
}

#gokids-booking-app.gk-app .gk-btn:focus-visible,
.gk-choice:focus-visible,
.gk-age-card:focus-visible,
.gk-input:focus-visible,
.gk-checkbox-card:has(:focus-visible) {
  outline: 3px solid var(--color-blue);
  outline-offset: 2px;
}

#gokids-booking-app.gk-app .gk-btn-pink {
  color: var(--color-paper);
  background: var(--color-pink);
  box-shadow: 0 4px 0 var(--press-pink);
}

#gokids-booking-app.gk-app .gk-btn-pink:hover {
  color: var(--color-paper);
}

#gokids-booking-app.gk-app .gk-btn-blue {
  color: var(--color-paper);
  background: var(--color-blue);
  box-shadow: 0 4px 0 var(--press-blue);
}

#gokids-booking-app.gk-app .gk-btn-blue:hover {
  color: var(--color-paper);
}

#gokids-booking-app.gk-app .gk-btn-green {
  color: var(--color-ink);
  background: var(--color-green);
  box-shadow: 0 4px 0 var(--press-green);
}

#gokids-booking-app.gk-app .gk-btn-green:hover {
  color: var(--color-ink);
}

#gokids-booking-app.gk-app .gk-btn:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 transparent;
}

#gokids-booking-app.gk-app .gk-btn[disabled] {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

#gokids-booking-app.gk-app .gk-btn.gk-btn-gradient,
#gokids-booking-app.gk-app .gk-btn.gk-btn-gradient:hover,
#gokids-booking-app.gk-app .gk-btn.gk-btn-gradient:focus,
#gokids-booking-app.gk-app .gk-btn.gk-btn-gradient:active {
  color: var(--color-paper);
  background: var(--gradient-brand);
  box-shadow: 0 4px 0 var(--press-magenta);
}

#gokids-booking-app.gk-app .gk-btn.gk-btn-ghost {
  border: 3px solid var(--color-blue);
  background: transparent;
  color: var(--color-blue);
  box-shadow: none;
}

#gokids-booking-app.gk-app .gk-btn.gk-btn-ghost:hover,
#gokids-booking-app.gk-app .gk-btn.gk-btn-ghost:focus,
#gokids-booking-app.gk-app .gk-btn.gk-btn-ghost:focus-visible {
  border-color: var(--color-blue);
  background: var(--color-blue-wash);
  color: var(--color-blue);
  box-shadow: none;
}

#gokids-booking-app.gk-app .gk-btn.gk-btn-ghost:active {
  border-color: var(--color-blue);
  background: transparent;
  color: var(--color-blue);
  box-shadow: none;
}

.gk-section {
  padding: var(--section-pad-y) 0;
}

.gk-booking-section {
  background: var(--color-cloud);
}

/* The homepage balloon loader is intentionally global. During authoritative
   booking recovery, the booking status is the only loading UI that should be
   visible and the hero entrance lock must not trap the restored scroll state. */
html.gk-booking-recovery-active .gk-loader {
  display: none !important;
}

html.gk-booking-recovery-active {
  overflow: auto !important;
  overscroll-behavior: auto !important;
}

html.gk-booking-recovery-active body {
  overflow: visible !important;
  overscroll-behavior: auto !important;
}

.gk-authoritative-recovery-shell {
  display: flex;
  min-height: 360px;
  align-items: center;
  background: var(--color-cloud);
  text-align: center;
}

.gk-authoritative-recovery-shell h2 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
}

.gk-app.is-final-noneditable {
  min-height: auto;
}

.gk-booking-section.is-final-noneditable {
  padding-bottom: 0;
}

.gk-booking-section.is-final-noneditable .gk-booking-layout {
  grid-template-columns: minmax(0, 1fr);
}

.gk-booking-section.is-final-noneditable .gk-wizard {
  width: min(100%, 820px);
  margin-inline: auto;
}

.gk-section-heading {
  max-width: 760px;
  margin-bottom: var(--space-48);
}

.gk-section-heading h2 {
  color: var(--color-ink);
  font-size: clamp(34px, 5vw, var(--text-display));
  line-height: 1.04;
}

.gk-section-heading p:not(.gk-eyebrow) {
  margin: var(--space-16) 0 0;
  color: var(--color-slate);
  font-weight: 700;
}

.gk-booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.38fr);
  gap: var(--space-24);
  align-items: start;
}

.gk-wizard,
.gk-summary-card {
  border: 3px solid var(--color-line);
  border-radius: var(--radius-xl);
  background: var(--color-paper);
  box-shadow: 0 4px 0 var(--color-line);
}

.gk-wizard {
  min-width: 0;
  padding: clamp(20px, 4vw, 36px);
}

.gk-progress {
  position: relative;
  margin-bottom: var(--space-32);
}

.gk-progress-line {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 8px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: var(--color-line);
}

.gk-progress-line span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--gradient-brand);
  transition: width 180ms ease;
}

.gk-progress ol {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-8);
  list-style: none;
  margin: 0;
  padding: 0;
}

.gk-step-pill {
  display: grid;
  justify-items: center;
  color: var(--color-slate);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.gk-step-btn {
  display: grid;
  justify-items: center;
  gap: var(--space-8);
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-align: center;
}

.gk-step-btn:hover {
  border-color: transparent;
  background: transparent;
  color: inherit;
  box-shadow: none;
  transform: none;
}

.gk-step-btn:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 4px;
  border-radius: var(--radius-md);
}

.gk-step-number {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 3px solid var(--color-line);
  border-radius: var(--radius-pill);
  background: var(--color-paper);
  color: var(--color-slate);
  box-shadow: 0 3px 0 var(--color-line);
}

.gk-step-pill.is-active .gk-step-number,
.gk-step-pill.is-complete .gk-step-number {
  border-color: var(--color-pink);
  background: var(--color-pink);
  color: var(--color-paper);
  box-shadow: 0 3px 0 var(--press-pink);
}

.gk-step-pill.is-complete .gk-step-number {
  border-color: var(--color-green);
  background: var(--color-green);
  color: var(--color-ink);
  box-shadow: 0 3px 0 var(--press-green);
}

.gk-step-title {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, var(--text-title));
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.4px;
}

.gk-step-intro {
  margin: var(--space-12) 0 var(--space-32);
  color: var(--color-slate);
  font-weight: 700;
}

.gk-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-16);
}

.gk-field-grid.gk-field-grid-one {
  grid-template-columns: 1fr;
}

.gk-field {
  display: grid;
  gap: var(--space-8);
}

.gk-label {
  display: block;
  margin: 0;
  color: var(--color-ink);
  font-weight: 800;
  line-height: 1.35;
}

.gk-input {
  min-height: 52px;
  width: 100%;
  border: 2px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-cloud);
  color: var(--color-ink);
  padding: 14px 16px;
  font-weight: 700;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.gk-input::placeholder {
  color: var(--color-slate);
}

.gk-input:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px var(--color-blue-wash);
  outline: none;
}

textarea.gk-input {
  min-height: 120px;
  resize: vertical;
}

.gk-optional-mark {
  color: var(--color-red);
  font-size: 0.72em;
  font-weight: 900;
  vertical-align: super;
}

.gk-helper {
  margin: 0;
  color: var(--color-slate);
  font-size: var(--text-body-sm);
  font-weight: 700;
}

.gk-error {
  margin: var(--space-16) 0 0;
  padding: 12px 16px;
  border: 2px solid var(--color-red);
  border-radius: var(--radius-sm);
  color: var(--color-red);
  background: var(--color-red-wash);
  font-weight: 800;
}

.gk-error-btn {
  display: block;
  width: 100%;
  text-align: left;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.gk-error-btn:hover {
  background: var(--color-red);
  color: #fff;
}

.gk-error-btn:active {
  transform: translateY(1px);
}

.gk-resume-notice,
.gk-context-panel {
  margin: 0 0 var(--space-20);
  padding: var(--space-16) var(--space-20);
  border: 2px solid var(--color-green);
  border-radius: var(--radius-sm);
  color: var(--color-ink);
  background: var(--color-green-wash);
  font-weight: var(--weight-bold);
}

.gk-context-panel {
  padding: var(--space-24);
  border-color: var(--color-blue);
  background: var(--color-blue-wash);
}

.gk-context-panel h3,
.gk-context-panel p {
  margin-top: 0;
}

.gk-context-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  margin-top: var(--space-20);
}

.gk-context-actions .gk-btn {
  text-decoration: none;
}

.gk-context-panel--missing,
.gk-context-panel--recovery,
.gk-context-panel--temporary {
  border-color: var(--color-red);
  background: var(--color-red-wash);
}

.gk-context-actions .gk-btn:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 3px;
}

.gk-hold-countdown {
  margin: var(--space-16) 0;
  padding: 12px 16px;
  border: 2px solid var(--color-green);
  border-radius: var(--radius-sm);
  color: var(--color-ink);
  background: var(--color-green-wash);
}

.gk-hold-countdown strong {
  color: var(--press-green);
  font-family: var(--font-display);
  font-size: 1.08em;
}

.gk-summary-hold {
  margin: var(--space-16) 0 0;
  padding: 10px 14px;
  text-align: center;
  font-size: clamp(12px, 3.6vw, 15px);
  font-weight: 700;
  white-space: nowrap;
}

.gk-summary-hold strong {
  font-size: 1em;
}

.gk-summary-hold[hidden] {
  display: none;
}

.gk-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-16);
}

.gk-package-choice-grid {
  /* The selected card gains the child counter while the old one loses it.
     Keep that expected height swap from triggering browser scroll anchoring. */
  overflow-anchor: none;
}

.gk-choice-grid.gk-choice-grid-themes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gk-age-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(10, minmax(52px, 1fr));
  gap: var(--space-8);
}

.gk-choice,
.gk-checkbox-card,
.gk-age-card {
  position: relative;
  display: grid;
  min-height: 124px;
  gap: var(--space-8);
  align-content: start;
  width: 100%;
  border: 3px solid var(--card-border, var(--color-line));
  border-radius: var(--radius-lg);
  background: var(--color-paper);
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 0 var(--card-press, var(--color-line));
  cursor: pointer;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: normal;
  transition: transform 180ms cubic-bezier(.34,1.56,.64,1), box-shadow 180ms ease, border-color 160ms ease, background-color 160ms ease;
}

.gk-choice::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--color-paper);
  border-radius: var(--radius-pill);
  background: var(--card-border, var(--color-pink));
  box-shadow: 0 0 0 3px var(--card-border, var(--color-pink)), 0 2px 0 var(--card-press, var(--press-pink));
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 140ms ease, transform 140ms ease;
}

.gk-choice.is-selected::after {
  opacity: 1;
  transform: scale(1);
}

/* Payment cards (step 6, "Izbira plačila") don't use the radio dot — their
   selection is shown by the border/background + the pulse below. */
.gk-payment-grid .gk-choice::after {
  content: none;
}

/* One-shot ring pulse when a card becomes selected, so a tap registers clearly
   even without the hover lift. Fires once as the .is-selected class is added. */
.gk-choice::before,
.gk-checkbox-card::before,
.gk-age-card::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 3px solid var(--card-border, var(--color-pink));
  opacity: 0;
  pointer-events: none;
}

.gk-choice.is-selected::before,
.gk-checkbox-card.is-selected::before,
.gk-age-card.is-selected::before {
  animation: gk-select-pulse 480ms cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes gk-select-pulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.07);
  }
}

/* Addon cards re-render the whole grid on every toggle, so keying the pulse
   off .is-selected would replay it on every selected sibling. Gate it to the
   single card just toggled (marked .gk-pulse in JS) instead. */
.gk-addon-card.is-selected::before {
  animation: none;
}

.gk-choice-package.is-selected::before {
  animation: none;
}

.gk-addon-card.gk-pulse::before {
  animation: gk-select-pulse 480ms cubic-bezier(.34, 1.56, .64, 1);
}

.gk-age-card {
  min-height: 68px;
  align-content: center;
  justify-items: center;
  gap: var(--space-4);
  padding: 10px 8px 12px;
  border-radius: var(--radius-md);
  text-align: center;
}

.gk-choice:hover,
.gk-checkbox-card:hover,
.gk-age-card:hover {
  border-color: var(--card-border, var(--color-line));
  background: var(--color-paper);
  color: var(--color-charcoal);
}

/* Lift + playful tilt only for real pointing devices (mouse). Touch devices —
   tablet/mobile — have no true hover, so cards stay flat with no movement. */
@media (hover: hover) and (pointer: fine) {
  .gk-choice:hover,
  .gk-checkbox-card:hover,
  .gk-age-card:hover {
    transform: translateY(-4px) rotate(var(--wobble, 0deg));
    box-shadow: var(--elev-float), 0 4px 0 var(--card-press, var(--color-line));
  }
}

.gk-app .gk-choice:hover,
.gk-app .gk-checkbox-card:hover,
.gk-app .gk-age-card:hover {
  border-color: var(--card-border, var(--color-line));
  background: var(--color-paper);
  color: var(--color-charcoal);
}

.gk-choice.is-selected:hover,
.gk-checkbox-card.is-selected:hover,
.gk-age-card.is-selected:hover {
  background: var(--card-wash, var(--color-purple-wash));
}

.gk-choice-package.is-featured:not(.is-selected):hover {
  background: linear-gradient(180deg, var(--color-paper) 0%, #FDECFA 100%);
}

.gk-choice:hover strong,
.gk-checkbox-card:hover strong,
.gk-age-card:hover strong {
  color: var(--color-ink);
}

.gk-app .gk-choice:hover strong,
.gk-app .gk-checkbox-card:hover strong,
.gk-app .gk-age-card:hover strong {
  color: var(--color-ink);
}

.gk-choice:hover span,
.gk-checkbox-card:hover span,
.gk-age-card:hover span {
  color: var(--color-slate);
}

.gk-app .gk-choice:hover span,
.gk-app .gk-checkbox-card:hover span,
.gk-app .gk-age-card:hover span {
  color: var(--color-slate);
}

.gk-choice.is-selected,
.gk-checkbox-card.is-selected,
.gk-age-card.is-selected {
  border-color: var(--card-border, var(--color-line));
  background: var(--card-wash, var(--color-purple-wash));
  box-shadow: 0 4px 0 var(--card-press, var(--color-line));
}

.gk-choice strong,
.gk-checkbox-card strong,
.gk-age-card strong {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  overflow-wrap: anywhere;
  white-space: normal;
}

.gk-checkbox-card strong {
  display: block;
  padding-right: 52px;
}

.gk-consent-card strong {
  padding-right: 0;
}

.gk-age-card strong {
  font-size: 24px;
  line-height: 1;
}

.gk-choice span,
.gk-checkbox-card span,
.gk-age-card span {
  color: var(--color-slate);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.gk-age-card span {
  font-size: 12px;
  line-height: 1.15;
}

.gk-package-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 2px 0 4px;
}

.gk-choice .gk-package-meta {
  color: inherit;
  font-weight: inherit;
}

.gk-package-price {
  color: color-mix(in srgb, var(--card-border, var(--color-pink)) 68%, var(--color-ink));
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  overflow-wrap: normal;
}

.gk-choice:hover .gk-menu-price,
.gk-choice:hover .gk-payment-price,
.gk-choice:hover .gk-payment-price b {
  color: color-mix(in srgb, var(--card-border, var(--color-pink)) 68%, var(--color-ink));
}

.gk-app .gk-choice:hover .gk-menu-price,
.gk-app .gk-choice:hover .gk-payment-price,
.gk-app .gk-choice:hover .gk-payment-price b {
  color: color-mix(in srgb, var(--card-border, var(--color-pink)) 68%, var(--color-ink));
}

.gk-package-detail {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  max-width: 100%;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  color: var(--color-charcoal);
  background: color-mix(in srgb, var(--card-wash, var(--color-cloud)) 62%, var(--color-paper));
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: normal;
}

.gk-choice .gk-package-detail {
  color: var(--color-charcoal);
}

.gk-app .gk-choice:hover .gk-package-detail {
  color: var(--color-charcoal);
}

.gk-choice-package {
  min-height: 230px;
  gap: var(--space-16);
  align-content: start;
  border-radius: var(--radius-xl);
  padding: var(--space-24);
}

.gk-choice-package-wrap {
  position: relative;
  min-width: 0;
}

.gk-choice-package-wrap .gk-choice-package {
  width: 100%;
}

.gk-choice-package-wrap.is-selected,
.gk-choice-package-wrap:has(.gk-package-kids) {
  border: 3px solid var(--card-border, var(--color-line));
  border-radius: var(--radius-xl);
  background: var(--card-wash, var(--color-purple-wash));
  box-shadow: 0 4px 0 var(--card-press, var(--color-line));
  transition: transform 180ms cubic-bezier(.34,1.56,.64,1), box-shadow 180ms ease;
}

.gk-choice-package-wrap:is(.is-selected, :has(.gk-package-kids)) .gk-choice-package,
#gokids-booking-app.gk-app .gk-choice-package-wrap:is(.is-selected, :has(.gk-package-kids)) .gk-choice-package,
#gokids-booking-app.gk-app .gk-choice-package-wrap:is(.is-selected, :has(.gk-package-kids)) .gk-choice-package:hover,
#gokids-booking-app.gk-app .gk-choice-package-wrap:is(.is-selected, :has(.gk-package-kids)) .gk-choice-package:focus {
  border: 0;
  border-radius: calc(var(--radius-xl) - 3px) calc(var(--radius-xl) - 3px) 0 0;
  background: transparent;
  box-shadow: none;
}

/* The selected wrapper owns the full-card hover lift. Keeping it off the
   upper button prevents the lower child-count section from being left behind. */
.gk-choice-package-wrap:is(.is-selected, :has(.gk-package-kids)) .gk-choice-package:hover {
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .gk-choice-package-wrap:is(.is-selected, :has(.gk-package-kids)):hover {
    transform: translateY(-4px) rotate(var(--wobble, 0deg));
    box-shadow: var(--elev-float), 0 4px 0 var(--card-press, var(--color-line));
  }
}

.gk-package-kids {
  display: grid;
  gap: var(--space-12);
  padding: 0 var(--space-24) var(--space-24);
}

.gk-package-kids-label {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
}

.gk-package-qty-controls {
  width: 100%;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
}

.gk-menu-unit-price { display: block; margin-top: 4px; color: var(--color-slate); font-size: 14px; font-weight: 800; }

.gk-choice-package .gk-badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  margin: 0;
  font-weight: 600;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.gk-choice-package strong {
  font-size: clamp(28px, 3vw, 36px);
}

.gk-choice-package .gk-package-meta {
  gap: var(--space-12);
  margin: 0;
}

.gk-choice-package .gk-package-price {
  color: var(--card-border, var(--color-pink));
  font-size: clamp(42px, 5vw, 54px);
}

.gk-choice-package:hover .gk-package-price,
.gk-choice-package:focus .gk-package-price,
.gk-choice-package.is-selected:hover .gk-package-price {
  color: var(--card-border, var(--color-pink));
}

/* Featured (Mega) card: subtle magenta-tinted resting background, matching
   the Cenik price cards. Selecting it deepens to the wash tint. */
.gk-choice-package.is-featured:not(.is-selected) {
  background: linear-gradient(180deg, var(--color-paper) 0%, #FDECFA 100%);
}

.gk-choice-package .gk-package-detail {
  min-height: 42px;
  padding: 8px 16px;
  font-size: 17px;
}

.gk-choice small,
.gk-checkbox-card small {
  color: var(--color-charcoal);
  font-size: var(--text-body-sm);
  font-weight: 700;
  overflow-wrap: anywhere;
  white-space: normal;
}

.gk-choice.gk-choice-package small {
  max-width: 24ch;
  font-size: 18px;
  line-height: 1.42;
}

.gk-package-appointment-context {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin: 0 0 var(--space-20);
  padding: 8px 14px;
  border: 2px solid var(--color-line);
  border-radius: var(--radius-pill);
  background: var(--color-cloud);
  color: var(--color-ink);
  font-size: var(--text-body-sm);
  font-weight: var(--weight-extrabold);
  line-height: 1.2;
}

/* "Potrjujem paket ..." overlay: covers the card being confirmed without
   affecting layout, so confirming a package never shifts the grid. */
.gk-package-assigning {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: inherit;
  text-align: center;
  background: var(--color-paper);
  background: color-mix(in srgb, var(--color-paper) 85%, transparent);
  color: var(--color-grape);
  font-size: var(--text-body-sm);
  font-weight: var(--weight-extrabold);
  pointer-events: none;
}

.gk-choice-package.is-assigning .gk-package-assigning {
  display: flex;
}

/* Theme cards: full-bleed image on top, name + note below (Figma layout) */
.gk-choice-theme {
  min-height: 0;
  gap: 0;
  align-content: start;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.gk-choice-theme-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--card-wash, var(--color-cloud));
}

.gk-choice-theme-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms cubic-bezier(.34,1.56,.64,1);
}

/* Custom themes may have no image — show a neutral placeholder, never a broken icon. */
.gk-choice-theme-media.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gk-choice-theme-media.is-empty::after {
  content: "🎉";
  font-size: 32px;
  opacity: .5;
}

/* Zoom the theme image only on real pointing devices (mouse) — no touch hover. */
@media (hover: hover) and (pointer: fine) {
  .gk-choice-theme:hover .gk-choice-theme-media img {
    transform: scale(1.04);
  }
}

.gk-choice-theme-body {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 16px 20px 20px;
}

.gk-choice-theme-body strong {
  display: block;
  max-width: 100%;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-plum);
  overflow-wrap: anywhere;
  white-space: normal;
}

.gk-choice-theme-body span {
  display: block;
  max-width: 100%;
  font-size: 16px;
  line-height: 1.3;
  overflow-wrap: anywhere;
  white-space: normal;
}

.gk-choice-theme::after {
  top: 16px;
  right: 16px;
}

.gk-choice input,
.gk-checkbox-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gk-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  color: var(--color-paper);
  background: var(--color-red);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transform: rotate(-4deg);
}

.gk-badge-green {
  background: var(--color-green);
  color: var(--color-ink);
  -webkit-text-fill-color: var(--color-ink);
}

.gk-badge-brand {
  background: var(--gradient-brand);
  color: var(--color-paper);
  -webkit-text-fill-color: var(--color-paper);
}

.gk-app .gk-choice:hover .gk-badge {
  color: var(--color-paper);
}

.gk-app .gk-choice:hover .gk-badge-green {
  color: var(--color-ink);
}

.gk-calendar {
  display: grid;
  gap: var(--space-16);
  width: 100%;
  margin-bottom: var(--space-32);
  padding: var(--space-20);
  border: 3px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-cloud);
}

.gk-calendar-lock {
  position: relative;
  margin-bottom: var(--space-32);
}

.gk-calendar-lock .gk-calendar {
  margin-bottom: 0;
}

.gk-calendar.is-locked {
  opacity: 0.5;
  filter: grayscale(0.4);
  pointer-events: none;
}

.gk-lock-note {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-16);
  padding: var(--space-24);
  text-align: center;
}

.gk-lock-note-text {
  display: grid;
  gap: 4px;
  padding: var(--space-16) var(--space-20);
  border-radius: var(--radius-lg);
  background: var(--color-paper);
  box-shadow: 0 6px 20px rgba(16, 23, 58, 0.16);
}

.gk-lock-note-text strong {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 18px;
}

.gk-lock-note-text small {
  color: var(--color-slate);
  font-size: 13px;
  line-height: 1.4;
}

#gokids-booking-app.gk-app .gk-btn-sm {
  padding: 10px 18px;
  font-size: 14px;
  white-space: nowrap;
}

.gk-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
}

.gk-calendar-title {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
}

.gk-calendar-nav {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--color-blue);
  border-radius: var(--radius-md);
  background: var(--color-paper);
  color: var(--color-blue);
  box-shadow: 0 4px 0 var(--press-blue);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 0;
  padding: 0 0 2px;
  transition: transform 90ms ease, box-shadow 90ms ease, background-color 160ms ease;
}

.gk-calendar-nav:hover {
  color: var(--color-blue);
}

.gk-calendar-nav:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 var(--press-blue);
}

.gk-calendar-nav:disabled {
  cursor: not-allowed;
  opacity: 0.38;
  transform: none;
}

.gk-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: var(--space-8);
}

.gk-calendar-weekday {
  color: var(--color-slate);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.gk-calendar-day {
  position: relative;
  display: grid;
  min-height: 68px;
  place-items: center;
  border: 3px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-paper);
  color: var(--color-ink);
  box-shadow: 0 4px 0 var(--color-line);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  padding: 0;
  text-align: center;
  transition: transform 140ms cubic-bezier(.34,1.56,.64,1), box-shadow 140ms ease, background-color 160ms ease, border-color 160ms ease;
}

.gk-calendar-day > span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: inherit;
  line-height: 1;
}

/* Calendar day lift only on real pointing devices (mouse) — no touch hover. */
@media (hover: hover) and (pointer: fine) {
  .gk-calendar-day:hover:not(:disabled) {
    color: var(--color-ink);
    transform: translateY(-3px);
    border-color: var(--color-blue);
    box-shadow: var(--elev-float), 0 4px 0 var(--press-blue);
  }
}

.gk-calendar-day.is-selected {
  border-color: var(--color-green);
  background: var(--color-green-wash);
  box-shadow: 0 4px 0 var(--press-green);
}

.gk-calendar-day.is-today:not(.is-selected) {
  border-color: var(--color-blue);
}

.gk-calendar-day:disabled {
  cursor: not-allowed;
  opacity: 0.38;
  transform: none;
}

.gk-calendar-day.is-empty {
  visibility: hidden;
}

.gk-calendar-day small {
  position: absolute;
  right: 2px;
  bottom: 6px;
  left: 2px;
  color: var(--color-red);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

/* WordPress themes often ship broad button:hover/button:focus rules. Keep the
   wizard's interactive states scoped to the Go Kids visual system. */
#gokids-booking-app.gk-app button,
#gokids-booking-app.gk-app [role="radio"],
#gokids-booking-app.gk-app .gk-checkbox-card {
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

#gokids-booking-app.gk-app button,
#gokids-booking-app.gk-app input,
#gokids-booking-app.gk-app select,
#gokids-booking-app.gk-app textarea {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
}

#gokids-booking-app.gk-app .gk-btn,
#gokids-booking-app.gk-app .gk-btn:hover,
#gokids-booking-app.gk-app .gk-btn:focus,
#gokids-booking-app.gk-app .gk-btn:active {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-extrabold);
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
}

#gokids-booking-app.gk-app .gk-input {
  border: 2px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

#gokids-booking-app.gk-app .gk-step-btn,
#gokids-booking-app.gk-app .gk-step-btn:hover,
#gokids-booking-app.gk-app .gk-step-btn:focus,
#gokids-booking-app.gk-app .gk-step-btn:active {
  border-color: transparent;
  background: transparent;
  color: inherit;
  box-shadow: none;
  transform: none;
}

#gokids-booking-app.gk-app .gk-step-pill.is-active .gk-step-number,
#gokids-booking-app.gk-app .gk-step-pill.is-active .gk-step-btn:hover .gk-step-number {
  border-color: var(--color-pink);
  background: var(--color-pink);
  color: var(--color-paper);
  box-shadow: 0 3px 0 var(--press-pink);
}

#gokids-booking-app.gk-app .gk-step-pill.is-complete .gk-step-number,
#gokids-booking-app.gk-app .gk-step-pill.is-complete .gk-step-btn:hover .gk-step-number {
  border-color: var(--color-green);
  background: var(--color-green);
  color: var(--color-ink);
  box-shadow: 0 3px 0 var(--press-green);
}

#gokids-booking-app.gk-app .gk-step-btn:hover span:not(.gk-step-number),
#gokids-booking-app.gk-app .gk-step-btn:focus span:not(.gk-step-number) {
  color: inherit;
}

#gokids-booking-app.gk-app .gk-choice,
#gokids-booking-app.gk-app .gk-checkbox-card,
#gokids-booking-app.gk-app .gk-age-card {
  border-color: var(--card-border, var(--color-line));
  background: var(--color-paper);
  color: var(--color-charcoal);
}

#gokids-booking-app.gk-app .gk-choice:hover,
#gokids-booking-app.gk-app .gk-choice:focus,
#gokids-booking-app.gk-app .gk-checkbox-card:hover,
#gokids-booking-app.gk-app .gk-checkbox-card:focus-within,
#gokids-booking-app.gk-app .gk-age-card:hover,
#gokids-booking-app.gk-app .gk-age-card:focus {
  border-color: var(--card-border, var(--color-line));
  background: var(--color-paper);
  color: var(--color-charcoal);
}

#gokids-booking-app.gk-app .gk-choice:hover strong,
#gokids-booking-app.gk-app .gk-checkbox-card:hover strong,
#gokids-booking-app.gk-app .gk-age-card:hover strong,
#gokids-booking-app.gk-app .gk-choice:focus strong,
#gokids-booking-app.gk-app .gk-age-card:focus strong {
  color: var(--color-ink);
}

#gokids-booking-app.gk-app .gk-choice:hover span,
#gokids-booking-app.gk-app .gk-checkbox-card:hover span,
#gokids-booking-app.gk-app .gk-age-card:hover span,
#gokids-booking-app.gk-app .gk-choice:focus span,
#gokids-booking-app.gk-app .gk-age-card:focus span {
  color: var(--color-slate);
}

#gokids-booking-app.gk-app .gk-choice:hover small,
#gokids-booking-app.gk-app .gk-checkbox-card:hover small,
#gokids-booking-app.gk-app .gk-age-card:hover small,
#gokids-booking-app.gk-app .gk-choice:focus small,
#gokids-booking-app.gk-app .gk-age-card:focus small {
  color: var(--color-charcoal);
}

#gokids-booking-app.gk-app .gk-choice-package .gk-package-detail,
#gokids-booking-app.gk-app .gk-choice-package:hover .gk-package-detail,
#gokids-booking-app.gk-app .gk-choice-package:focus .gk-package-detail {
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-weight: 900;
}

#gokids-booking-app.gk-app .gk-choice-theme .gk-choice-theme-body strong,
#gokids-booking-app.gk-app .gk-choice-theme:hover .gk-choice-theme-body strong,
#gokids-booking-app.gk-app .gk-choice-theme:focus .gk-choice-theme-body strong {
  color: var(--color-plum);
  white-space: normal;
}

#gokids-booking-app.gk-app .gk-choice-theme .gk-choice-theme-body span,
#gokids-booking-app.gk-app .gk-choice-theme:hover .gk-choice-theme-body span,
#gokids-booking-app.gk-app .gk-choice-theme:focus .gk-choice-theme-body span {
  color: var(--color-slate);
  white-space: normal;
}

#gokids-booking-app.gk-app .gk-choice.is-selected,
#gokids-booking-app.gk-app .gk-choice.is-selected:hover,
#gokids-booking-app.gk-app .gk-checkbox-card.is-selected,
#gokids-booking-app.gk-app .gk-checkbox-card.is-selected:hover,
#gokids-booking-app.gk-app .gk-age-card.is-selected,
#gokids-booking-app.gk-app .gk-age-card.is-selected:hover {
  border-color: var(--card-border, var(--color-line));
  background: var(--card-wash, var(--color-purple-wash));
  color: var(--color-charcoal);
  box-shadow: 0 4px 0 var(--card-press, var(--color-line));
}

#gokids-booking-app.gk-app .gk-choice-package.is-featured:not(.is-selected),
#gokids-booking-app.gk-app .gk-choice-package.is-featured:not(.is-selected):hover {
  background: linear-gradient(180deg, var(--color-paper) 0%, #FDECFA 100%);
}

#gokids-booking-app.gk-app .gk-choice-package .gk-package-price,
#gokids-booking-app.gk-app .gk-choice-package:hover .gk-package-price,
#gokids-booking-app.gk-app .gk-choice-package:focus .gk-package-price,
#gokids-booking-app.gk-app .gk-choice-package.is-selected:hover .gk-package-price {
  color: var(--card-border, var(--color-pink));
}

#gokids-booking-app.gk-app .gk-calendar-nav,
#gokids-booking-app.gk-app .gk-calendar-nav:hover,
#gokids-booking-app.gk-app .gk-calendar-nav:focus {
  border-color: var(--color-blue);
  background: var(--color-paper);
  color: var(--color-blue);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 0;
  box-shadow: 0 4px 0 var(--press-blue);
}

#gokids-booking-app.gk-app .gk-calendar-nav:disabled,
#gokids-booking-app.gk-app .gk-calendar-nav:disabled:hover {
  border-color: var(--color-blue);
  background: var(--color-paper);
  color: var(--color-blue);
  box-shadow: 0 4px 0 var(--press-blue);
  opacity: 0.38;
}

#gokids-booking-app.gk-app .gk-calendar-day,
#gokids-booking-app.gk-app .gk-calendar-day:focus {
  border-color: var(--color-line);
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 4px 0 var(--color-line);
}

@media (hover: hover) and (pointer: fine) {
  #gokids-booking-app.gk-app .gk-calendar-day:hover:not(:disabled) {
    border-color: var(--color-blue);
    background: var(--color-paper);
    color: var(--color-ink);
    box-shadow: var(--elev-float), 0 4px 0 var(--press-blue);
  }
}

#gokids-booking-app.gk-app .gk-calendar-day:hover > span,
#gokids-booking-app.gk-app .gk-calendar-day:focus > span,
#gokids-booking-app.gk-app .gk-calendar-day.is-selected:hover > span {
  color: inherit;
}

#gokids-booking-app.gk-app .gk-calendar-day.is-selected,
#gokids-booking-app.gk-app .gk-calendar-day.is-selected:hover {
  border-color: var(--color-green);
  background: var(--color-green-wash);
  color: var(--color-ink);
  box-shadow: 0 4px 0 var(--press-green);
}

#gokids-booking-app.gk-app .gk-calendar-day.is-today:not(.is-selected) {
  border-color: var(--color-blue);
}

#gokids-booking-app.gk-app .gk-calendar-day:disabled,
#gokids-booking-app.gk-app .gk-calendar-day:disabled:hover {
  border-color: var(--color-line);
  background: var(--color-paper);
  color: var(--color-ink);
  box-shadow: 0 4px 0 var(--color-line);
  opacity: 0.38;
}

#gokids-booking-app.gk-app .gk-calendar-day.is-today:disabled,
#gokids-booking-app.gk-app .gk-calendar-day.is-today:disabled:hover {
  border-color: var(--color-blue);
  box-shadow: 0 4px 0 var(--press-blue);
}

#gokids-booking-app.gk-app .gk-calendar-title {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
}

#gokids-booking-app.gk-app .gk-calendar-weekday {
  color: var(--color-slate);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

#gokids-booking-app.gk-app .gk-calendar-day small {
  color: var(--color-red);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

#gokids-booking-app.gk-app .gk-time-btn,
#gokids-booking-app.gk-app .gk-time-btn:hover,
#gokids-booking-app.gk-app .gk-time-btn:focus {
  border-color: var(--color-line);
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 900;
  box-shadow: 0 4px 0 var(--color-line);
}

#gokids-booking-app.gk-app .gk-time-btn.is-selected,
#gokids-booking-app.gk-app .gk-time-btn.is-selected:hover {
  border-color: var(--color-green);
  background: var(--color-green-wash);
  color: var(--color-ink);
  box-shadow: 0 4px 0 var(--press-green);
}

#gokids-booking-app.gk-app .gk-time-btn span:first-child,
#gokids-booking-app.gk-app .gk-time-btn:hover span:first-child,
#gokids-booking-app.gk-app .gk-time-btn:focus span:first-child {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
}

#gokids-booking-app.gk-app .gk-time-btn span:last-child,
#gokids-booking-app.gk-app .gk-time-btn:hover span:last-child,
#gokids-booking-app.gk-app .gk-time-btn:focus span:last-child {
  color: var(--color-slate);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gk-time-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-12);
}

.gk-time-btn {
  position: relative;
  display: grid;
  gap: 2px;
  min-height: 70px;
  border: 3px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-paper);
  color: var(--color-ink);
  box-shadow: 0 4px 0 var(--color-line);
  cursor: pointer;
  font-weight: 900;
}

.gk-time-btn:hover {
  color: var(--color-ink);
}

.gk-time-btn span:first-child {
  font-family: var(--font-display);
  font-size: 22px;
  overflow-wrap: anywhere;
}

.gk-time-btn span:last-child {
  color: var(--color-slate);
  font-size: 12px;
  font-weight: 900;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.gk-time-btn.is-selected {
  --card-border: var(--color-green);
  --card-press: var(--press-green);
  border-color: var(--color-green);
  background: var(--color-green-wash);
  box-shadow: 0 4px 0 var(--press-green);
}

.gk-time-btn[disabled] {
  cursor: not-allowed;
  opacity: 0.42;
}

.gk-menu-list,
.gk-addons-grid {
  display: grid;
  gap: var(--space-16);
}

.gk-menu-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gk-menu-price {
  color: color-mix(in srgb, var(--card-border, var(--color-pink)) 68%, var(--color-ink));
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  overflow-wrap: normal;
}

.gk-choice-menu {
  min-height: 206px;
}

.gk-choice-menu::after {
  display: none;
}

.gk-choice-menu.has-menu-illustration {
  padding-right: 112px;
}

.gk-menu-illustration {
  position: absolute;
  top: -38px;
  right: -30px;
  width: 90px;
  rotate: 7deg;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.gk-menu-illustration-classic {
  top: -34px;
  right: -24px;
  width: 88px;
}

.gk-addons-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  margin-top: var(--space-24);
}

.gk-checkbox-card {
  min-height: auto;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  padding-top: 28px;
  overflow: visible;
}

.gk-addon-card {
  display: block;
  min-height: 112px;
  padding: 28px 24px 22px;
}

.gk-addon-card.is-expanded {
  background: var(--color-pink-wash);
}

.gk-addon-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: var(--space-16);
  padding-right: 84px;
  cursor: pointer;
}

.gk-addon-card.is-unavailable {
  opacity: .68;
  filter: saturate(.72);
}

.gk-addon-card.is-unavailable .gk-addon-main {
  cursor: not-allowed;
}

.gk-addon-card.is-unavailable .gk-addon-unavailable-reason {
  color: var(--color-ink-soft, #646970);
  font-weight: 600;
}

.gk-addon-card.is-unavailable .gk-price-tag {
  opacity: .78;
}

.gk-addon-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.gk-addon-card .gk-addon-copy strong {
  padding-right: 0;
}

.gk-check-ui {
  width: 28px;
  height: 28px;
  border: 3px solid var(--card-border, var(--color-line));
  border-radius: 9px;
  background: var(--color-paper);
}

.gk-checkbox-card.is-selected .gk-check-ui {
  background: var(--color-green);
  box-shadow: inset 0 0 0 5px var(--color-paper);
}

.gk-checkbox-card .gk-price-tag {
  --tag-tilt: 15deg;
  position: absolute;
  top: -15px;
  right: -13px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  border: 3px solid var(--color-paper);
  border-radius: var(--radius-pill);
  color: var(--color-paper);
  background: var(--gradient-brand);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  max-width: calc(100% + 10px);
  transform: rotate(var(--tag-tilt));
  box-shadow: 0 8px 16px rgba(26, 10, 46, .24), 0 3px 0 var(--press-magenta);
  transition: transform 200ms cubic-bezier(.34, 1.56, .64, 1), box-shadow 200ms ease;
  pointer-events: none;
}

.gk-checkbox-card:hover .gk-price-tag,
#gokids-booking-app.gk-app .gk-checkbox-card:hover .gk-price-tag,
.gk-checkbox-card:has(:focus-visible) .gk-price-tag,
#gokids-booking-app.gk-app .gk-checkbox-card:has(:focus-visible) .gk-price-tag,
.gk-checkbox-card.is-selected .gk-price-tag,
#gokids-booking-app.gk-app .gk-checkbox-card.is-selected .gk-price-tag {
  color: var(--color-paper);
  transform: rotate(calc(var(--tag-tilt) * 0.35)) scale(1.08);
  box-shadow: 0 12px 22px rgba(26, 10, 46, .28), 0 3px 0 var(--press-magenta);
}

.gk-addon-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  margin-top: var(--space-16);
}

.gk-addon-quantity-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.gk-addon-card .gk-addon-quantity-label {
  color: var(--color-charcoal);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.gk-quantity-controls {
  display: grid;
  align-items: center;
  gap: var(--space-8);
}

.gk-addon-qty-controls {
  grid-template-columns: 44px minmax(60px, 84px) 44px;
  flex: 0 0 auto;
}

.gk-quantity-btn,
.gk-quantity-input,
#gokids-booking-app.gk-app .gk-quantity-btn,
#gokids-booking-app.gk-app .gk-quantity-input {
  width: 100%;
  height: 42px;
  border: 3px solid #9A96A1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.35);
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  box-shadow: none;
  transition: border-color 150ms ease, background 150ms ease;
}

.gk-quantity-btn,
#gokids-booking-app.gk-app .gk-quantity-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.gk-quantity-btn:hover:not(:disabled),
#gokids-booking-app.gk-app .gk-quantity-btn:hover:not(:disabled) {
  border-color: var(--color-charcoal);
  background: rgba(255, 255, 255, 0.6);
}

.gk-quantity-btn:focus-visible,
.gk-quantity-input:focus-visible,
#gokids-booking-app.gk-app .gk-quantity-btn:focus-visible,
#gokids-booking-app.gk-app .gk-quantity-input:focus-visible {
  outline: 3px solid var(--card-border, var(--color-blue));
  outline-offset: 2px;
  border-color: #9A96A1;
}

.gk-quantity-btn:disabled,
#gokids-booking-app.gk-app .gk-quantity-btn:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.gk-quantity-input {
  min-width: 0;
  appearance: textfield;
}

.gk-checkbox-card .gk-quantity-input {
  position: static;
  opacity: 1;
  pointer-events: auto;
}

.gk-quantity-input::-webkit-outer-spin-button,
.gk-quantity-input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.gk-addon-card .gk-addon-unit-price {
  color: var(--color-slate);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
}

.gk-payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: var(--space-16);
}

.gk-discount-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  padding: 8px 15px 9px;
  border-radius: 18px;
  color: var(--color-ink);
  background: var(--color-green);
  box-shadow: 0 6px 0 var(--press-green);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transform: rotate(8deg);
  white-space: nowrap;
}

/* Ensure the [hidden] attribute always wins over class-level `display`
   declarations (e.g. .gk-price-row/.gk-discount-badge). Without this,
   JS-hidden summary rows like "Popust" keep showing stale values. */
#gokids-booking-app.gk-app [hidden] {
  display: none !important;
}

.gk-price-old {
  color: var(--color-slate);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  white-space: nowrap;
}

.gk-price-new {
  color: var(--color-magenta);
  white-space: nowrap;
}

.gk-payment-discount-card {
  min-height: 200px;
  padding: 26px 26px 24px;
  overflow: visible;
}

.gk-payment-discount-card.has-discount strong {
  padding-right: 84px;
}

.gk-payment-discount-card.has-discount.is-selected {
  box-shadow: 0 8px 0 var(--press-pink);
}

.gk-payment-discount-card .gk-discount-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  min-width: 72px;
  padding: 10px 14px 12px;
  border-radius: 18px;
  font-size: 22px;
  transform: rotate(4deg);
}

.gk-payment-discount-card strong {
  max-width: 20ch;
  font-size: 25px;
  line-height: 1.1;
}

.gk-payment-price {
  display: inline-flex;
  width: fit-content;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 2px;
  color: var(--card-border, var(--color-pink));
  line-height: 1;
}

.gk-payment-price-stack {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 8px 0 6px;
}

.gk-payment-price-row {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

.gk-payment-price .gk-price-old {
  font-size: 22px;
}

.gk-payment-price b {
  color: color-mix(in srgb, var(--card-border, var(--color-pink)) 68%, var(--color-ink));
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  overflow-wrap: normal;
}

.gk-payment-price b.gk-price-new {
  color: var(--color-magenta);
  font-size: 44px;
  line-height: .9;
}

.gk-payment-price em {
  color: var(--color-ink);
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.gk-choice:hover .gk-payment-price em {
  color: var(--color-ink);
}

#gokids-booking-app.gk-app .gk-payment-discount-card.has-discount:not(.is-selected),
#gokids-booking-app.gk-app .gk-payment-discount-card.has-discount:not(.is-selected):hover,
#gokids-booking-app.gk-app .gk-payment-discount-card.has-discount:not(.is-selected):focus {
  background: var(--color-paper);
}

#gokids-booking-app.gk-app .gk-payment-discount-card.has-discount.is-selected,
#gokids-booking-app.gk-app .gk-payment-discount-card.has-discount.is-selected:hover {
  background: var(--card-wash, var(--color-pink-wash));
}

#gokids-booking-app.gk-app .gk-payment-discount-card .gk-discount-badge,
#gokids-booking-app.gk-app .gk-payment-discount-card:hover .gk-discount-badge,
#gokids-booking-app.gk-app .gk-payment-discount-card:focus .gk-discount-badge {
  color: var(--color-ink);
}

#gokids-booking-app.gk-app .gk-payment-discount-card .gk-price-old,
#gokids-booking-app.gk-app .gk-payment-discount-card:hover .gk-price-old,
#gokids-booking-app.gk-app .gk-payment-discount-card:focus .gk-price-old {
  color: var(--color-slate);
}

#gokids-booking-app.gk-app .gk-payment-discount-card .gk-price-new,
#gokids-booking-app.gk-app .gk-payment-discount-card:hover .gk-price-new,
#gokids-booking-app.gk-app .gk-payment-discount-card:focus .gk-price-new {
  color: var(--color-magenta);
}

.gk-review-box {
  display: grid;
  gap: var(--space-12);
  padding: var(--space-20);
  border: 3px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-cloud);
}

.gk-review-line {
  display: flex;
  justify-content: space-between;
  gap: var(--space-16);
  border-bottom: 2px dashed var(--color-line);
  padding-bottom: var(--space-8);
  min-width: 0;
  overflow-wrap: anywhere;
}

.gk-review-line:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.gk-review-line span:first-child {
  color: var(--color-slate);
  font-weight: 800;
}

.gk-review-line span:last-child {
  color: var(--color-ink);
  font-weight: 900;
  text-align: right;
}

.gk-review-line-discount span:first-child,
.gk-review-line-discount span:last-child {
  color: var(--press-green);
}

.gk-review-line span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.gk-wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: var(--space-16);
  margin-top: var(--space-32);
}

.gk-wizard-actions.is-first-step {
  justify-content: flex-end;
  margin-top: auto;
  padding-top: var(--space-24);
}

.gk-wizard-actions.is-first-step #gk-next-btn {
  margin-left: 0;
}

#gk-next-btn {
  margin-left: auto;
}

.gk-summary {
  position: sticky;
  top: 24px;
}

.gk-summary-card {
  min-width: 0;
  padding: var(--space-24);
}

.gk-summary-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
  margin-bottom: var(--space-8);
}

.gk-summary-top-row .gk-eyebrow {
  margin: 0;
}

.gk-summary-count {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--color-purple-wash);
  color: var(--press-grape);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.gk-summary-count.is-complete {
  background: var(--color-green);
  color: var(--color-ink);
  box-shadow: 0 2px 0 var(--press-green);
  transform: rotate(-2deg);
}

.gk-summary-top h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: var(--text-heading);
  font-weight: 700;
  line-height: 1.15;
}

.gk-summary-lines {
  margin-top: var(--space-20);
}

.gk-summary-line {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: var(--space-12);
  align-items: start;
  padding: var(--space-12) 0;
  border-bottom: 2px dashed var(--color-line);
}

.gk-summary-line:first-child {
  padding-top: 0;
}

.gk-summary-line:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.gk-summary-status {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  margin-top: 1px;
  border: 3px solid var(--color-line);
  border-radius: var(--radius-pill);
  background: var(--color-paper);
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.gk-summary-line.is-done .gk-summary-status {
  border-color: var(--color-green);
  background: var(--color-green);
  box-shadow: 0 2px 0 var(--press-green);
}

.gk-summary-line-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.gk-summary-line-label {
  color: var(--color-slate);
  font-size: 12px;
  font-weight: var(--weight-extrabold);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.gk-summary-line-value {
  color: var(--color-ink);
  font-size: var(--text-body-sm);
  font-weight: var(--weight-extrabold);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.gk-summary-line.is-pending .gk-summary-line-value,
.gk-summary-line.is-optional .gk-summary-line-value {
  color: var(--color-slate);
  font-weight: var(--weight-bold);
}

.gk-price-box {
  position: relative;
  display: grid;
  gap: var(--space-8);
  margin-top: var(--space-20);
  padding-top: var(--space-20);
  border-top: 3px solid var(--color-line);
}

.gk-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-16);
}

.gk-price-row span {
  color: var(--color-slate);
  font-size: 13px;
  font-weight: var(--weight-extrabold);
}

.gk-price-row strong {
  color: var(--color-ink);
  font-size: var(--text-body);
  font-weight: 900;
  white-space: nowrap;
}

.gk-price-row-discount span,
.gk-price-row-discount strong {
  color: var(--color-green);
}

.gk-price-divider {
  height: 3px;
  margin: 4px 0 2px;
  border-radius: var(--radius-pill);
  background: var(--color-line);
}

.gk-price-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  margin-top: var(--space-8);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--color-plum);
  box-shadow: 0 4px 0 var(--color-ink);
}

.gk-price-hero-label {
  color: var(--color-lilac-mist);
  font-size: 12px;
  font-weight: var(--weight-extrabold);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.gk-price-hero-values {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.gk-price-hero .gk-price-old {
  color: color-mix(in srgb, var(--color-lilac-mist) 72%, var(--color-slate));
  font-size: 18px;
  text-decoration-thickness: 2px;
}

.gk-price-hero strong {
  color: var(--color-paper);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
}

.gk-price-hero .gk-discount-badge {
  position: absolute;
  top: -17px;
  left: -16px;
  min-width: 72px;
  padding: 7px 12px 8px;
  border-radius: 14px;
  font-size: 18px;
  transform: rotate(-6deg);
}

.gk-summary-price-discounted .gk-price-hero strong {
  color: var(--color-magenta);
}

.gk-summary-note {
  margin: var(--space-20) 0 0;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--color-slate);
  background: var(--color-cloud);
  font-size: var(--text-caption);
  font-weight: var(--weight-bold);
}

.gk-summary-bar-hold {
  position: fixed;
  left: 50%;
  /* Sits ~22px behind the bar's top edge (bar top ≈ space-16 + 60px) so the
     pill's lower half tucks under the bar; extra bottom padding keeps the text
     in the visible upper half. Lower z-index than the bar lets it overlap. */
  bottom: calc(var(--space-16) + 38px + env(safe-area-inset-bottom, 0px));
  z-index: 59;
  display: none;
  width: min(340px, calc(100% - var(--space-48) * 2));
  /* Explicit translateX centering keeps the pill centered over the bar
     regardless of theme resets; both use the same containing block. */
  transform: translateX(-50%);
  padding: 9px 18px 24px;
  border: 2px solid var(--color-green);
  border-radius: var(--radius-md);
  background: var(--color-green-wash);
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.gk-summary-bar-hold strong {
  color: var(--press-green);
  font-family: var(--font-display);
  font-size: 1.08em;
}

.gk-summary-bar-hold.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(calc(100% + var(--space-24)));
}

.gk-summary-bar {
  position: fixed;
  left: 50%;
  bottom: calc(var(--space-16) + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  width: min(560px, calc(100% - var(--space-16) * 2));
  /* Explicit translateX centering instead of margin:auto + max-width, which
     failed to center against some WordPress theme resets on tablet. */
  transform: translateX(-50%);
  min-height: 60px;
  padding: 10px 18px;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--color-plum);
  box-shadow: 0 4px 0 var(--color-ink);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, opacity 180ms ease;
}

.gk-summary-bar .gk-discount-badge {
  position: absolute;
  top: -18px;
  right: 14px;
  min-width: 72px;
  padding: 7px 12px 8px;
  border-radius: 14px;
  font-size: 18px;
  transform: rotate(11deg);
}

.gk-summary-bar:hover {
  color: var(--color-paper);
}

.gk-summary-bar.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(calc(100% + var(--space-24)));
}

.gk-summary-bar:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 2px;
}

.gk-summary-bar .gk-summary-count {
  flex: none;
}

.gk-summary-bar-pay {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-8);
  min-width: 0;
  white-space: nowrap;
}

.gk-summary-bar-label {
  color: var(--color-lilac-mist);
  font-size: 12px;
  font-weight: var(--weight-extrabold);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.gk-summary-bar-values {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.gk-summary-bar .gk-price-old {
  color: color-mix(in srgb, var(--color-lilac-mist) 72%, var(--color-slate));
  font-size: 16px;
  text-decoration-thickness: 2px;
}

.gk-summary-bar-pay strong {
  color: var(--color-paper);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.gk-summary-bar-discounted {
  min-height: 60px;
  padding-right: 74px;
  border-radius: var(--radius-md);
}

.gk-summary-bar-discounted .gk-summary-bar-pay {
  gap: var(--space-12);
}

.gk-summary-bar-discounted .gk-summary-bar-pay strong {
  color: var(--color-magenta);
  font-size: 24px;
}

#gokids-booking-app.gk-app .gk-summary-bar,
#gokids-booking-app.gk-app .gk-summary-bar:hover,
#gokids-booking-app.gk-app .gk-summary-bar:focus,
#gokids-booking-app.gk-app .gk-summary-bar:focus-visible,
#gokids-booking-app.gk-app .gk-summary-bar:active {
  color: var(--color-paper);
  /* Pin the background against WordPress theme rules (e.g. button:active)
     that would otherwise repaint the bar on tap. ID specificity wins. */
  background: var(--color-plum);
  box-shadow: 0 4px 0 var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  font-weight: var(--weight-bold);
  line-height: 1.15;
  text-transform: none;
}

#gokids-booking-app.gk-app .gk-summary-bar:active {
  transform: translateX(-50%) translateY(4px);
  box-shadow: 0 0 0 var(--color-ink);
}

#gokids-booking-app.gk-app .gk-summary-bar .gk-summary-count {
  color: var(--press-grape);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

#gokids-booking-app.gk-app .gk-summary-bar-label {
  color: var(--color-lilac-mist);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--weight-extrabold);
  letter-spacing: 0.3px;
  line-height: 1;
  text-transform: uppercase;
}

#gokids-booking-app.gk-app .gk-summary-bar .gk-price-old {
  color: color-mix(in srgb, var(--color-lilac-mist) 72%, var(--color-slate));
}

#gokids-booking-app.gk-app .gk-summary-bar-pay strong {
  color: var(--color-paper);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

#gokids-booking-app.gk-app .gk-summary-bar-discounted .gk-summary-bar-pay strong {
  color: var(--color-magenta);
  font-size: 24px;
}

.gk-success-panel {
  display: grid;
  gap: var(--space-16);
  padding: var(--space-32);
  border: 3px solid var(--color-green);
  border-radius: var(--radius-xl);
  background: var(--color-green-wash);
  box-shadow: 0 4px 0 var(--press-green);
}

.gk-success-panel h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: var(--text-title);
  font-weight: 700;
  line-height: 1.05;
}

.gk-success-panel p {
  margin: 0;
  color: var(--color-charcoal);
  font-weight: 800;
}

@media (max-width: 980px) {
  .gk-booking-layout {
    grid-template-columns: 1fr;
  }

  .gk-summary {
    position: static;
  }

  .gk-summary-bar {
    display: flex;
  }

  .gk-summary-bar-hold {
    display: block;
  }

  .gk-choice-grid.gk-choice-grid-themes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gk-age-grid {
    grid-template-columns: repeat(5, minmax(52px, 1fr));
  }

  .gk-menu-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gk-payment-discount-card {
    padding: 22px;
  }
}

@media (max-width: 720px) {
  :root {
    --section-pad-y: 72px;
  }

  .gk-shell {
    width: min(var(--page-max), calc(100% - 24px));
  }

  body {
    font-size: 16px;
  }

  .gk-wizard-actions {
    flex-direction: column-reverse;
  }

  #gokids-booking-app.gk-app .gk-btn {
    width: 100%;
  }

  .gk-wizard-actions.is-first-step {
    align-items: flex-end;
  }

  .gk-wizard-actions.is-first-step #gk-next-btn {
    width: auto;
    max-width: 100%;
  }

  #gk-next-btn {
    margin-left: 0;
  }

  .gk-section-heading {
    margin-bottom: var(--space-32);
  }

  .gk-booking-layout {
    gap: var(--space-32);
  }

  .gk-wizard {
    padding: clamp(16px, 5vw, 24px);
  }

  .gk-progress {
    margin-inline: calc(clamp(16px, 5vw, 24px) * -1);
    margin-bottom: var(--space-24);
    overflow: hidden;
  }

  .gk-progress-line {
    display: none;
  }

  .gk-progress ol {
    display: flex;
    gap: var(--space-8);
    overflow-x: auto;
    padding: 4px var(--space-12) 10px;
    scroll-padding-inline: var(--space-12);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gk-progress ol::-webkit-scrollbar {
    display: none;
  }

  .gk-step-pill {
    flex: 0 0 auto;
    min-width: 120px;
    font-size: 13px;
    text-align: left;
    scroll-snap-align: start;
  }

  .gk-step-btn {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 46px;
    align-items: center;
    justify-items: start;
    gap: var(--space-8);
    padding: 6px 10px;
    border: 2px solid var(--color-line);
    border-radius: var(--radius-pill);
    background: var(--color-paper);
    box-shadow: 0 3px 0 var(--color-line);
  }

  .gk-step-pill.is-active .gk-step-btn {
    border-color: var(--color-pink);
    background: var(--color-pink-wash);
    box-shadow: 0 3px 0 var(--press-pink);
  }

  .gk-step-pill.is-complete .gk-step-btn {
    border-color: var(--color-green);
    background: var(--color-green-wash);
    box-shadow: 0 3px 0 var(--press-green);
  }

  #gokids-booking-app.gk-app .gk-step-btn,
  #gokids-booking-app.gk-app .gk-step-btn:hover,
  #gokids-booking-app.gk-app .gk-step-btn:focus,
  #gokids-booking-app.gk-app .gk-step-btn:active {
    border: 2px solid var(--color-line);
    background: var(--color-paper);
    color: inherit;
    box-shadow: 0 3px 0 var(--color-line);
    transform: none;
  }

  #gokids-booking-app.gk-app .gk-step-pill.is-active .gk-step-btn,
  #gokids-booking-app.gk-app .gk-step-pill.is-active .gk-step-btn:hover {
    border-color: var(--color-pink);
    background: var(--color-pink-wash);
    box-shadow: 0 3px 0 var(--press-pink);
  }

  #gokids-booking-app.gk-app .gk-step-pill.is-complete .gk-step-btn,
  #gokids-booking-app.gk-app .gk-step-pill.is-complete .gk-step-btn:hover {
    border-color: var(--color-green);
    background: var(--color-green-wash);
    box-shadow: 0 3px 0 var(--press-green);
  }

  .gk-step-pill span:first-child {
    width: 32px;
    max-width: none;
    height: 32px;
    aspect-ratio: auto;
    font-size: 13px;
    box-shadow: none;
  }

  .gk-step-pill span:last-child {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    line-height: 1.1;
  }

  .gk-field-grid,
  .gk-addons-grid,
  .gk-choice-grid,
  .gk-menu-list,
  .gk-payment-grid {
    grid-template-columns: 1fr;
  }

  .gk-addon-card {
    padding-inline: 18px;
  }

  .gk-addon-main {
    padding-right: 72px;
  }

  .gk-addon-qty-controls {
    grid-template-columns: 44px minmax(52px, 72px) 44px;
  }

  .gk-choice-grid.gk-choice-grid-themes,
  .gk-time-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gk-age-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--space-8);
  }

  .gk-age-card {
    min-height: 56px;
    padding: 8px 4px 10px;
  }

  .gk-age-card strong {
    font-size: 20px;
  }

  .gk-age-card span {
    font-size: 10px;
  }

  .gk-review-line {
    flex-wrap: wrap;
  }

  .gk-calendar {
    padding: var(--space-12);
  }

  .gk-calendar-grid {
    gap: var(--space-4);
  }

  .gk-calendar-day {
    min-height: 48px;
    border-width: 2px;
    border-radius: var(--radius-sm);
    font-size: 18px;
  }

  #gokids-booking-app.gk-app .gk-calendar-day,
  #gokids-booking-app.gk-app .gk-calendar-day:focus {
    font-size: 18px;
  }

  .gk-calendar-day small {
    display: none;
  }

  .gk-menu-illustration {
    top: 12px;
    right: 12px;
    width: 68px;
  }

  .gk-menu-illustration-classic {
    top: 14px;
    right: 12px;
    width: 64px;
  }

  .gk-summary-card {
    padding: var(--space-20);
  }

  .gk-summary-card,
  .gk-wizard {
    border-radius: var(--radius-lg);
  }

}

@media (max-width: 560px) {
  .gk-booking-section {
    padding-top: 56px;
  }

  .gk-section-heading h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .gk-step-title {
    font-size: 30px;
  }

  .gk-step-intro {
    margin-bottom: var(--space-24);
  }

  .gk-hold-countdown {
    padding: 10px 12px;
    font-size: 13px;
  }

  .gk-choice-grid.gk-choice-grid-themes {
    grid-template-columns: 1fr;
  }

  .gk-time-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gk-age-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-8);
  }

  .gk-age-card {
    min-height: 76px;
    padding: 12px 8px;
  }

  .gk-age-card span {
    font-size: 11px;
  }

  .gk-choice,
  .gk-checkbox-card {
    min-height: auto;
    padding: 26px var(--space-16) var(--space-16);
    border-radius: var(--radius-md);
  }

  .gk-choice-package {
    gap: var(--space-12);
  }

  .gk-package-kids {
    padding: 0 var(--space-16) var(--space-16);
  }

  .gk-choice-package .gk-package-meta {
    align-items: flex-start;
    gap: 10px;
  }

  .gk-choice-package .gk-package-price {
    flex-basis: 100%;
    font-size: clamp(38px, 12vw, 48px);
  }

  .gk-choice-package .gk-package-detail {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 15px;
  }

  .gk-choice.gk-choice-package small {
    max-width: none;
    font-size: 16px;
  }

  .gk-choice-theme {
    padding: 0;
  }

  .gk-choice-theme-media {
    aspect-ratio: 2 / 1;
  }

  .gk-choice-theme-body {
    padding: 14px 18px 16px;
  }

  .gk-choice strong,
  .gk-checkbox-card strong {
    font-size: 20px;
  }

  .gk-checkbox-card {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .gk-checkbox-card .gk-price-tag {
    top: -13px;
    right: -10px;
    padding: 8px 13px;
    font-size: 16px;
  }

  .gk-choice-menu.has-menu-illustration {
    min-height: 156px;
    padding-right: 96px;
    overflow: hidden;
  }

  .gk-payment-price {
    width: 100%;
    gap: 6px 10px;
  }

  .gk-payment-discount-card.has-discount {
    min-height: 0;
  }

  .gk-payment-discount-card .gk-discount-badge {
    top: 18px;
    right: 16px;
  }

  .gk-payment-discount-card strong {
    font-size: 26px;
  }

  .gk-payment-price-stack {
    width: 100%;
    flex-wrap: wrap;
  }

  .gk-payment-price b {
    font-size: clamp(28px, 9vw, 34px);
  }

  .gk-payment-price b.gk-price-new {
    font-size: clamp(44px, 13vw, 58px);
  }

  .gk-summary-bar {
    gap: 10px;
    width: min(560px, calc(100% - 20px));
    padding: 10px 14px;
  }

  .gk-summary-bar-discounted {
    padding-right: 64px;
  }

  .gk-summary-bar-discounted .gk-summary-bar-pay {
    display: grid;
    justify-items: end;
    gap: 3px;
  }

  .gk-summary-bar-values {
    gap: 6px;
  }

  .gk-summary-bar-discounted .gk-summary-bar-pay strong,
  #gokids-booking-app.gk-app .gk-summary-bar-discounted .gk-summary-bar-pay strong {
    font-size: 24px;
  }

  .gk-summary-bar .gk-price-old {
    font-size: 14px;
  }

  .gk-summary-bar .gk-discount-badge {
    right: 8px;
    min-width: 58px;
    padding: 6px 9px 7px;
    border-radius: 12px;
    font-size: 15px;
  }

  .gk-calendar {
    padding: var(--space-12);
  }

  .gk-calendar-head {
    gap: var(--space-8);
  }

  .gk-calendar-title {
    font-size: 22px;
    text-align: center;
  }

  #gokids-booking-app.gk-app .gk-calendar-title {
    font-size: 22px;
  }

  .gk-calendar-nav {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .gk-calendar-grid {
    min-width: 0;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 5px;
  }

  .gk-calendar-day {
    min-height: 0;
    aspect-ratio: 1 / 1;
    font-size: clamp(15px, 4.8vw, 18px);
  }

  #gokids-booking-app.gk-app .gk-calendar-day,
  #gokids-booking-app.gk-app .gk-calendar-day:focus {
    font-size: clamp(15px, 4.8vw, 18px);
  }

  .gk-review-line {
    display: grid;
    gap: var(--space-4);
  }

  .gk-review-line span:last-child {
    text-align: left;
  }

  .gk-price-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 380px) {
  .gk-shell {
    width: min(var(--page-max), calc(100% - 20px));
  }

  .gk-wizard {
    padding: 14px;
  }

  .gk-step-pill {
    min-width: 108px;
  }

  .gk-age-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gk-calendar-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
  }

  .gk-calendar-weekday {
    font-size: 10px;
  }

  #gokids-booking-app.gk-app .gk-calendar-weekday {
    font-size: 10px;
  }

  .gk-choice-menu.has-menu-illustration {
    padding-right: 82px;
  }

  .gk-menu-illustration {
    width: 58px;
  }

  .gk-payment-discount-card.has-discount strong {
    padding-right: 72px;
  }

  .gk-payment-discount-card .gk-discount-badge {
    top: 16px;
    right: 16px;
    left: auto;
    min-width: 66px;
    font-size: 20px;
  }

  .gk-payment-price .gk-price-old {
    font-size: 23px;
  }

  .gk-summary-bar {
    gap: 8px;
    min-height: 68px;
    padding: 9px 10px;
  }

  .gk-summary-bar .gk-summary-count {
    max-width: 120px;
    padding-inline: 12px;
    text-align: center;
  }

  .gk-summary-bar-discounted {
    padding-right: 54px;
  }

  .gk-summary-bar-label {
    font-size: 10px;
  }

  .gk-summary-bar .gk-price-old {
    font-size: 12px;
  }

  .gk-summary-bar .gk-discount-badge {
    top: -14px;
    right: 4px;
    min-width: 50px;
    font-size: 13px;
  }

  .gk-summary-top-row,
  .gk-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
