/* Estilo para el segundo botón en escritorio */


/* Estilos para el modal de reserva y confirmación The Chosen */
.chosen-modal-dark, .chosen-success-modal-dark {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(20,30,40,0.92);
  display: flex; align-items: center; justify-content: center;
  animation: fadeInModal 0.7s;
}
.chosen-modal-content-dark, .chosen-success-content-dark {
  position: relative;
  z-index: 2;
  background: url('../img/the-chosen/the-chosen-holy-night.jpg') center center/cover no-repeat, rgba(10, 10, 20, 0.98);
  border-radius: 18px;
  max-width: 340px;
  width: 90vw;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  padding: 32px 10px 18px 10px;
  text-align: center;
  border: 1.5px solid #beac76;
  overflow: hidden;
  height: 515px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.chosen-success-content-dark {
  height: 585px;
}
.chosen-modal-content-dark::before, .chosen-success-content-dark::before {
  content: "";
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  background: rgba(20,20,30,0.7);
  z-index: 1;
  pointer-events: none;
  border-radius: 18px;
}
.chosen-modal-content-dark > *, .chosen-success-content-dark > * {
  position: relative;
  z-index: 2;
}
.chosen-close-dark {
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 2.2rem;
  color: #beac76;
  cursor: pointer;
  font-weight: bold;
  transition: color .2s;
  z-index: 10;
}
.chosen-close-dark:hover { color: #a66844; }
.chosen-form-row-dark {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.chosen-form-row-dark input, .chosen-form-row-dark select {
  flex: 1 1 48%;
  min-width: 0;
  max-width: 100%;
  border: 2px solid #beac76;
  background: rgba(255, 245, 220, 0.85);
  color: #3a2c0a;
  border-radius: 8px;
  font-size: 1.08rem;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  box-shadow: 0 2px 8px #beac7644;
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.chosen-form-row-dark input:focus, .chosen-form-row-dark select:focus {
  border-color: #e7d7a7;
  box-shadow: 0 0 0 2px #beac76aa;
  outline: none;
}
.chosen-form-row-dark input::placeholder {
  color: #beac76;
  opacity: 0.8;
  font-style: italic;
}
.chosen-btn-dark {
  background: linear-gradient(90deg, #beac76 0%, #e7d7a7 100%);
  color: #3a2c0a;
  border: 2.5px solid #beac76;
  border-radius: 24px;
  font-weight: bold;
  font-size: 1.18rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px #beac7644, 0 1.5px 0 #fff inset;
  padding: 16px 0;
  width: 100%;
  margin-top: 18px;
  transition: background .2s, color .2s, box-shadow .2s;
}
.chosen-btn-dark:hover {
  background: linear-gradient(90deg, #e7d7a7 0%, #beac76 100%);
  color: #7a5c1a;
  box-shadow: 0 6px 24px #beac7699;
}
.chosen-resumen-dark { background: rgba(30,40,50,0.85); color: #fff; border-radius: 8px; padding: 12px; margin-top: 12px; text-align: left; font-size: 1rem; box-shadow: 0 2px 8px #000; }
.chosen-desc-dark {
  color: #fffbe6;
  font-size: 1.12rem;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px #3a2c0a, 0 1px 0 #beac76;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  letter-spacing: 0.5px;
}
.chosen-codigo-reserva {
  color: #fffbe6;
  font-size: 1.08rem;
  font-weight: bold;
  text-shadow: 0 2px 8px #3a2c0a, 0 1px 0 #beac76;
}
