.arina-product-categories-widget{
    width: 100%;
}

.arina-product-widget-heading{
    text-align: center;
    margin-bottom: 24px;
}

.arina-product-widget-title{
    color: #fff;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.arina-product-widget-line{
    display: block;
    width: 40px;
    height: 2px;
    background: #f97316;
    margin: 10px auto 0;
}

.arina-product-cats-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.arina-product-cat-card{
    position: relative;
    min-height: 340px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 18px 14px;
}

.arina-product-cat-overlay{
    position: absolute;
    inset: 0;

    z-index: 1;
}

.arina-product-cat-content{
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.arina-product-cat-title{
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    min-height: 38px;
}

.arina-product-cat-card{
    background-size: 100%;
    background-position: center;
    transition: background-size .45s ease;
}

.arina-product-cat-card:hover{
    background-size: 108%;
}