/* all-product-widget.css */
.all-products-wrapper {
    display: grid;
    gap: 20px;
}

.product-card {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.product-card h4 {
    margin: 15px 0 10px;
    font-size: 18px;
}

.product-card p {
    color: #2f8f2f;
    font-weight: 600;
    font-size: 16px;
}
