.madeco-products-ajax-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.product-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.product-card-image {
    padding: 20px;
    background: #fff;
    text-align: center;
}

.product-card-image img {
    max-height: 200px;
    object-fit: contain;
}

.product-card-content {
    padding: 15px;
    border-top: 1px solid #f3f4f6;
}

.product-card-title a {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    line-height: 1.2;
}

.product-card-price {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    display: block;
    margin: 10px 0;
}

.add-to-cart-ajax {
    display: block;
    text-align: center;
    background: #003b92;
    color: #fff !important;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}