/* Bottom Products Section Styling */
.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.product-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}
.product-card:hover .product-img img {
    transform: scale(1.05);
}
.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff5722;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 12px;
}
.product-info h6 {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0 5px;
}
.product-info .rating i {
    font-size: 14px;
}
.product-info .price {
    color: #ff5722;
    font-weight: 700;
    margin: 5px 0;
}
.product-info .btn {
    margin-top: 10px;
    font-size: 14px;
    padding: 5px 10px;
}
.section-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.best-selling { background: #fff3e0; padding: 20px; border-radius: 12px; }
.featured { background: #e1f5fe; padding: 20px; border-radius: 12px; }
.new-arrivals { background: #f1f8e9; padding: 20px; border-radius: 12px; }
.top-rated { background: #f3e5f5; padding: 20px; border-radius: 12px; }

/* Responsive */
@media (max-width: 768px) {
    .product-img img { height: 150px; }
    .section-title { font-size: 18px; text-align: center; }
}
