.mwe-product-grid {
    display: grid;
    gap: 24px;
}

.mwe-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px;
    background: #fff;
}

.mwe-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.mwe-card a {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 768px) {
    .mwe-product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .mwe-product-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}