/* Estilos del contenedor */
.cards-vertical-container {
  height: 750px; /* Altura fija para el contenedor */
  overflow-y: auto; /* Scroll vertical */
  scroll-snap-type: y mandatory; /* Ajuste al hacer scroll */
  -webkit-overflow-scrolling: touch; /* Scroll suave en iOS */
  padding-right: 8px; /* Espacio para la scrollbar */
}

/* Estilos personalizados para la scrollbar */
.cards-vertical-container::-webkit-scrollbar {
  display: block; /* Mostrar scrollbar */
  width: 8px; /* Ancho de la scrollbar */
}

.cards-vertical-container::-webkit-scrollbar-track {
  background: #f1f1f1; /* Color del track */
  border-radius: 4px;
}

.cards-vertical-container::-webkit-scrollbar-thumb {
  background: #888; /* Color del thumb */
  border-radius: 4px;
}

.cards-vertical-container::-webkit-scrollbar-thumb:hover {
  background: #555; /* Color del thumb al pasar el mouse */
}

/* Para Firefox */
.cards-vertical-container {
  scrollbar-width: thin; /* "auto" o "thin" */
  scrollbar-color: #888 #f1f1f1; /* thumb y track */
}

  /* Estilos para la tarjeta de ubicaciÃ³n */
  .location-card {
    height: 460px;
    margin-bottom: 20px;
    scroll-snap-align: start;
    background: #fff;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    overflow: hidden;
    font-family: Arial, sans-serif;
    padding: 15px;
  }

  .location-card img {
    width: 100%;
    display: block;
  }

  .location-info {
    color: #555;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
  }

  .location-title {
    font-size: 17px;
    font-weight: bold;
    margin: 5px 0;
  }
  .location-titled {
  font-size: 17px;
  font-weight: bold;
  margin: 5px 0;
  text-transform: uppercase;
}


  .location-hours {
    font-size: 16px;
    margin: 5px 0;
  }

  .location-card a {
    font-size: 14px;
    color: #0000EE;
    text-decoration: underline;
  }

  .location-card a:hover {
    color: #555;
  }

  /* Estilos para la tarjeta de tienda */
  .store-card {
    height: 750px;
    margin-bottom: 20px;
    scroll-snap-align: start;
    background: #fff;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    overflow: hidden;
    font-family: Arial, sans-serif;
  }

  .store-card img {
    width: 100%;
    display: block;
  }

  .store-card-body {
    padding: 15px;
  }

  .store-card h2 {
    margin: 10px 0;
    font-size: 20px;
  }

  .store-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    font-size: 25px;
  }

  .store-icon {
    font-size: 30px;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    color: #333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .store-info-item a {
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
  }

  .store-info-item a:hover {
    color: #555;
  }

  .store-social-icons {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .store-social-icons .store-icon {
    font-size: 24px;
    width: 30px;
    height: 30px;
    color: #555;
  }

  .store-social-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .store-social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .mimapar{
  width: 100%; height: 750px; background: #f5f5f5;
}