#promoProductsRow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 50px auto;
}

@media screen and (min-width: 768px) {
    #promoProductsRow {
        grid-template-columns: repeat(3, 1fr);
        max-width: 88vw;
        gap: 10px;
    }
}



.promoProductItem {
    display: flex;
    flex-direction: column;
    gap: 8px;

    &:hover .promoProductItem__image:after {
        opacity: 1;
    }
}

.promoProductItem__image {
    width: 100%;
    height: auto;
    position: relative;

    & > img {
        width: 100%;
        height: auto;
        display: block;
    }

    &:after {
        content: "Zobacz";
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        top: 0;
        height: 100%;
        position: absolute;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        transition: all 0.7s ease;
        font-size: 24px;
        letter-spacing: 2px;
        line-height: 30px;
        color: white;
        text-transform: uppercase;
        text-align: center;
    }
}

.promoProductItem__details {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 14px;
}

#slidingPhotosView {
    height: auto !important;
}

#slidingPhotos, #slidingPhotosMobile {
    display: none !important;
}

@media (max-width: 991px) {
    #slidingPhotosMobile {
        display: none !important;
        visibility: hidden !important;
    }
}