/** Shopify CDN: Minification failed

Line 20:4 Unexpected "{"
Line 21:8 Unexpected "{"
Line 22:16 Expected ":"
Line 28:8 Unexpected "{"
Line 29:12 Unexpected "{"
Line 30:20 Expected ":"
Line 37:8 Unexpected "{"
Line 38:12 Unexpected "{"
Line 39:20 Expected ":"
Line 46:8 Unexpected "{"
... and 5 more hidden warnings

**/
/*-----------------------------------------------------------------------------/
/ Custom Theme CSS
/-----------------------------------------------------------------------------*/
/*---------------- Global Custom CSS -------------------*/
    {
        {
        settings.global_css
    }
}

/*---------------- Custom CSS for only desktop -------------------*/
@media (min-width: 1025px) {
        {
            {
            settings.desktop_css
        }
    }
}

/*---------------- Custom CSS for tablet, mobile -------------------*/
@media (max-width: 1024px) {
        {
            {
            settings.tablet_mobile_css
        }
    }
}

/*---------------- Custom CSS for only tablet -------------------*/
@media (min-width: 768px) and (max-width: 1024px) {
        {
            {
            settings.tablet_css
        }
    }
}

/*---------------- Custom CSS for only mobile -------------------*/
@media (max-width: 767px) {
        {
            {
            settings.mobile_css
        }
    }
}

/*DROPDOWN DISTRIBUIDORES*/
.store-locator {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-container {
    width: 30%;
}

#city-select {
    width: 100%;
    padding: 8px;
    font-size: 16px;
}

.store-list {
    width: 65%;
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.store-list h3 {
    margin-bottom: 10px;
}

#store-results {
    list-style: none;
    padding: 0;
}

#store-results li {
    padding: 10px;
    background: #eeeeee;
    margin-bottom: 5px;
    border-radius: 5px;
}

/* Ajuste para dispositivos móviles */
@media (max-width: 768px) {
    .store-locator {
        flex-direction: column;
        /* Cambia de fila a columna */
        gap: 10px;
        /* Reduce el espacio entre elementos */
        padding: 15px;
        /* Ajusta el padding */
    }

    .dropdown-container,
    .store-list {
        width: 100%;
        /* Ambos elementos ocupan todo el ancho */
    }

    #city-select {
        font-size: 14px;
        /* Reduce ligeramente el tamaño de fuente */
        padding: 6px;
        /* Ajusta el padding */
        margin-bottom: 20px;
    }

    #store-results li {
        font-size: 14px;
        /* Reduce tamaño de fuente en mobile */
        padding: 8px;
        /* Ajusta el espaciado */
    }
}