.cat-product-image-container {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    height: 320px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.30) 100%);
    border-radius: 24px;
    margin-bottom: 24px;
}

.cat-product-image-container img {
    /* `object-fit: cover` makes the image fill the container, possibly cropping it. */
    object-fit: cover;
    /* `object-position: top` aligns the image to the top of the container. */
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    border-radius: 24px;

}



.cat-carrousel {
    width: 100%;
    height: 100%;
}

.cat-page {
    bottom: 0px;
}

.cat-name-box {
    position: absolute;
    display: flex;
    bottom: 0;
    left: 0;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.cat-name-box h2,
.cat-name-box span {
    color: #FFF;
}

.cat-button-box {
    position: absolute;
    display: flex;
    right: 0;
    bottom: 0;
    padding: 24px;
    flex-direction: row;
}

.btn-secundario-buy-store a {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.btn-secundario-buy-store a>p {
    color: #fff;
    font-size: 16px;
}

.cat-carousel-dots {
    position: relative;
    top: 100%;
    display: flex;
    gap: 8px;
    background-color: #ffffff;
    padding: 8px 24px;
    border-radius: 16px;
    box-shadow: 0px 1px 4px rgba(12, 12, 13, 0.05);
    margin-top: -18px;
    width: fit-content;
}

.cat-descript {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;


    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 1px 4px 0 rgba(12, 12, 13, 0.10), 0 1px 4px 0 rgba(12, 12, 13, 0.05);

}

.cat-title {
    color: #333;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
}

.cat-name-box > .cat-title, .cat-name-box > .cat-subtitle {
    text-shadow: 0px 0px 8px #000000;
}

.cat-subtitle {
    color: #333;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

.category-btn {
    backdrop-filter: none;
}



/*  *********************************************
********** TABLET/MOBILE MEDIA QUERY  *******o****
*********************************************  */

@media (max-width: 1200px) {}

@media (max-width: 840px) {

    .cat-title {
        font-size: 28px;
    }
}

@media (max-width: 648px) {

    .cat-button-box {
        display: none;
    }

    .cat-name-box {
        bottom: 32px;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
}