.contenedor-tiendas {
    display: flex;
    width: 100%;
    height: calc(100vh - 90px);
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.contenedor-tiendas .panel-superior {
    flex-basis: 100%;
    padding: 12px 12px 0 30px;
    text-align: center;
}

.contenedor-tiendas .panel-izquierdo {
    flex-basis: 30%;
    background-color: #ffff;
    padding: 15px 30px;
    overflow-y: auto;
    border-top: 1px solid #7E7E7C;
}

.contenedor-tiendas .panel-mobile {
    display: none;
}

.contenedor-tiendas .titulo-buscador {
    font-size: 1.5rem;
    font-weight: 500;
    color: #3A3A34;
    margin: 0 0 5px 0;
}

.contenedor-tiendas .descripcion-buscador {
    font-size: 0.9rem;
    color: #7E7E7C;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.contenedor-tiendas .lista-islas {
    display: flex;
    flex-direction: column;
}

.contenedor-tiendas .isla-item {
    border-bottom: 1px solid #e0e0e0;
}

.contenedor-tiendas .isla-item.abierta {
    padding-bottom: 20px;
}

.contenedor-tiendas .boton-isla {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: #3A3A34;
    font-weight: 400;
    text-align: left;
}

.contenedor-tiendas .boton-isla:hover {
    color: #c67b24;
}

.contenedor-tiendas .icono-toggle {
    width: 1rem;
    transition: transform 0.2s ease;
}

.contenedor-tiendas .isla-item.abierta .icono-toggle {
    transform: rotate(45deg);
}

.contenedor-tiendas .contenido-isla {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
}

.contenedor-tiendas .isla-item.abierta .contenido-isla {
    max-height: 2000px;
}

.contenedor-tiendas .tienda-item:last-child {
    border-bottom: none;
}

.contenedor-tiendas .boton-tienda {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    color: #3A3A34;
    font-weight: 600;
    text-align: left;
}

.contenedor-tiendas .boton-tienda:hover {
    color: #c67b24;
}

.contenedor-tiendas .contenido-tienda {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
    background-color: #f9f9f9;
    padding: 0 15px;
    margin-bottom: 0;
    position: relative;
}

.contenedor-tiendas .tienda-item.abierta .contenido-tienda {
    max-height: 500px;
    padding: 5px 15px 5px 15px;
    margin-bottom: 10px;
}

.contenedor-tiendas .boton-cerrar-tienda {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #7E7E7C;
    cursor: pointer;
    padding: 5px 10px;
    line-height: 1;
}

.contenedor-tiendas .boton-cerrar-tienda:hover {
    color: #3A3A34;
}

.contenedor-tiendas .contenido-tienda p {
    margin: 5px 0;
    font-size: 0.85rem;
    color: #7E7E7C;
    line-height: 1.2;
}

.contenedor-tiendas .direccion-tienda {
    font-weight: 600;
    color: #3A3A34;
}

.contenedor-tiendas .panel-derecho {
    position: relative;
    flex-basis: 70%;
    padding-right: 1vw;

}

.contenedor-tiendas .contenedor-mapa {
    width: 100%;
    height: 75vh;
    background-image: url('../assets/mapa_background.jpg');
    background-size: cover;
    background-position: center;
}

.contenedor-tiendas .selectores-mobile {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.contenedor-tiendas .select-isla-mobile,
.contenedor-tiendas .select-tienda-mobile {
    flex: 1;
    padding: 12px;
    font-size: 0.95rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #fff;
    color: #3A3A34;
    cursor: pointer;
}

.contenedor-tiendas .select-tienda-mobile:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    color: #7E7E7C;
}

.contenedor-tiendas .info-tienda-mobile {
    display: none;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.contenedor-tiendas .info-tienda-mobile.visible {
    display: block;
}

.contenedor-tiendas .info-tienda-mobile .nombre-tienda-mobile {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3A3A34;
    margin-bottom: 10px;
}

.contenedor-tiendas .info-tienda-mobile p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #7E7E7C;
    line-height: 1.4;
}

.contenedor-tiendas .info-tienda-mobile .enlace-google-maps {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #c67b24;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.contenedor-tiendas .info-tienda-mobile .enlace-google-maps:hover {
    background-color: #a86820;
}

@media (max-width: 990px) {
    .contenedor-tiendas {
        flex-direction: column-reverse;
        height: auto;
    }

    .contenedor-tiendas .panel-superior {
        order: 1;
    }

    .contenedor-tiendas .panel-desktop {
        display: none;
    }

    .contenedor-tiendas .panel-mobile {
        display: block;
    }

    .contenedor-tiendas .panel-izquierdo {
        width: 100%;
        flex-basis: 100%;
        border-right: none;
        border-bottom: 0px solid #e0e0e0;
    }

    .contenedor-tiendas .panel-derecho {
        width: 100%;
        height: 60vh;
        min-height: 400px;
    }

    .contenedor-tiendas .contenedor-mapa {
        width: 100%;
        height: 67vh;
    }
}

@media (max-width: 768px) {
    .contenedor-tiendas .panel-izquierdo {
        padding: 25px 20px;
    }

    .contenedor-tiendas .titulo-buscador {
        font-size: 1.3rem;
    }

    .contenedor-tiendas .descripcion-buscador {
        font-size: 0.85rem;
    }

    .contenedor-tiendas .selectores-mobile {
        flex-direction: column;
    }
}

@media (hover: none) {
    .contenedor-tiendas .boton-isla:hover {
        color: #3A3A34;
    }
    
    .contenedor-tiendas .boton-tienda:hover {
        color: #3A3A34;
    }
    
    .contenedor-tiendas .boton-cerrar-tienda:hover {
        color: #7E7E7C;
    }
    
    .contenedor-tiendas .info-tienda-mobile .enlace-google-maps:hover {
        background-color: #c67b24;
    }
}