.reservation-page {
  min-height: 100vh;
  padding: 30px 16px;
  background: linear-gradient(135deg, #fff5fb, #ffffff);
}

.reservation-card {
  max-width: 760px;
  margin: auto;
}

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--rose);
  text-decoration: none;
  font-weight: bold;
}

.intro {
  color: var(--gris);
  margin-bottom: 25px;
}

label {
  display: block;
  margin-top: 20px;
  margin-bottom: 8px;
  font-weight: bold;
}

input,
select {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
}

.duration-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.duration {
  flex: 1;
  padding: 15px;
  border: 2px solid var(--rose);
  border-radius: 12px;
  background: white;
  color: var(--rose);
  font-size: 18px;
  font-weight: bold;
}

.duration.active {
  background: var(--rose);
  color: white;
}

.players {
  display: grid;
  gap: 14px;
  margin-top: 15px;
}

.player {
  display: grid;
  grid-template-columns: 90px 1fr 130px;
  gap: 10px;
  align-items: center;
}

.player span {
  font-weight: bold;
}

.total-box {
  margin-top: 25px;
  padding: 18px;
  background: var(--rose-clair);
  border-radius: 16px;
  font-size: 20px;
}

.resume-box {
  margin-top: 30px;
  padding: 25px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--ombre);
  border-left: 6px solid var(--rose);
}

.resume-box h3 {
  color: var(--rose);
  margin-bottom: 20px;
  font-size: 22px;
}

.resume-ligne {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eeeeee;
}

.resume-ligne:last-child {
  border-bottom: none;
}

.resume-titre {
  font-weight: bold;
  color: var(--gris);
}

.resume-valeur {
  font-weight: bold;
  color: var(--noir);
}

.confirm-button {
  margin-top: 20px;
  width: 100%;
  background: var(--rose);
  color: white;
  font-weight: bold;
}

@media (max-width: 700px) {
  .player {
    grid-template-columns: 1fr;
  }
}
.player-card {
  position: relative;
  background: #fff5fb;
  border: 1px solid #ffd6ec;
  border-radius: 18px;
  padding: 18px;
}

.player-card h3 {
  margin-bottom: 12px;
  color: var(--rose);
}

.player-card select,
.player-card input {
  margin-top: 10px;
}

.suggestions {
  margin-top: 8px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--ombre);
}

.suggestion-item {
  padding: 12px;
  cursor: pointer;
  border-bottom: 1px solid #f1f1f1;
}

.suggestion-item:hover {
  background: var(--rose-clair);
}