/* VEDA shop categories on main shop page */
#start .row.justify-content-start {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start !important;
    gap: 0;
    margin-left: 0;
    margin-right: 0;
}

#start .row.justify-content-start > h1.iuewt {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    margin-bottom: 12px;
}

.veda-shop-category-card {
    flex: 0 0 auto;
    width: 150px;
    margin: 0 18px 24px 0;
    text-align: center;
}

.veda-shop-category-card__link {
    display: block;
    color: #000;
    text-decoration: none;
}

.veda-shop-category-card__link:hover {
    color: #ff7800;
    text-decoration: none;
}

.veda-shop-category-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    margin: 0 auto 10px;
    background: #fff;
    /* border: 1px solid #ff4b1f; */
    box-sizing: border-box;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.veda-shop-category-card__image img {
    display: block;
    /* max-width: 112px; */
    /* max-height: 112px; */
    width: auto;
    height: auto;
    object-fit: contain;
}

.veda-shop-category-card__title {
    display: block;
    min-height: 38px;
    color: #000;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 600;
    /* text-transform: uppercase; */
    word-break: normal;
}

.veda-shop-category-card__link:hover .veda-shop-category-card__image {
    border-color: #ff7800;
    box-shadow: 0 8px 18px rgba(255, 120, 0, .16);
    transform: translateY(-2px);
}

.veda-shop-category-card__link:hover .veda-shop-category-card__title {
    color: #ff7800;
}

@media (max-width: 767px) {
    #start .row.justify-content-start {
        justify-content: center !important;
    }

    .veda-shop-category-card {
        width: 132px;
        margin: 0 8px 20px;
    }

    .veda-shop-category-card__image {
        width: 132px;
        height: 132px;
    }

    .veda-shop-category-card__title {
        font-size: 16px;
    }
}