html,
body {
    scroll-behavior: smooth;
}

.product-container-header-image {
    width: 800px;
}

.header-btn {
    background-color: var(--secondary-base);
    transition: all 150ms ease;
    padding: 0 16px;
}

.header-btn:hover {
    background-color: var(--secondary-dark);
}

/* Category */
.category-container {
    display: flex;
    overflow-x: hidden;
}

.category-container:hover {
    overflow-x: scroll;
}

.category-item {
    flex: none;
    margin-right: 32px;
}

.category-item a {
    transition: all 250ms ease;
    color: var(--grey);
    font-size: 17px;
}

.category-item a:hover {
    color: var(--secondary-dark);
}

.page-header {
    padding-top: 8rem;
}

/* Content */
.product {
    position: relative;
    width: 100%;
}

.image-product {
    border-radius: 5px;
    width: 100%;
    height: 27vw;
    object-fit: cover;
}

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

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

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

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

.page-link {
    border: none;
}

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

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

    .image-product {
        height: 25vh;
    }

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

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

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

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

    .image-product {
        height: 28vw;
    }

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