:root {
    --title-black: #242424;
}

.category-page .page-header {
    /* height: 642px; */
    height: 100vh;
}

.category-page .page-header img {
    object-fit: cover;
    object-position: center center;
}

.category-page .page-header .header-title {
    font-size: 50px;
}

.category-page .page-header .header-text {
    font-size: 20px;
}

.category-page .category-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    /* padding: 0 20px; */
    margin: 0 auto;
    min-height: 440px;
}

.category-page.womens .category-grid, .category-page .page-header.women-last {
    margin-top: 10px;
}

.category-page .category-grid .column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    min-height: 100%;
}

.category-page .shoes-box {
    background-image: url('/assets/img/pages/category/women/women-shoes.webp');
    background-position: center;
    background-size: cover;
}

.category-page .shoes-box.mens {
    background-image: url('/assets/img/pages/category/men/mens-shoes.webp');
}

.category-page .bags-box {
    background-image: url('/assets/img/pages/category/women/women-bags.webp');
    background-position: center;
    background-size: cover;
}

.category-page .bags-box.mens {
    background-image: url('/assets/img/pages/category/men/mens-bags.webp');
}

.category-page .jewellery-box {
    background-image: url('/assets/img/pages/category/women/women-jewellery.webp');
    background-position: center;
    background-size: cover;
}

.category-page .jewellery-box.mens {
    background-image: url('/assets/img/pages/category/men/mens-jewellery.webp');
    background-position: bottom;
}

.category-page .accessory-box {
    background-image: url('/assets/img/pages/category/women/women-accessory.webp');
    background-position: center;
    background-size: cover;
}

.category-page .category-title {
    font-size: 22px;
}

.category-page .category-products .products-title {
    font-size: 35px;
    color: var(--title-black);
} 

.category-page .products-list {
    padding: 0 20px;
}

.category-page .products-list .product-item {
    height: 100%;
}

.category-page .products-list .product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.category-page .products-list .placeholder-box {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
}

.category-page .products-list .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-page .products-list .product-name {
    font-size: 16px;
    color: var(--title-black);
    width: 100%;
}

.category-page .products-list .product-price {
    font-size: 18px;
    color: var(--title-black);
    width: 100%;
}

@media (max-width: 768px) {
    .category-page .page-header:not(.last) {
        height: 500px;
    }
    .category-page .page-header.women-last {
        height: 378px;
    }
    .category-page .page-header.last {
        margin-top: 10px !important;
    }
    .category-page .page-header.last img {
        /* object-position: -160px 0; */
        object-position: 0;
    }
    .category-page .page-header .header-text {
        font-size: 16px;
        max-width: 100%;
    }
    .category-page .page-header .header-title {
        font-size: 22px;
    }
    .category-page .category-grid {
        flex-direction: column;
        min-height: fit-content;
        margin-top: 10px !important;
    }
    .category-page .category-grid .column {
        min-height: 648px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .category-page .products-list {
        padding: 0 16px;
    }
    .category-page .products-list .row {
        margin: 0 -7.5px;
    }
    .category-page .products-list .col-6 {
        padding: 0 7.5px;
    }
}


@media (max-width: 500px) {
    .category-page .page-header:not(.last) img {
        object-position: -106px 0;
    }
}