/* ============================================================
   static/css/index.css  –  Estilos da página principal
   ============================================================ */

/* Swiper ocupa toda a largura disponível */
.swiper {
    width: 100%;
    height: auto;
}

/* Mapa menor no mobile */
@media (max-width: 640px) {
    .map-container {
        height: 300px;
    }
}

/* Imagens de produto respeitam o card sem distorcer */
.img-produto {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}