.woocommerce ul.products li.product {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    transition: 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.woocommerce ul.products li.product img {
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.price {
    display: block;
    font-size: 16px;
    margin-bottom: 12px;
}

.btn-add {
    display: inline-block;
    background: #ff6b00;
    color: #fff;
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
}