/* Category Card Layout */
.product-category-item {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Image Container */
.product-category-item .product-category-item__image {
    width: 100%;
    height: 220px !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image Full Size */
.product-category-item .product-category-item__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}

/* Category Name */
.product-category-item .product-category-item__title {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}