.shop-all-page {
    background: #ffffff;
    color: #171313;
}

.shop-all-catalog {
    width: 100%;
    background: #ffffff;
}

.shop-all-catalog__inner {
    width: min(1500px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
    align-items: start;
    gap: 36px;
    padding: 38px 0 72px;
    
}


.shop-product-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    margin-top: 12px;
}

.shop-product-card__button {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 8px 12px;

    border-radius: 4px;

    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;

    cursor: pointer;
}

/* Same treatment as product-detail Add to Wishlist */
.shop-product-card__button--view {
    border: 1px solid #ded8da;

    background: #ffffff;
    color: #171313;
}

/* Same treatment as product-detail Add to Cart */
.shop-product-card__button--cart {
    border: 1px solid #f21869;

    background: #f21869;
    color: #ffffff;
}

.shop-product-card__button--view:hover {
    border-color: #171313;
}

.shop-product-card__button--cart:hover {
    border-color: #d80f59;
    background: #d80f59;
}


@media (max-width: 980px) {
    .shop-all-catalog__inner {
        width: min(100% - 32px, 1100px);
        grid-template-columns: 1fr;
        gap: 22px;
        padding-top: 24px;
    }
}

@media (max-width: 600px) {
    .shop-all-catalog__inner {
        width: min(100% - 24px, 720px);
        padding-bottom: 48px;
    }

    .shop-product-card__actions {
        grid-template-columns: 1fr;
    }
}
