

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-image img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #f9f9f9;
    padding: 15px;
}
.product-content {
    padding: 20px;
}
.product-ref {
    color: var(--primary-orange);
    font-size: 0.85rem;
    font-weight: 600;
}
.product-features {
    list-style: none;
    padding: 10px 0;
    color: var(--meduim-gray);
}
.product-features li:before {
    content: "✓ ";
    color: var(--primary-green);
    font-weight: bold;
}
