.page-header {
    padding-top: 1.5rem;
    padding-bottom: 0;
}

.carousel-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

.image-carousel {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
}

.image-carousel.slick-initialized {
    visibility: visible;
    opacity: 1;
}

/* Content */
.product {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 24px;
    transform: scale(1);
    transition: all .4s ease;
}

.image-product {
    border-radius: 5px;
    width: 100%;
    width: 100%;
    height: auto;
}

.product-hover {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    opacity: 0;
    background: rgba(153, 0, 14, 0.5);
    transition: all .2s ease;
}

.product:hover {
    transform: scale(1.05);
}

.product:hover .product-hover {
    opacity: 1;
}

.masonry-with-columns {
    columns: 3;
    column-gap: 24px;
}

.slick-dots {
    margin-bottom: 0;
    bottom: -16px;
}

.slick-dots li.slick-active button:before {
    color: var(--primary-light) !important;
    opacity: 1 !important;
}

.slick-dots li button:before
{
    font-size: 16px !important;
    line-height: 16px !important;
}

.slick-dots li button:before {
    color: var(--primary-light) !important;
}

.relate-gutter {
    margin-left: -12px;
    margin-right: -12px;
}

.relate-gutter > [class^="col-"],
.relate-gutter > [class^=" col-"] {
    padding-left: 12px;
    padding-right: 12px;
}

@media only screen and (max-width: 767.98px) {

    .page-header {
        padding-bottom: 0 !important;
    }

    .product-hover {
        opacity: 1;
    }

    .carousel-image {
        height: 60vw;
    }

    .page-header {
        padding-bottom: 2rem;
    }

    .product .product-hover {
        display: none;
    }

    .product {
        transform: scale(1) !important;
        break-inside: avoid;
    }

    .masonry-with-columns {
        columns: 1;
    }

}

@media only screen and (min-width: 768px) and (max-width: 997.98px) {

    .product-container-header-image {
        width: 100%;
    }

    .product .product-hover {
        display: none;
    }

    .masonry-with-columns {
        columns: 2;
    }

    .product {
        break-inside: avoid;
        transform: scale(1) !important;
    }
}
