/* General */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

/* Botones o elementos destacados */
button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #546C4C;
    font-size: 20px;
}

/* Para textos normales */
p, select, option {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #546C4C;
    font-size: 20px;
}

/* Contenedor principal */
div {
    box-sizing: border-box;
}

/* Contenedor del mapa y selector */
#mapa {
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #546C4C;
    border-radius: 5px;
    margin-bottom: 20px;
}

select {
    width: 100%;
    padding: 10px;
    border: 1px solid #546C4C;
    border-radius: 5px;
    background-color: #f4f4f4;
    box-sizing: border-box;
}

/* Contenedores de columnas */
.column {
    width: 50%;
    float: left;
    padding: 10px;
}

/* Limpiar flotantes */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Estilos del iframe */
iframe {
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
    overflow: hidden; /*ocultar barra de desplazamiento*/
}

/* Ajuste de los logos y contenedor de información */
#info-tienda img {
    width: 40px !important; /* Aumentamos el tamaño de los logos */
    height: 40px !important;
    margin-right: 15px;
}

#info-tienda div {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start; /* Cambiamos a flex-start para mejor alineación con textos largos */
    flex-wrap: wrap; /* Permitimos que el contenido se ajuste */
}

#info-tienda span {
    flex: 1;
    min-width: 200px; /* Aseguramos un ancho mínimo para el texto */
}

.main-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 20px;
}

#mapa{
    width:65%;
}

#tienda-select{
    width: 100% !important;
}

.column{
    width: 35%;
    margin-left: 20px; 
    font-family: 'Montserrat', sans-serif;
}
/* Pantallas pequeñas (880px o menos) */
@media (max-width: 880px) {
    .main-container {
        width: 100%;
        display: block;
        flex-direction: none;
        gap: 0px;
        padding: 0px;
    }
    #mapa{
        width:100%;
    }
    .column{
        width: 100%;
        margin-left: 0px !important;
    }
}
