body .category-thumb img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: top;
    aspect-ratio: auto 1;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    will-change: transform;
}

.category-thumb {
    overflow: hidden;
    width: 100%;
}

.category-content-d {
    background-color:var( --primary-color);
    padding: var(--space-s);
    width: 100%;
}
body .home-category-list .category-content-d {
    transition: all 0.5s ease !important;
    text-align: center;
}

.category .category-content-d a {
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-top: 0;
    text-align: center;
    color: var(--white-color);
    font-size: 15px;
}

.home-category-list {
    border-radius: var(--card-border-radius-s);
    overflow: hidden;
    position: relative;
}

.home-category-list:hover .category-thumb img {
    transform: scale(1.1);
}

.category-content-d a:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
}

.row .main-content:has(> .product-single) {
    width: 100%;
    max-width: 100%;
}

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

@media (max-width: 768px) {
    body .category-thumb img {
        height: 70px;
    }

    .category-content-d {
        padding: 5px 0 0 0;
        background-color: transparent;
        
    }

    .category .category-content-d a {
        color: var(--primary-color);
        font-size: 10px;
    }

    .home-category-list {
        border-radius: 0;
    }
}