.motherland-shop-grid ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .motherland-shop-grid ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .motherland-shop-grid ul.products {
        grid-template-columns: repeat(1, 1fr);
    }
}

.motherland-shop-grid ul.products li.product {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.motherland-shop-grid .button,
.motherland-single-product .button {
    background-color: #467FF7 !important;
    color: #fff !important;
    border-radius: 50px;
}