/* ZOT Shop — storefront */
.zot-shop {
  --zot-shop-accent: var(--zot-accent, #ff5a00);
  --zot-shop-accent-text: #fff;
  --zot-shop-muted: var(--zot-muted, #667085);
  --zot-shop-line: color-mix(in srgb, var(--zot-text, #111) 12%, transparent);
}
.zot-shop-buybox { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 1.5rem; align-items: start; margin: 0 0 2rem; }
@media (max-width: 782px) { .zot-shop-buybox { grid-template-columns: 1fr; } }
.zot-shop-buybox.is-bookable {
  grid-template-columns: 1fr;
  max-width: 36rem;
}
.zot-shop-buybox.is-bookable .zot-shop-buybox-media { display: none; }
.zot-shop-buybox.is-bookable .zot-shop-buybox-body { min-width: 0; width: 100%; }
.zot-shop-buybox .zot-shop-steps { grid-column: 1 / -1; margin-bottom: .25rem; }
.zot-shop-booking-step .zot-shop-buybox {
  max-width: 34rem;
  width: 100%;
  margin-inline: 0;
}
.zot-shop-buybox-media img { width: 100%; height: auto; display: block; border-radius: 12px; aspect-ratio: 4/5; object-fit: cover; }
.zot-shop-buybox-title { margin: 0 0 .5rem; font-size: 1.75rem; line-height: 1.2; font-family: var(--zot-font-display, Georgia, serif); font-weight: 500; }
.zot-shop-buybox-excerpt { margin: 0 0 1rem; color: var(--zot-shop-muted); }
.zot-shop-buybox-price { margin: 0 0 1rem; font-size: 1.35rem; font-weight: 600; font-family: var(--zot-font-display, Georgia, serif); color: var(--zot-accent, var(--zot-shop-accent)); }
.zot-shop-buybox-actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: end; }
.zot-shop-buybox-qty { display: grid; gap: .25rem; font-size: .9rem; }
.zot-shop-buybox-qty input { width: 4.5rem; padding: .4rem; }
.zot-shop-buybox-booking {
  display: grid;
  gap: 1.1rem;
  margin: 0 0 1.15rem;
  padding: 1.25rem 1.35rem 1.35rem;
  border: 1px solid var(--zot-shop-line);
  border-radius: 16px;
  background: color-mix(in srgb, var(--zot-surface, #1a222c) 82%, #000);
  overflow: visible;
}
.zot-shop-buybox-booking-title {
  margin: 0;
  font-family: var(--zot-font-display, Georgia, serif);
  font-size: 1.05rem;
  font-weight: 500;
}
.zot-shop-buybox-booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}
@media (max-width: 560px) {
  .zot-shop-buybox-booking-grid { grid-template-columns: 1fr; }
}
.zot-shop-buybox-booking-pickers {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(11.5rem, .95fr);
  gap: 1.35rem 1.75rem;
  align-items: start;
}
@media (max-width: 640px) {
  .zot-shop-buybox-booking-pickers { grid-template-columns: 1fr; }
}
.zot-shop-picker-label {
  margin: 0 0 .7rem;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--zot-shop-muted);
}
.zot-shop-datepicker {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.zot-shop-datepicker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .7rem;
}
.zot-shop-datepicker-month {
  margin: 0;
  font-family: var(--zot-font-display, Georgia, serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--zot-text, #e8eef4);
  text-transform: capitalize;
}
.zot-shop-datepicker-nav {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid var(--zot-shop-line);
  background: transparent;
  color: var(--zot-text, #e8eef4);
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  outline: none;
  box-shadow: none;
}
.zot-shop-datepicker-nav:hover,
.zot-shop-datepicker-nav:focus-visible {
  border-color: color-mix(in srgb, var(--zot-shop-accent) 55%, transparent);
  color: var(--zot-shop-accent);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--zot-shop-accent) 22%, transparent);
}
.zot-shop-datepicker-dows,
.zot-shop-datepicker-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .3rem;
}
.zot-shop-datepicker-dows {
  margin-bottom: .3rem;
}
.zot-shop-datepicker-dows span {
  text-align: center;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--zot-shop-muted);
  padding: .15rem 0;
}
.zot-shop-cal-cell {
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--zot-text, #e8eef4);
  font: inherit;
  font-size: .88rem;
  cursor: pointer;
  padding: 0;
  outline: none;
}
.zot-shop-cal-cell.is-empty {
  visibility: hidden;
  pointer-events: none;
}
.zot-shop-cal-cell.is-today {
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--zot-shop-accent) 45%, transparent);
}
.zot-shop-cal-cell:hover:not(:disabled),
.zot-shop-cal-cell:focus-visible:not(:disabled) {
  border-color: color-mix(in srgb, var(--zot-shop-accent) 40%, transparent);
  outline: none;
}
.zot-shop-cal-cell.is-selected {
  background: var(--zot-shop-accent);
  color: #1a1410;
  font-weight: 650;
  border-color: var(--zot-shop-accent);
}
.zot-shop-cal-cell.is-disabled,
.zot-shop-cal-cell:disabled {
  opacity: .28;
  cursor: not-allowed;
}
.zot-shop-slotpicker {
  min-width: 0;
  display: grid;
  gap: 0;
  align-content: start;
}
.zot-shop-slotpicker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
  max-height: none;
  overflow: visible;
}
.zot-shop-slotchip {
  border: 1px solid var(--zot-shop-line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--zot-surface, #1a222c) 55%, #000);
  color: var(--zot-text, #e8eef4);
  padding: .72rem .4rem;
  font: inherit;
  font-size: .9rem;
  letter-spacing: .02em;
  cursor: pointer;
  text-align: center;
  outline: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
.zot-shop-slotchip:hover,
.zot-shop-slotchip:focus-visible {
  border-color: color-mix(in srgb, var(--zot-shop-accent) 55%, transparent);
  color: var(--zot-shop-accent);
  outline: none;
}
.zot-shop-slotchip.is-selected {
  background: var(--zot-shop-accent);
  border-color: var(--zot-shop-accent);
  color: #1a1410;
  font-weight: 650;
}
.zot-shop-slotpicker-loading,
.zot-shop-slotpicker-empty {
  margin: .35rem 0 0;
  font-size: .88rem;
  color: var(--zot-shop-muted);
  grid-column: 1 / -1;
}
.zot-shop-buybox-booking label { display: grid; gap: .4rem; font-size: .9rem; color: var(--zot-text, #e8eef4); }
.zot-shop-buybox-booking input,
.zot-shop-buybox-booking select,
.zot-shop-buybox-attrs input,
.zot-shop-buybox-attrs select {
  width: 100%;
  max-width: none;
  padding: .75rem .85rem;
  border: 1px solid var(--zot-shop-line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--zot-surface, #1a222c) 65%, #000);
  color: var(--zot-text, #e8eef4);
  font: inherit;
  box-sizing: border-box;
}
.zot-shop-buybox-booking input:focus,
.zot-shop-buybox-booking select:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--zot-shop-accent) 70%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--zot-shop-accent) 22%, transparent);
}
.zot-shop-buybox-deposit { margin: -.5rem 0 1rem; font-size: .9rem; color: var(--zot-shop-muted); }
.zot-shop-buybox-attrs { display: grid; gap: .65rem; margin: 0 0 1rem; }
.zot-shop-buybox-attrs label { display: grid; gap: .25rem; font-size: .9rem; }
.zot-shop-buybox-specs { display: grid; gap: .35rem; margin: 0 0 1rem; font-size: .9rem; }
.zot-shop-buybox-specs > div { display: grid; grid-template-columns: minmax(6rem, 30%) 1fr; gap: .5rem; }
.zot-shop-buybox-specs dt { margin: 0; color: var(--zot-shop-muted); font-weight: 500; }
.zot-shop-buybox-specs dd { margin: 0; }
.zot-shop-buybox-next-hint {
  margin: .85rem 0 0;
  font-size: .85rem;
  color: var(--zot-shop-muted);
}
.zot-shop-buybox-actions .zot-shop-cta { width: 100%; text-align: center; border-radius: 999px; padding: .95rem 1.25rem; }

/* Steps wizard */
.zot-shop-steps {
  display: grid;
  gap: .85rem;
  margin: 0 0 1.35rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--zot-shop-line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--zot-surface, #1a222c) 78%, #000);
}
.zot-shop-steps-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .35rem 1rem;
  align-items: baseline;
}
.zot-shop-steps-current {
  margin: 0;
  font-family: var(--zot-font-display, Georgia, serif);
  font-size: 1.05rem;
  color: var(--zot-text, #e8eef4);
}
.zot-shop-steps-remaining {
  margin: 0;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--zot-accent, var(--zot-shop-accent));
  font-weight: 600;
}
.zot-shop-steps-track {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
  margin: 0;
  padding: 0;
}
.zot-shop-steps-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  min-width: 0;
  opacity: .55;
}
.zot-shop-steps-item.is-current,
.zot-shop-steps-item.is-done { opacity: 1; }
.zot-shop-steps-dot {
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.85rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--zot-shop-line);
  font-size: .8rem;
  font-weight: 650;
  color: var(--zot-text, #e8eef4);
  background: transparent;
}
.zot-shop-steps-item.is-current .zot-shop-steps-dot {
  border-color: var(--zot-accent, var(--zot-shop-accent));
  background: color-mix(in srgb, var(--zot-accent, var(--zot-shop-accent)) 22%, transparent);
  color: var(--zot-accent, var(--zot-shop-accent));
}
.zot-shop-steps-item.is-done .zot-shop-steps-dot {
  border-color: color-mix(in srgb, var(--zot-accent, var(--zot-shop-accent)) 55%, transparent);
  background: color-mix(in srgb, var(--zot-accent, var(--zot-shop-accent)) 18%, transparent);
  color: var(--zot-accent, var(--zot-shop-accent));
}
.zot-shop-steps-label {
  font-size: .9rem;
  color: var(--zot-muted, var(--zot-shop-muted));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.zot-shop-steps-item.is-current .zot-shop-steps-label {
  color: var(--zot-text, #e8eef4);
  font-weight: 600;
}
.zot-shop-booking-step-lead {
  margin: 0 0 1.25rem;
  color: var(--zot-muted, var(--zot-shop-muted));
  max-width: 40rem;
}
.zot-shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.zot-shop-card { border-bottom: 1px solid var(--zot-shop-line); padding-bottom: 1rem; }
.zot-shop-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; margin-bottom: .75rem; }
.zot-shop-card h3 { font-size: 1rem; margin: 0 0 .35rem; font-weight: 600; }
.zot-shop-price { margin: 0 0 .75rem; color: var(--zot-shop-muted); }
.zot-shop-add,
.zot-shop-cta,
.zot-shop-checkout-form button[type="submit"] {
  display: inline-block;
  background: var(--zot-shop-accent);
  color: var(--zot-shop-accent-text);
  border: 0;
  padding: .7rem 1.25rem;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
}
.zot-shop-add:hover,
.zot-shop-cta:hover,
.zot-shop-checkout-form button[type="submit"]:hover {
  filter: brightness(0.92);
  color: var(--zot-shop-accent-text);
}
.zot-shop-oos { color: #a11; margin: 0; }
.zot-shop-booking-note { margin: 0 0 1rem; font-size: .9rem; color: var(--zot-shop-muted); }
.zot-shop-table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.zot-shop-table th, .zot-shop-table td { text-align: left; padding: .5rem; border-bottom: 1px solid var(--zot-shop-line); }
.zot-shop-checkout {
  --zot-shop-panel: color-mix(in srgb, var(--zot-surface, #1a222c) 88%, #000);
  --zot-shop-field: color-mix(in srgb, var(--zot-surface, #1a222c) 72%, #000);
  --zot-shop-ink: var(--zot-text, #e8eef4);
}
.zot-shop-checkout.is-booking,
.zot-shop-checkout {
  max-width: min(42rem, 100%);
  margin-inline: auto;
}
.zot-shop-checkout-form { display: grid; gap: 1.35rem; max-width: none; width: 100%; }
.zot-shop-checkout-form label { display: grid; gap: .45rem; font-size: .92rem; color: var(--zot-shop-ink); }
.zot-shop-checkout-form input[type="text"],
.zot-shop-checkout-form input[type="email"],
.zot-shop-checkout-form input[type="tel"],
.zot-shop-checkout-form textarea,
.zot-shop-checkout-form select {
  width: 100%;
  max-width: 100%;
  padding: .75rem .9rem;
  border: 1px solid var(--zot-shop-line);
  border-radius: 6px;
  background: var(--zot-shop-field);
  color: var(--zot-shop-ink);
  font: inherit;
  box-sizing: border-box;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.zot-shop-checkout-form input::placeholder,
.zot-shop-checkout-form textarea::placeholder { color: color-mix(in srgb, var(--zot-shop-muted) 85%, transparent); }
.zot-shop-checkout-form input:focus,
.zot-shop-checkout-form textarea:focus,
.zot-shop-checkout-form select:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--zot-shop-accent) 70%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--zot-shop-accent) 22%, transparent);
}
.zot-shop-checkout-section {
  border: 1px solid var(--zot-shop-line);
  border-radius: 10px;
  padding: 1.15rem 1.2rem 1.25rem;
  margin: 0;
  display: grid;
  gap: .85rem;
  background: var(--zot-shop-panel);
}
.zot-shop-checkout-section legend {
  padding: 0 .4rem;
  font-family: var(--zot-font-display, Georgia, serif);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--zot-shop-ink);
}
.zot-shop-checkout-summary { margin: 0 0 1.25rem; }
.zot-shop-checkout-title {
  margin: 0 0 .45rem;
  font-family: var(--zot-font-display, Georgia, serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  color: var(--zot-shop-ink);
}
.zot-shop-checkout-lead { margin: 0 0 1.15rem; color: var(--zot-shop-muted); font-size: .95rem; }
.zot-shop-checkout-recap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: 1rem 1.25rem;
  margin: 0;
  padding: 1.15rem 1.25rem;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--zot-shop-accent) 16%, transparent), transparent 55%),
    var(--zot-shop-panel);
  border: 1px solid color-mix(in srgb, var(--zot-shop-accent) 45%, transparent);
  border-radius: 12px;
  color: var(--zot-shop-ink);
}
.zot-shop-checkout-recap > div { display: grid; gap: .3rem; min-width: 0; }
.zot-shop-checkout-recap dt {
  margin: 0;
  font-size: .72rem;
  color: color-mix(in srgb, var(--zot-shop-accent) 75%, var(--zot-shop-muted));
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}
.zot-shop-checkout-recap dd { margin: 0; font-size: 1.05rem; color: var(--zot-shop-ink); line-height: 1.35; }
.zot-shop-checkout-recap dd strong {
  font-family: var(--zot-font-display, Georgia, serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--zot-shop-accent);
}
.zot-shop-checkout-choices { display: grid; gap: .5rem; }
.zot-shop-checkout-choices .zot-shop-choice {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .75rem .85rem; cursor: pointer;
  border: 1px solid var(--zot-shop-line);
  border-radius: 8px;
  background: var(--zot-shop-field);
  color: var(--zot-shop-ink);
}
.zot-shop-checkout-choices .zot-shop-choice:has(input:checked) {
  border-color: color-mix(in srgb, var(--zot-shop-accent) 70%, transparent);
  background: color-mix(in srgb, var(--zot-shop-accent) 14%, var(--zot-shop-field));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--zot-shop-accent) 35%, transparent);
}
.zot-shop-checkout-choices .zot-shop-choice.is-disabled { opacity: .55; cursor: not-allowed; }
.zot-shop-choice-body { display: grid; gap: .15rem; }
.zot-shop-choice-body strong { font-weight: 600; color: var(--zot-shop-ink); }
.zot-shop-choice-hint { font-size: .85rem; color: var(--zot-shop-muted); }
.zot-shop-pay-detail-wrap { display: grid; gap: .35rem; margin: 0 0 .25rem 1.75rem; font-size: .9rem; max-width: 18rem; color: var(--zot-shop-ink); }
.zot-shop-pay-detail { margin: 0; max-width: 100%; }
.zot-shop-checkout-form .zot-shop-cta {
  width: 100%;
  text-align: center;
  padding: 1rem 1.35rem;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-top: .35rem;
}
.zot-shop-checkout-result { margin-top: 1rem; }
.zot-shop-empty { color: var(--zot-shop-muted); }
.zot-shop-promo { margin: 0; }

/* Status / confirmation */
.zot-shop-status {
  --zot-shop-accent: var(--zot-accent, #ff5a00);
  --zot-shop-muted: var(--zot-muted, #667085);
  max-width: 36rem;
  margin: clamp(1.5rem, 4vw, 3rem) auto;
}
.zot-shop-status-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem 1.25rem;
  padding: 1.5rem 1.5rem 1.6rem;
  border: 1px solid color-mix(in srgb, var(--zot-shop-accent) 28%, transparent);
  border-radius: 12px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--zot-shop-accent) 14%, transparent) 0%, color-mix(in srgb, var(--zot-surface, #1a222c) 90%, #000) 55%);
  color: var(--zot-text, #e8eef4);
  box-shadow: none;
}
.zot-shop-status-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  color: var(--zot-shop-accent);
  background: color-mix(in srgb, var(--zot-shop-accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--zot-shop-accent) 35%, transparent);
  border-radius: 999px;
}
.zot-shop-status-body { min-width: 0; }
.zot-shop-status-eyebrow {
  margin: 0 0 .35rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--zot-shop-accent);
}
.zot-shop-status-title {
  margin: 0 0 .5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.2;
}
.zot-shop-status-text {
  margin: 0 0 1rem;
  color: var(--zot-shop-muted);
  font-size: 1rem;
  line-height: 1.45;
}
.zot-shop-status-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
  gap: .75rem;
  margin: 0 0 1.25rem;
  padding: .85rem 0 0;
  border-top: 1px solid color-mix(in srgb, var(--zot-text, #111) 10%, transparent);
}
.zot-shop-status-meta > div { display: grid; gap: .15rem; }
.zot-shop-status-meta dt {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--zot-shop-muted);
}
.zot-shop-status-meta dd { margin: 0; font-weight: 600; }
.zot-shop-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.zot-shop-cta-ghost {
  background: transparent !important;
  color: var(--zot-text, #111) !important;
  border: 1px solid color-mix(in srgb, var(--zot-text, #111) 35%, transparent) !important;
  filter: none !important;
}
.zot-shop-cta-ghost:hover {
  background: color-mix(in srgb, var(--zot-text, #111) 6%, #fff) !important;
  color: var(--zot-text, #111) !important;
  filter: none !important;
}
@media (max-width: 560px) {
  .zot-shop-status-card { grid-template-columns: 1fr; }
  .zot-shop-status-actions .zot-shop-cta { width: 100%; text-align: center; }
}

/* Inline checkout result uses same card language */
.zot-shop-checkout-result:not([hidden]) {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid color-mix(in srgb, var(--zot-shop-accent) 28%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--zot-shop-accent) 12%, color-mix(in srgb, var(--zot-surface, #1a222c) 85%, #000));
  color: var(--zot-text, #e8eef4);
  box-shadow: none;
}
.zot-shop-checkout-result p { margin: 0 0 .35rem; }
.zot-shop-checkout-result p:last-child { margin: 0; }
