/** Shopify CDN: Minification failed

Line 120:0 Unexpected "}"

**/
.map-container {
  display: none;
  flex-direction: column-reverse;
}
/* .map{
  display: none;
} */

.route-control{
  display:flex;
  flex-direction:column;
  gap:8px;
  pointer-events:none; /* evita bloquear el mapa, reactivamos en hijos */
}
.route-control > *{ pointer-events:auto; }

.titulo-punto-partida {
  color: white;
  font-family: EuclidBold;
  margin-bottom: 5px;
}

.fab{
  width:56px; height:56px; border-radius:50%;
  display:grid; place-items:center;
  font-size:22px; line-height:1;
  border:0; cursor:pointer;
  background:#fff;
  box-shadow:0 4px 14px rgba(0,0,0,.2);
  transition:transform .15s ease, box-shadow .15s ease;
}
.fab:hover{ transform:translateY(-1px); box-shadow:0 6px 18px rgba(0,0,0,.25); }

.route-panel{
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  clip-path: polygon(97% 100%,100% 84%,99% 0,27% 2%,1% 0,0% 98%,7% 100%,63% 99%) !important;
  position: relative;
  background: #141414;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 4px solid rgba(75,85,99,.6);
  transition: border .3s;
}

.route-panel:hover {
  border-color: var(--brand-red);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.place-card {
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  clip-path: polygon(97% 100%,100% 84%,99% 0,27% 2%,1% 0,0% 98%,7% 100%,63% 99%) !important;
  position: relative;
  background:  #141414;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 4px solid rgba(75,85,99,.6);
  transition: border .3s;
}

.place-card:hover {
  border-color: var(--brand-red);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.route-panel.open{ display:block; }

.route-panel input{
  width:100%; height:40px;
  padding:8px 10px; border:1px solid #e2e2e2; border-radius:10px;
  font-size:14px;
}

.custom-datalist {
    position: absolute; /* Para que se superponga al resto del contenido */
    background-color: white; /* Fondo blanco */
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: none; /* Se oculta por defecto */
    max-height: 200px; /* Limita la altura del menú */
    overflow-y: auto; /* Agrega scroll si hay muchas opciones */
}

/* Estilos de las opciones */
.custom-datalist-option {
    padding: 10px;
    cursor: pointer;
    font-weight: bold; /* Opciones en negrita */
}

/* Efecto hover al pasar el mouse por encima */
.custom-datalist-option:hover {
    background-color: #f0f0f0;
}

.place-card__select {
  width: 100%;
  padding: 12px 5px;
  font-size: 16px;
  outline: none;
  background-color: #a2a1aa;
  font-weight: bold;
  border: none !important;
  margin: 5px 0;
  border-radius: 0 !important;
  clip-path: polygon(100% 0, 69% 0, 23% 4%, 0% 1%, 0 95%, 12% 100%, 100% 94%);
}
}
.place-card__field > span {
  display:block;
  color: #fff;
  font-family: EuclidBold;
  margin-bottom: 5px;
  font-size: 14px;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
  text-transform: capitalize;
}

.route-actions{
  display:flex; gap:8px; margin-top:8px;
}
.route-actions button{
  flex:1; height:36px; border-radius:10px; border:0; cursor:pointer;
  background:#1a73e8; color:#fff; font-weight:600;
}
.route-actions .secondary{ background:#f0f0f0; color:#222; }
.hint{ color:#a2a1aa; font-size:11px; display:block; margin-top:4px; }
.sr-only{ position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }

.ride-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
  width: 50%;
  align-self: center;
}

.ride-details > div > input {
  min-width: 100px;
  width: fit-content;
  border: 2px solid rgb(180, 180, 180); 
  border-radius: 5px; 
  height: 30px;
}

.ride-container-button {
    grid-column: span 2 / span 2;
}

.ride-button-pagar {
  border: 1px solid black;
  border-radius: 5px;
  background-color: red;
  color: white;
  min-width: 100px;
}
  
/* -------- Marcadores -------------- */

.pin-wrapper {
  transition: transform .18s ease, filter .18s ease;
}

.pin-wrapper.highlight {
  transform: scale(1.25);
  filter: drop-shadow(0 4px 8px rgba(26,115,232,.35));
}

/* la imagen (glyph) dentron del pin */
.pin-glyph {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* ---- Place Card ---- */
.place-card{
  display:none;
}

.place-card.open{ 
  display: block;
  width: 100%;
  margin-top: 18px;
 }

.place-card__media{
  width:100%; height:min(38vh, 220px);
  background:#f2f2f2;
  display:block; object-fit:cover;
}

.place-card__body{ padding:12px 14px 14px; }
.place-card__title{
  font-weight:700; 
  font-size:16px; 
  font-family: EuclidBold;
  margin:0 0 6px;
}
.place-card__desc{
  color:#444; font-size:14px; line-height:1.35; margin:0 0 10px;
}

.place-card__actions{
  display:flex; gap:8px; justify-content:flex-start;
}
.place-card__btn{
  appearance:none;
  border:0; 
  border-radius:10px;
  padding:9px 14px; 
  font-weight:600; 
  font-family: EuclidBold;
  cursor:pointer;
  background:rgb(232, 26, 26); 
  color:#fff;
}

.place-card__date {
  width: 100%;
  height: 40px;
  padding: 8px 10px;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  font-size: 14px;
}

.place-card__date::placeholder {
  color:rgb(170, 170, 170);
}

/* Prefijos para compatibilidad con navegadores antiguos */
.place-card__date::-webkit-input-placeholder { /* Chrome, Edge, Safari */
  color:rgb(170, 170, 170);
}
.place-card__date:-moz-placeholder { /* Firefox 19- */
  color:rgb(170, 170, 170);
  opacity: 1; /* Firefox puede reducir la opacidad por defecto */
}
.place-card__date::-moz-placeholder { /* Firefox 19+ */
  color:rgb(170, 170, 170);
  opacity: 1; /* Firefox puede reducir la opacidad por defecto */
}
.place-card__date:-ms-input-placeholder { /* IE 10+ */
  color:rgb(170, 170, 170);
}

.place-card__close{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: #ffffffeb;
  box-shadow: 0 2px 8px #00000026;
  margin-bottom: -34px;
}
.place-card__close:after{ content:"✕"; font-size:14px; }

#qtyInput {
  height:40px;
  padding:8px 10px; border:1px solid #e2e2e2; border-radius:10px;
  font-size:14px;
}

#qtyInputNinos {
  height:40px;
  padding:8px 10px; border:1px solid #e2e2e2; border-radius:10px;
  font-size:14px;
}

.modal {
  display: none;  
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content-map {
  width: 90%;
  height: 85%;
  background: #fff;
  border-radius: 10px;
  position: relative;
  padding: 0;
  overflow: hidden;
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 30px;
  cursor: pointer;
  z-index: 50;
}

#mapContainer {
  width: 100%;
  height: 100%;
}