.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.product-item {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.product-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.product-item h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-excerpt {
    font-size: 14px;
    color: #666;
}