/* assets/css/frontend.css */
.pdv-horario-dia {
	font-size:15px;
    /*margin-bottom: 10px;*/
    /*padding: 5px 0;*/
    border-bottom: 1px solid #f2f2f2;
}

.pdv-horario-dia:last-child {
    border-bottom: none;
}

.pdv-cerrado {
    font-weight:400;
}

.pdv-horario-turno {
    margin: 0 5px;
    color: #2c3e50;
}

.pdv-jornada-continua {
    color: #27ae60;
    font-size: 0.9em;
    font-style: italic;
}
/* Contenedor principal */
.pdv-lista-contenedor {
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 20px;
}

/* Filtros y búsqueda */
.pdv-filtro-mapa {
    margin-bottom: 30px;
}

#pdv-direccion-busqueda {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Lista de puntos de venta */
.pdv-lista {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

/* Tarjetas individuales */
.pdv-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.pdv-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Logotipo en tarjetas */
.pdv-item-logo {
    text-align: center;
    margin-bottom: 15px;
}

.pdv-item-logo img {
    max-width: 150px;
    max-height: 100px;
    object-fit: contain;
}

/* Títulos y enlaces */
.pdv-item h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.5em;
}

.pdv-item h3 a {
    color: inherit;
    text-decoration: none;
}

/* Detalles */
.pdv-detalles p {
    margin: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
}

.pdv-detalles i {
    width: 20px;
    color: #0073aa;
    margin-right: 8px;
}

.pdv-ver-mas {
    display: inline-block;
    padding: 8px 15px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
    transition: background 0.2s ease;
}

.pdv-ver-mas:hover {
    background: #005177;
    color: #fff;
}

/* Página individual */
.pdv-single-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Cabecera con logo */
.pdv-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.pdv-logo {
    flex-shrink: 0;
}

.pdv-logo img {
    max-width: 200px;
    max-height: 150px;
    object-fit: contain;
}

.pdv-title {
    font-size: 2em;
    margin: 0;
    flex-grow: 1;
}

/* Galería de imágenes */
.pdv-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.pdv-gallery-item {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
}

.pdv-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pdv-gallery-item:hover img {
    transform: scale(1.05);
}

/* Información detallada */
.pdv-info {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pdv-detalle-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.pdv-detalle-item i {
    width: 20px;
    color: #0073aa;
    margin-top: 4px;
}

.pdv-detalle-contenido {
    flex-grow: 1;
}

.pdv-detalle-contenido strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

/* Horarios */
.pdv-horarios {
    display: grid;
    gap: 10px;
}

.pdv-horario-dia {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.pdv-horario-dia:last-child {
    border-bottom: none;
}

.pdv-horario-turnos {
    color: #666;
}

/* Descripción */
.pdv-descripcion {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.pdv-descripcion h2 {
    margin-bottom: 20px;
}

/* Mapa */
.pdv-mapa-container {
    margin: 30px 0;
}

#pdv-mapa {
    border-radius: 8px;
    overflow: hidden;
}

/* Responsivo */
@media (max-width: 768px) {
    .pdv-gallery {
        grid-template-columns: 1fr;
    }
    
    .pdv-header {
        flex-direction: column;
        text-align: center;
    }
    
    .pdv-horario-dia {
        flex-direction: column;
        text-align: center;
    }
    
    .pdv-horario-turnos {
        margin-top: 5px;
    }
}

/**/

/* Estilos para el buscador de tiendas */
.pdv-finder-container {
   /* max-width: 1200px;*/
    margin: 0 auto;
    padding: 20px;
}

.pdv-finder-columns {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

/* Columna izquierda */
.pdv-finder-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pdv-finder-search {
    display: flex;
    gap: 10px;
}

.pdv-search-input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.pdv-search-button {
    padding: 10px 20px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pdv-search-button:hover {
    background: #005177;
}

.pdv-finder-map {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

/* Columna derecha */
.pdv-stores-list {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
    max-height: 560px;
    overflow-y: auto;
}

.pdv-store-item {
    background: white;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pdv-store-item:last-child {
    margin-bottom: 0;
}

.pdv-store-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.pdv-store-info {
    flex-grow: 1;
}

.pdv-store-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.pdv-store-link {
    display: inline-block;
    padding: 5px 10px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.2s ease;
}

.pdv-store-link:hover {
    background: #005177;
}

.pdv-loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

.pdv-no-stores {
    text-align: center;
    padding: 20px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .pdv-finder-columns {
        grid-template-columns: 1fr;
    }

    .pdv-finder-map {
        height: 300px;
    }

    .pdv-stores-list {
        max-height: 400px;
    }
}