.kkt-reservation-section {
  padding: 54px 0;
}

.kkt-container {
  width: min(calc(100% - 32px), var(--container, 1240px));
  margin-inline: auto;
}

.kkt-section-head {
  margin-bottom: 24px;
}

.kkt-field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.kkt-field-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--panel-2, rgba(20, 28, 25, 0.92));
  border: 1px solid var(--line, rgba(255,255,255,0.08));
  border-radius: var(--radius, 18px);
  box-shadow: var(--shadow, 0 24px 60px rgba(0,0,0,0.35));
}

.kkt-field-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(128,178,61,0.22), rgba(255,255,255,0.03));
  overflow: hidden;
}

.kkt-field-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kkt-thumb-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 56px;
  background:
    radial-gradient(circle at top right, rgba(128,178,61,0.35), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
}

.kkt-field-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  backdrop-filter: blur(10px);
}

.kkt-field-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.kkt-field-body h3 {
  margin: 0;
  font-family: Poppins, Inter, sans-serif;
  font-size: 1.35rem;
  line-height: 1.15;
  color: var(--text, #f4f7f4);
}

.kkt-venue-name {
  color: var(--muted, #b7c0ba);
  margin-top: -6px;
}

.kkt-field-body p {
  margin: 0;
  color: var(--muted, #b7c0ba);
}

.kkt-field-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.kkt-btn,
.kkt-submit-btn {
  margin-top: 6px;
  width: 100%;
  text-decoration: none !important;
}

.kkt-empty {
  padding: 24px;
  color: var(--muted, #b7c0ba);
}

.kkt-form-container {
  max-width: 920px;
}

.kkt-reservation-box {
  padding: 28px;
  background: var(--panel, rgba(17, 23, 21, 0.88));
  border: 1px solid var(--line, rgba(255,255,255,0.08));
  border-radius: var(--radius, 18px);
  box-shadow: var(--shadow, 0 24px 60px rgba(0,0,0,0.35));
}

.kkt-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.kkt-full {
  grid-column: 1 / -1;
}

.kkt-reservation-box label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.92);
  font-weight: 700;
}

.kkt-reservation-box input,
.kkt-reservation-box select {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: #fff;
}

.kkt-reservation-box input[type="file"] {
  padding: 14px 16px;
  height: auto;
}

.kkt-reservation-box select option {
  color: #111;
}

.kkt-reservation-box small {
  color: var(--muted, #b7c0ba);
  display: inline-block;
  margin-top: 8px;
}

.kkt-amount-box {
  min-height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(128,178,61,0.24);
  background: rgba(128,178,61,0.10);
  color: #dff0c6;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-weight: 800;
}

.kkt-slots {
  margin: 22px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.kkt-slot {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(128,178,61,0.10);
  color: #eaf3e3;
  min-height: 62px;
  border-radius: 16px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  box-shadow: none;
}

.kkt-slot strong {
  font-size: 1.05rem;
}

.kkt-slot span {
  font-size: .85rem;
  color: var(--muted, #b7c0ba);
}

.kkt-slot:hover {
  transform: translateY(-1px);
  border-color: rgba(128,178,61,0.38);
}

.kkt-slot.booked,
.kkt-slot.past {
  background: rgba(216,109,95,0.13);
  color: rgba(255,255,255,0.62);
  cursor: not-allowed;
  opacity: .72;
}

.kkt-slot.selected {
  background: linear-gradient(180deg, var(--primary, #80b23d), var(--primary-2, #6b9930));
  color: #0b120d;
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 16px 30px rgba(128,178,61,0.20);
}

.kkt-slot.selected span {
  color: rgba(11,18,13,0.80);
}

.kkt-payment-note {
  margin: 18px 0 22px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(128,178,61,0.20);
  background: linear-gradient(180deg, rgba(128,178,61,0.10), rgba(255,255,255,0.02));
  color: var(--muted, #b7c0ba);
}

.kkt-payment-note p {
  margin: 0 0 8px;
}

.kkt-payment-note p:last-child {
  margin-bottom: 0;
}

#kktMessage {
  margin-top: 16px;
}

.kkt-msg {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 700;
}

.kkt-msg.ok {
  background: rgba(128,178,61,0.14);
  color: #dff0c6;
}

.kkt-msg.err {
  background: rgba(216,109,95,0.16);
  color: #ffd2cb;
}

.kkt-loading {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  color: var(--muted, #b7c0ba);
}

@media (max-width: 720px) {
  .kkt-reservation-section {
    padding: 36px 0;
  }
  .kkt-reservation-box {
    padding: 20px;
  }
  .kkt-form-grid {
    grid-template-columns: 1fr;
  }
  .kkt-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.kkt-venues-section .kkt-venue-card h3 {
  font-size: 1.45rem;
}

.kkt-venue-grid .kkt-field-card {
  min-height: 100%;
}

.kkt-venue-card .kkt-field-body p {
  min-height: 46px;
}

/* v0.6 booking portal: date rail + stadium/seat-style slot picker */
.kkt-form-container { max-width: 1040px; }

.kkt-step-box {
  margin: 22px 0;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
}

.kkt-step-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .01em;
}

.kkt-step-title span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--primary, #80b23d), var(--primary-2, #6b9930));
  color: #0b120d;
  font-weight: 900;
}

.kkt-date-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(112px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.kkt-date-card {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  min-height: 76px;
  padding: 12px 10px;
  background: radial-gradient(circle at top right, rgba(128,178,61,0.14), transparent 45%), rgba(255,255,255,0.035);
  color: #fff;
  cursor: pointer;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.kkt-date-card span {
  font-size: .84rem;
  color: var(--muted, #b7c0ba);
  font-weight: 700;
}

.kkt-date-card strong {
  font-size: 1rem;
  color: #fff;
}

.kkt-date-card:hover {
  transform: translateY(-1px);
  border-color: rgba(128,178,61,0.35);
}

.kkt-date-card.selected {
  background: linear-gradient(180deg, var(--primary, #80b23d), var(--primary-2, #6b9930));
  color: #0b120d;
  border-color: rgba(255,255,255,0.20);
  box-shadow: 0 16px 30px rgba(128,178,61,0.18);
}

.kkt-date-card.selected span,
.kkt-date-card.selected strong { color: #0b120d; }

.kkt-seat-map {
  display: block;
  margin: 0;
}

.kkt-slot-group {
  margin-top: 16px;
}

.kkt-slot-group:first-child { margin-top: 0; }

.kkt-slot-group h4 {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.88);
  font-size: .95rem;
  font-weight: 900;
}

.kkt-slot-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 12px;
}

.kkt-seat-map .kkt-slot {
  min-height: 92px;
  border-radius: 20px 20px 12px 12px;
  background: linear-gradient(180deg, rgba(128,178,61,0.13), rgba(255,255,255,0.035));
  position: relative;
  overflow: hidden;
}

.kkt-seat-map .kkt-slot:before {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  top: 9px;
  height: 4px;
  border-radius: 999px;
  background: rgba(128,178,61,0.40);
}

.kkt-slot-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.kkt-seat-map .kkt-slot small {
  color: var(--muted, #b7c0ba);
  font-weight: 800;
}

.kkt-seat-map .kkt-slot.booked,
.kkt-seat-map .kkt-slot.past {
  background: linear-gradient(180deg, rgba(216,109,95,0.18), rgba(255,255,255,0.025));
}

.kkt-seat-map .kkt-slot.booked:before,
.kkt-seat-map .kkt-slot.past:before {
  background: rgba(216,109,95,0.52);
}

.kkt-payment-summary {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.kkt-payment-summary > div {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 12px;
  background: rgba(0,0,0,0.18);
  min-width: 0;
}

.kkt-payment-summary span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted, #b7c0ba);
  font-size: .82rem;
  font-weight: 700;
}

.kkt-payment-summary strong {
  color: #e9ffd2;
  font-size: .98rem;
  word-break: break-word;
}

.kkt-iban-row {
  grid-column: span 1;
}

@media (max-width: 720px) {
  .kkt-date-rail { grid-auto-columns: minmax(96px, 1fr); }
  .kkt-slot-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kkt-payment-summary { grid-template-columns: 1fr; }
}

/* v0.7: premium booking portal layout + stadium-style hour picker */
.kkt-booking-portal-section .kkt-form-container {
  max-width: 1180px;
}

.kkt-booking-shell {
  padding: 0;
  overflow: visible;
}

.kkt-booking-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 0;
  align-items: start;
}

.kkt-booking-main {
  padding: 28px;
  min-width: 0;
}

.kkt-booking-summary-card {
  position: sticky;
  top: 96px;
  min-height: 100%;
  padding: 24px;
  border-left: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top right, rgba(128,178,61,0.18), transparent 34%),
    linear-gradient(180deg, rgba(8,12,10,0.82), rgba(18,26,22,0.90));
  border-radius: 0 var(--radius, 18px) var(--radius, 18px) 0;
}

.kkt-summary-stadium {
  position: relative;
  min-height: 112px;
  margin-bottom: 18px;
  border-radius: 22px;
  border: 1px solid rgba(128,178,61,0.32);
  background:
    radial-gradient(circle at center, rgba(128,178,61,0.18) 0 18%, transparent 19%),
    linear-gradient(135deg, rgba(128,178,61,0.16), rgba(255,255,255,0.03));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.kkt-summary-stadium:before,
.kkt-summary-stadium:after {
  content: '';
  position: absolute;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  width: 72px;
  height: 42px;
  top: 50%;
  transform: translateY(-50%);
}

.kkt-summary-stadium:before { left: -20px; }
.kkt-summary-stadium:after { right: -20px; }

.kkt-summary-stadium span {
  position: relative;
  z-index: 2;
  font-weight: 900;
  color: #eaffd3;
  letter-spacing: .02em;
}

.kkt-stadium-lines {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 18px;
}

.kkt-stadium-lines:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  border-left: 1px solid rgba(255,255,255,0.11);
}

.kkt-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.075);
}

.kkt-summary-row span {
  color: var(--muted, #b7c0ba);
  font-size: .86rem;
  font-weight: 800;
}

.kkt-summary-row strong {
  color: #fff;
  text-align: right;
  font-size: .94rem;
  word-break: break-word;
}

.kkt-summary-row.kkt-iban-summary {
  display: block;
}

.kkt-summary-row.kkt-iban-summary strong {
  display: block;
  margin-top: 8px;
  text-align: left;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,0.24);
  border: 1px dashed rgba(128,178,61,0.28);
  color: #e9ffd2;
}

.kkt-summary-note {
  margin: 18px 0 0;
  padding: 16px;
}

.kkt-status-box {
  min-height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: var(--muted, #b7c0ba);
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-weight: 800;
}

.kkt-pitch-step {
  padding: 0;
  overflow: hidden;
}

.kkt-pitch-step .kkt-step-title,
.kkt-pitch-step .kkt-pitch-topline {
  padding-inline: 18px;
}

.kkt-pitch-step .kkt-step-title {
  padding-top: 18px;
}

.kkt-pitch-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 14px;
  color: var(--muted, #b7c0ba);
  font-size: .86rem;
  font-weight: 800;
}

.kkt-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  margin-right: -8px;
  align-self: center;
}

.kkt-legend-dot.free { background: rgba(128,178,61,0.85); }
.kkt-legend-dot.selected { background: #f0ff37; }
.kkt-legend-dot.blocked { background: rgba(216,109,95,0.85); }

.kkt-pitch-picker {
  border-top: 1px solid rgba(255,255,255,0.075);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(128,178,61,0.08), rgba(0,0,0,0.10));
  background-size: 34px 34px, auto;
}

.kkt-pitch-goal {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.70);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.kkt-pitch-goal.bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 0;
}

.kkt-pitch-body {
  position: relative;
  padding: 22px 18px;
}

.kkt-pitch-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  pointer-events: none;
}

.kkt-seat-map .kkt-slot-group h4 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.08);
}

.kkt-seat-map .kkt-slot {
  min-height: 88px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(128,178,61,0.16), rgba(255,255,255,0.03));
  border-color: rgba(128,178,61,0.18);
  backdrop-filter: blur(8px);
}

.kkt-seat-map .kkt-slot:after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.kkt-seat-map .kkt-slot .kkt-slot-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(128,178,61,0.22);
  color: #eaffd2;
  font-weight: 900;
}

.kkt-seat-map .kkt-slot.selected {
  background: linear-gradient(180deg, #dfff33, var(--primary, #80b23d));
  color: #0b120d;
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 18px 34px rgba(128,178,61,0.25);
}

.kkt-seat-map .kkt-slot.selected .kkt-slot-icon {
  background: rgba(0,0,0,0.16);
  color: #0b120d;
}

.kkt-seat-map .kkt-slot.selected small,
.kkt-seat-map .kkt-slot.selected strong {
  color: #0b120d;
}

.kkt-seat-map .kkt-slot.booked,
.kkt-seat-map .kkt-slot.past {
  background: linear-gradient(180deg, rgba(216,109,95,0.20), rgba(255,255,255,0.02));
  border-color: rgba(216,109,95,0.24);
}

.kkt-seat-map .kkt-slot.booked .kkt-slot-icon,
.kkt-seat-map .kkt-slot.past .kkt-slot-icon {
  background: rgba(216,109,95,0.22);
  color: #ffd0c9;
}

@media (max-width: 980px) {
  .kkt-booking-form {
    grid-template-columns: 1fr;
  }
  .kkt-booking-summary-card {
    position: relative;
    top: auto;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-radius: 0 0 var(--radius, 18px) var(--radius, 18px);
    order: -1;
  }
  .kkt-booking-main {
    padding: 22px;
  }
}

@media (max-width: 720px) {
  .kkt-booking-main {
    padding: 18px;
  }
  .kkt-booking-summary-card {
    padding: 18px;
  }
  .kkt-pitch-body {
    padding: 18px 12px;
  }
  .kkt-summary-stadium {
    min-height: 88px;
  }
}

/* v0.8 polish: smoother venue/field cards, softer CTAs, richer booking picker */
.kkt-venue-card,
.kkt-field-card {
  position: relative;
  isolation: isolate;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.105);
  background:
    radial-gradient(circle at 20% 0%, rgba(128,178,61,0.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
    rgba(15, 21, 19, 0.92);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.kkt-venue-card:hover,
.kkt-field-card:hover {
  transform: translateY(-5px);
  border-color: rgba(183, 238, 82, 0.34);
  box-shadow: 0 28px 70px rgba(0,0,0,0.42), 0 0 0 1px rgba(183,238,82,0.07) inset;
}

.kkt-venue-card::after,
.kkt-field-card::after {
  content: '';
  position: absolute;
  inset: auto 18px 0 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183,238,82,0.55), transparent);
  opacity: .65;
  z-index: -1;
}

.kkt-field-thumb {
  border-radius: 22px 22px 0 0;
}

.kkt-field-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.58));
  pointer-events: none;
}

.kkt-field-thumb img {
  transform: scale(1.005);
  transition: transform .35s ease, filter .35s ease;
}

.kkt-field-card:hover .kkt-field-thumb img,
.kkt-venue-card:hover .kkt-field-thumb img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.kkt-card-titleline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.kkt-card-titleline h3 {
  margin: 0;
  flex: 1;
}

.kkt-location-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(183,238,82,.13);
  border: 1px solid rgba(183,238,82,.22);
  box-shadow: 0 10px 22px rgba(0,0,0,.20);
  flex: 0 0 auto;
}

.kkt-location-text {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: -5px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #dbe7d8;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.075);
  font-weight: 700;
  font-size: .88rem;
}

.kkt-support-pill {
  background: rgba(64, 174, 98, .12) !important;
  border-color: rgba(64, 174, 98, .24) !important;
  color: #d7ffdf !important;
}

.kkt-reserve-cta {
  min-height: 52px;
  border-radius: 18px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #dfff30, #8fc640 58%, #6ea12d) !important;
  color: #0b120d !important;
  font-weight: 900 !important;
  letter-spacing: .01em;
  box-shadow: 0 18px 36px rgba(143,198,64,.23), inset 0 1px 0 rgba(255,255,255,.45) !important;
  border: 0 !important;
}

.kkt-reserve-cta b {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0,0,0,.13);
  transition: transform .18s ease;
}

.kkt-reserve-cta:hover b {
  transform: translateX(3px);
}

.kkt-date-rail {
  gap: 12px;
  padding: 4px 2px 12px;
}

.kkt-date-card {
  min-width: 104px;
  min-height: 104px;
  border-radius: 24px;
  text-align: left;
  padding: 12px 14px;
  background:
    radial-gradient(circle at 80% 10%, rgba(183,238,82,.16), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.kkt-date-card .kkt-date-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.kkt-date-card .kkt-date-day {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-top: 7px;
}

.kkt-date-card .kkt-date-month {
  display: block;
  font-style: normal;
  color: rgba(255,255,255,.66);
  font-weight: 800;
  margin-top: 3px;
}

.kkt-date-card.selected .kkt-date-month {
  color: rgba(11,18,13,.74);
}

.kkt-pitch-picker {
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(183,238,82,.12), transparent 34%),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(26,65,38,.55), rgba(12,22,16,.94));
  background-size: auto, 38px 38px, auto;
}

.kkt-pitch-goal {
  gap: 12px;
  color: rgba(244,247,244,.82);
  background: rgba(4,8,6,.34);
}

.kkt-pitch-goal span {
  width: 46px;
  height: 7px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}

.kkt-pitch-body {
  padding: 26px 20px 28px;
}

.kkt-pitch-lines {
  position: absolute;
  inset: 18px 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  pointer-events: none;
}

.kkt-pitch-lines::before,
.kkt-pitch-lines::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18%;
  border: 1px solid rgba(255,255,255,.105);
}

.kkt-pitch-lines::before { left: 0; border-left: 0; border-radius: 0 18px 18px 0; }
.kkt-pitch-lines::after { right: 0; border-right: 0; border-radius: 18px 0 0 18px; }

.kkt-pitch-circle {
  width: 150px;
  height: 150px;
  border-color: rgba(255,255,255,.135);
  background: radial-gradient(circle, rgba(255,255,255,.045), transparent 58%);
}

.kkt-slot-row {
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 14px;
}

.kkt-seat-map .kkt-slot {
  border-radius: 22px;
  min-height: 96px;
  box-shadow: 0 14px 32px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.06);
}

.kkt-seat-map .kkt-slot:hover:not(.booked):not(.past) {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(0,0,0,.22), 0 0 0 1px rgba(183,238,82,.16) inset;
}

.kkt-seat-map .kkt-slot strong {
  font-size: 1.18rem;
  letter-spacing: .01em;
}

.kkt-booking-summary-card {
  background:
    radial-gradient(circle at top right, rgba(183,238,82,.18), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
}

.kkt-summary-row strong#kktSupportBox,
.kkt-summary-row strong#kktLocationBox {
  color: #eaffd6;
}

@media (max-width: 720px) {
  .kkt-date-card {
    min-width: 88px;
    min-height: 92px;
    border-radius: 20px;
  }
  .kkt-date-card .kkt-date-day { font-size: 1.65rem; }
  .kkt-slot-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kkt-reserve-cta { min-height: 50px; }
}

/* v0.9: single venue post, dropdown field selector, softer buttons, brighter pitch */
.kkt-reserve-cta b { display: none !important; }
.kkt-reserve-cta {
  gap: 0 !important;
  border-radius: 16px !important;
  min-height: 50px;
  background: linear-gradient(135deg, #e7ff43, #b8ee52 52%, #82bd3c) !important;
  box-shadow: 0 14px 30px rgba(183,238,82,.20), inset 0 1px 0 rgba(255,255,255,.55) !important;
}
.kkt-reserve-cta:hover { filter: brightness(1.03); transform: translateY(-1px); }

.kkt-venue-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.11);
  background:
    radial-gradient(circle at top left, rgba(183,238,82,.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022)),
    rgba(14,20,18,.92);
  box-shadow: 0 28px 70px rgba(0,0,0,.38);
}
.kkt-venue-detail-media {
  position: relative;
  min-height: 390px;
  background: linear-gradient(135deg, rgba(183,238,82,.18), rgba(255,255,255,.025));
}
.kkt-venue-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  display: block;
}
.kkt-venue-detail-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 52%, rgba(14,20,18,.46));
  pointer-events: none;
}
.kkt-venue-detail-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.kkt-venue-detail-titleline h3 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.05;
}
.kkt-venue-detail-desc {
  color: var(--muted, #b7c0ba);
  line-height: 1.75;
}
.kkt-venue-detail-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 4px;
}
.kkt-venue-detail-stats > div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.075);
}
.kkt-venue-detail-stats span {
  display: block;
  color: var(--muted, #b7c0ba);
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 5px;
}
.kkt-venue-detail-stats strong {
  color: #f4f7f4;
  font-size: 1rem;
}
.kkt-venue-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.kkt-venue-mini-list span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(183,238,82,.09);
  border: 1px solid rgba(183,238,82,.16);
  color: #eaffd6;
  font-size: .86rem;
  font-weight: 800;
}

.kkt-native-select-wrap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.kkt-field-picker-wrap {
  position: relative;
  margin-bottom: 16px;
}
.kkt-field-picker-toggle {
  width: 100%;
  min-height: 74px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 20px;
  cursor: pointer;
  border: 1px solid rgba(183,238,82,.22);
  background:
    radial-gradient(circle at top right, rgba(183,238,82,.16), transparent 38%),
    rgba(255,255,255,.045);
  color: #fff;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}
.kkt-field-picker-toggle .kkt-list-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(183,238,82,.16);
  color: #e7ff43;
  font-size: 1.25rem;
  border: 1px solid rgba(183,238,82,.22);
}
.kkt-field-picker-toggle strong {
  color: #fff;
  font-size: 1.06rem;
}
.kkt-field-picker-toggle em {
  color: #dfff84;
  font-style: normal;
  font-size: .84rem;
  font-weight: 900;
}
.kkt-field-choice-panel {
  display: none;
  margin-top: 12px;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(8,13,11,.96);
  box-shadow: 0 24px 60px rgba(0,0,0,.42);
}
.kkt-field-picker-wrap.open .kkt-field-choice-panel { display: grid; gap: 10px; }
.kkt-field-choice {
  appearance: none;
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: 42px minmax(0,1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.kkt-field-choice:hover {
  transform: translateY(-1px);
  border-color: rgba(183,238,82,.28);
  background: rgba(183,238,82,.07);
}
.kkt-field-choice.selected {
  border-color: rgba(223,255,51,.55);
  background: linear-gradient(135deg, rgba(223,255,51,.18), rgba(183,238,82,.075));
}
.kkt-field-choice-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(183,238,82,.12);
}
.kkt-field-choice-text strong,
.kkt-field-choice-text em {
  display: block;
}
.kkt-field-choice-text strong { color: #fff; font-size: 1rem; }
.kkt-field-choice-text em { margin-top: 4px; color: var(--muted, #b7c0ba); font-style: normal; font-size: .84rem; }
.kkt-field-choice small {
  color: #10160d;
  background: #dfff33;
  border-radius: 999px;
  padding: 7px 9px;
  font-weight: 900;
  white-space: nowrap;
}
.kkt-status-grid { margin-top: 4px; }

.kkt-pitch-picker {
  background:
    radial-gradient(circle at 50% 52%, rgba(226,255,120,.22), transparent 32%),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(61,132,66,.78), rgba(31,91,45,.82)) !important;
  background-size: auto, 38px 38px, auto !important;
}
.kkt-pitch-goal {
  background: rgba(255,255,255,.105) !important;
  color: rgba(255,255,255,.90) !important;
}
.kkt-pitch-body {
  background: rgba(255,255,255,.025);
}
.kkt-pitch-lines,
.kkt-pitch-lines::before,
.kkt-pitch-lines::after {
  border-color: rgba(255,255,255,.22) !important;
}
.kkt-pitch-circle {
  border-color: rgba(255,255,255,.25) !important;
  background: radial-gradient(circle, rgba(255,255,255,.09), transparent 60%) !important;
}
.kkt-seat-map .kkt-slot {
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.075)) !important;
  border-color: rgba(255,255,255,.24) !important;
}
.kkt-seat-map .kkt-slot:hover:not(.booked):not(.past) {
  background: linear-gradient(180deg, rgba(232,255,104,.22), rgba(255,255,255,.10)) !important;
}
.kkt-seat-map .kkt-slot.selected {
  background: linear-gradient(180deg, #efff4e, #dfff33 45%, #a9db4a) !important;
}
.kkt-seat-map .kkt-slot.booked,
.kkt-seat-map .kkt-slot.past {
  background: linear-gradient(180deg, rgba(255,140,125,.25), rgba(255,255,255,.055)) !important;
}

@media (max-width: 900px) {
  .kkt-venue-detail-card { grid-template-columns: 1fr; }
  .kkt-venue-detail-media,
  .kkt-venue-detail-media img { min-height: 260px; }
  .kkt-venue-detail-media::after { background: linear-gradient(180deg, transparent 50%, rgba(14,20,18,.66)); }
  .kkt-venue-detail-body { padding: 22px; }
  .kkt-venue-detail-stats { grid-template-columns: 1fr 1fr; }
  .kkt-field-choice { grid-template-columns: 38px minmax(0,1fr); }
  .kkt-field-choice small { grid-column: 2; width: fit-content; }
}
@media (max-width: 560px) {
  .kkt-venue-detail-stats { grid-template-columns: 1fr; }
  .kkt-field-picker-toggle { grid-template-columns: 42px 1fr; }
  .kkt-field-picker-toggle em { grid-column: 2; }
}

/* v0.12 payment code / receipt pre-check UI */
.kkt-payment-code-box {
  border: 1px solid rgba(211, 255, 24, .24);
  border-radius: 16px;
  padding: 14px;
  background: rgba(211, 255, 24, .06);
}
.kkt-payment-code-display {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  border: 1px dashed rgba(211,255,24,.45);
  color: #f3ff7a;
  font-weight: 900;
  letter-spacing: .08em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  word-break: break-word;
}
#kktPaymentCodeSummary {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #f3ff7a;
  letter-spacing: .04em;
}

.kkt-msg.warn {
  border: 1px solid rgba(255, 193, 7, 0.28);
  background: rgba(255, 193, 7, 0.10);
  color: #ffe7a1;
}

.kkt-result-reasons {
  margin: 12px 0 0 18px;
  padding: 0;
}

.kkt-status-link,
.kkt-owner-pdf-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none !important;
  margin-top: 12px;
  background: rgba(128,178,61,.16);
  border: 1px solid rgba(128,178,61,.35);
  color: #eaffd6 !important;
  font-weight: 800;
}

.kkt-public-status-card {
  padding: 28px;
  max-width: 900px;
  margin-inline: auto;
}

.kkt-status-hero {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.035);
}

.kkt-status-hero > span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  flex: 0 0 auto;
}

.kkt-status-hero.ok > span { background: rgba(128,178,61,.22); color: #dbffbc; }
.kkt-status-hero.err > span { background: rgba(216,109,95,.22); color: #ffd2cc; }
.kkt-status-hero.warn > span { background: rgba(255,193,7,.20); color: #ffe7a1; }

.kkt-status-hero h2 {
  margin: 0 0 6px;
  color: var(--text,#fff);
}

.kkt-status-hero p,
.kkt-owner-intro {
  margin: 0;
  color: var(--muted,#b7c0ba);
}

.kkt-status-grid-public {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.kkt-status-grid-public > div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
}

.kkt-status-grid-public span {
  display: block;
  font-size: .82rem;
  color: var(--muted,#b7c0ba);
  margin-bottom: 6px;
}

.kkt-status-grid-public strong {
  color: var(--text,#fff);
}

.kkt-check-detail-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
}

.kkt-check-detail-box h3 {
  margin: 0 0 10px;
  color: var(--text,#fff);
}

.kkt-check-detail-box ul {
  margin: 0 0 0 18px;
  padding: 0;
  color: var(--muted,#b7c0ba);
}

.kkt-owner-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.kkt-owner-btn {
  width: 100%;
  border: 0;
  min-height: 54px;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 900;
  font-size: 1rem;
}

.kkt-owner-btn.approve {
  background: linear-gradient(180deg, var(--primary,#80b23d), var(--primary-2,#6b9930));
  color: #0b120d;
}

.kkt-owner-btn.cancel {
  background: rgba(216,109,95,.18);
  color: #ffd2cc;
  border: 1px solid rgba(216,109,95,.35);
}

@media (max-width: 640px) {
  .kkt-owner-actions { grid-template-columns: 1fr; }
}
.kkt-status-hero.err .kkt-check-detail-box,
.kkt-status-hero.warn .kkt-check-detail-box { border-color: rgba(255,255,255,.12); }
.kkt-status-conflict, .kkt-status-expired { opacity:.95; }
