/* ==================================================
   STYLE MODAL – Salsa / Bachata Auswahl
================================================== */

.style-modal{
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.style-modal.is-open{ display: flex; }

.style-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(11,16,32,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.style-modal__panel{
  position: relative;
  width: min(480px, 100%);
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 30px 80px rgba(11,16,32,.35);
  text-align: center;
  animation: styleModalIn .25s ease;
}

@keyframes styleModalIn{
  from{ opacity: 0; transform: translateY(12px) scale(.98); }
  to{ opacity: 1; transform: translateY(0) scale(1); }
}

.style-modal__panel h2{
  margin: 0 0 8px;
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
}

.style-modal__panel p{
  margin: 0 0 24px;
  color: rgba(11,16,32,.65);
  font-size: .95rem;
}

.style-modal__close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: rgba(11,16,32,.06);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: rgba(11,16,32,.7);
}

.style-modal__close:hover{ background: rgba(11,16,32,.12); }

.style-modal__options{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.style-modal__option{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 22px 12px;
  border-radius: 16px;
  border: 1px solid rgba(11,16,32,.10);
  text-decoration: none;
  color: #0b1020;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.style-modal__option:hover,
.style-modal__option:focus-visible{
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(255,59,48,.18);
  outline: none;
}

.style-modal__option-title{
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #ff3b30, #ffb000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.style-modal__option-sub{
  font-size: .8rem;
  color: rgba(11,16,32,.55);
}

html.modal-open,
html.modal-open body{
  overflow: hidden;
}

@media (max-width: 480px){
  .style-modal__options{
    grid-template-columns: 1fr;
  }
}
