.sgr-product-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: -12px;
}

.sgr-category-card {
    background: #fff;
    transition: all 200ms ease;
}

.sgr-subcategories a {
    font-size: 14px;
    line-height: 22px;
    color: #181d25;
    position: relative;
    text-decoration: none;
}


.sgr-subcategories a:after {
    content: "";
    height: 1px;
    width: 0;
    transition: width 400ms ease-in-out;
    background: black;
    left: 0;
    bottom: -3px;
    display: inline-block;
    position: absolute;
}

.sgr-subcategories a:hover:after {
    width: 100%;
}


.sgr-category-card:hover img {
    scale: 1.025;
}
.sgr-category-image{
    overflow: hidden;
    width: 100%;
    max-height: 230px;
    aspect-ratio: 4/3;
    display: block;
    border-radius: .5rem;
    margin-bottom: 1rem;
}
.sgr-category-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: .5rem;
    transition: all 300ms ease;
}

.sgr-category-title {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
}

.sgr-category-title a {
    text-decoration: none;
    color: inherit;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}

.sgr-subcategories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sgr-subcategories li {
    margin-bottom: 0.4rem;
}

