.products-block {
    margin-top: clamp(0.9375rem, 0.125rem + 4.0625vw, 5rem);
    /* 80 - 15 */
    background-size: contain !important;
    background-repeat: no-repeat !important;
}

.products-block h2 {
    margin-bottom: clamp(0.9375rem, 0.625rem + 1.5625vw, 2.5rem);
    /* 40 - 15 */
}

.products-block .products-outer {
    display: flex;
    flex-direction: row;
    gap: clamp(0.75rem, 0.525rem + 1.125vw, 1.875rem);
    /* 30 - 12 */
}

.products-block .products-all {
    flex-shrink: 0;
    display: none;
    flex-direction: column;
    border-radius: 2px;
    background: var(--bg-light-2, #E4E4E4);
    /* 1 */
    box-shadow: 0px 0px 30px 0px #0a000019;
    max-height: 550px;
    overflow: hidden;
    width: 370px;
}

.products-block .products-all .top__holder {
    max-width: 270px;
    padding: clamp(1.125rem, 0.725rem + 2vw, 3.125rem) clamp(0.75rem, 0.3375rem + 2.0625vw, 2.8125rem);
}

.products-block .products-all .products-all-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.products-block .products-all .photo__holder {
    max-width: 366px;
    max-height: 366px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    margin-top: auto;
    bottom: -56px;
    right: -50px;
}

.products-block .products-all .photo__holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 366px;
    min-width: 366px;
}

.products-block .products-all .btn {
    width: 100%;
    background: var(--card, #FFFFFF);
    color: var(--primary, #E55C31);
    color: var(--primary, #E55C31);

    /* h6 */
    font-family: 'Gilroy';
    font-size: var(--h6);
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 16px */

    padding-top: clamp(0.9375rem, 0.625rem + 1.5625vw, 2.5rem);
    padding-bottom: clamp(0.9375rem, 0.625rem + 1.5625vw, 2.5rem);
    /* 40 - 15 */
    margin-top: auto;
    z-index: 2;
}

.products-block .products-all .btn:hover {
    background: var(--primary);
    color: var(--card);
}

.products-block .products-all:hover .btn {
    background: var(--primary);
    color: var(--card);
}

.products-block .products {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(0.75rem, 0.525rem + 1.125vw, 1.875rem);
    /* 30 - 12 */
    width: 100%;
}

.products-block .products .product {
    max-width: unset;
}

@media(max-width:870px) {
    .products-block .products-outer {
        flex-direction: column-reverse;
    }

    .products-block .products-all {
        width: 100%;
        height: 300px;
    }

    .products-block .products-all .photo__holder {
        bottom: unset;
    }
}

@media(max-width:480px) {
    .products-block .products-all .photo__holder img {
        min-height: unset;
        min-width: unset;
        height: 250px;
        width: 250px;
    }

    .products-block .products-all {
        height: 220px;
    }

    .products-block .products-all .photo__holder {
        bottom: -50px;
    }

    .products-block .products-all .products-all-inner {
        display: block;
    }
}

@media(max-width:420px) {
    .products-block .products {
        grid-template-columns: 1fr;
    }
}

@media(max-width:380px) {
    .products-block .products-all .photo__holder {
        bottom: -120px;
    }
}

#main > div.products-block.alignwide > div > div > div > a > div.product-inner > div.top__holder > h4{
    color: var(--card);
}