.booking-card .form {
  gap: 14px;
}

.booking-card label:not(.sr-only) {
  margin-bottom: -4px;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.booking-card select {
  margin-bottom: 8px;
}

.booking-card .selected-turno {
  --turno-glow: rgba(34, 197, 94, 0.28);
  --turno-accent: #22c55e;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 12px;
  padding: 16px 18px 16px 58px;
  min-height: 68px;
  border: 1px solid color-mix(in srgb, var(--turno-accent), white 38%);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.18), rgba(15, 23, 42, 0.72));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 14px 34px rgba(15, 23, 42, 0.22), 0 0 0 0 var(--turno-glow);
  color: #eef6ff;
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: -0.02em;
  transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

.booking-card .selected-turno.is-morning {
  --turno-accent: #38bdf8;
  --turno-glow: rgba(56, 189, 248, 0.28);
}

.booking-card .selected-turno.is-afternoon {
  --turno-accent: #f59e0b;
  --turno-glow: rgba(245, 158, 11, 0.3);
}

.booking-card .selected-turno.is-night {
  --turno-accent: #8b5cf6;
  --turno-glow: rgba(139, 92, 246, 0.3);
}

.booking-card .selected-turno.is-animating {
  animation: turnoSpring 0.56s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 18px 42px rgba(15, 23, 42, 0.24), 0 0 0 8px var(--turno-glow);
}

.booking-card .selected-turno.is-empty {
  opacity: 0.64;
  border-style: dashed;
  background: rgba(255,255,255,0.05);
  color: transparent;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 10px 24px rgba(15, 23, 42, 0.12);
}

.booking-card .selected-turno.is-empty::after {
  content: "Selecciona un turno";
  position: absolute;
  left: 58px;
  color: rgba(255,255,255,0.55);
  font-weight: 650;
}

.booking-card .selected-turno::before {
  content: "🎾";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--turno-accent), color-mix(in srgb, var(--turno-accent), black 18%));
  transform: translateY(-50%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 8px 18px var(--turno-glow);
  font-size: 17px;
}

.booking-card button[type="submit"] {
  margin-top: 6px;
}

.booking-card .pin-help {
  margin: 2px 0 0;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.35;
  opacity: 0.72;
}

.booking-card .pin-action {
  font-weight: 750;
}

@media (prefers-color-scheme: light) {
  .booking-card .selected-turno {
    background: rgba(255, 255, 255, 0.72);
    color: #0f172a;
    border-color: color-mix(in srgb, var(--turno-accent), white 56%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 12px 30px rgba(15, 23, 42, 0.12), 0 0 0 0 var(--turno-glow);
    -webkit-backdrop-filter: blur(18px) saturate(1.18);
    backdrop-filter: blur(18px) saturate(1.18);
  }

  .booking-card .selected-turno.is-empty {
    color: transparent;
    background: rgba(248, 250, 252, 0.68);
  }

  .booking-card .selected-turno.is-empty::after {
    color: rgba(15, 23, 42, 0.52);
  }
}

@media (max-width: 760px) {
  .booking-card {
    padding-bottom: 28px;
  }

  .booking-card .help-box {
    margin-bottom: 18px;
  }

  .booking-card .form {
    gap: 16px;
  }

  .booking-card select {
    min-height: 58px;
  }

  .booking-card .selected-turno {
    margin-top: 2px;
    margin-bottom: 12px;
    min-height: 72px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .booking-card button[type="submit"] {
    min-height: 60px;
  }
}

@keyframes turnoSpring {
  0% { transform: scale(0.965); }
  45% { transform: scale(1.035); }
  72% { transform: scale(0.992); }
  100% { transform: scale(1); }
}
