.home {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: auto;
    background: #FFFFFF;
    z-index: 1;
}

.home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.158) 0%, rgba(0, 0, 0, 0.11) 50%, rgba(0, 0, 0, 0.11) 100%);
    z-index: 3;
    pointer-events: none;
}

.home_slider_container {
    width: 100%;
    height: 100vh;
    position: relative;
}

.arrivals {
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.products_container {
    margin-top: 40px;
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    overflow-x: hidden;
    padding-bottom: 10px;
    justify-content: start;
    margin-left: -15px;
    margin-right: -15px;
}

/* Elimina el efecto de Bootstrap .row en esta zona */
.row.products_container, .products_container.row {
    display: flex !important;
    flex-wrap: nowrap !important;
    margin-left: 0;
    margin-right: 0;
}


.products_container .product_col {
    flex: 0 0 calc(25% - 22.5px);
    max-width: calc(25% - 22.5px);
    box-sizing: border-box;
}

.products_container .product_col .product {
    width: 100%;
}

/* New Arrivals: alinear ancho de imagen y barra de info */
.arrivals .products_container .product_col .product {
    display: flex;
    flex-direction: column;
}

.arrivals .products_container .product_col .product .product_image,
.arrivals .products_container .product_col .product .product_content {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .products_container .product_col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .products_container .product_col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
