.hero-banner {
    background: url('../images/banners/header-section-banner.png') center/cover no-repeat;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    text-align: center;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    height: 250px;
    object-fit: cover;
    transition: 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 15px;
}

.product-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.price {
    color: #28a745;
    font-weight: bold;
}

.product-rating i {
    color: #ffc107;
    font-size: 0.85rem;
}

.action-buttons .btn {
    font-size: 0.85rem;
}

.btn-wishlist {
    background-color: #f3f3f3;
    color: #555;
}

.btn-wishlist:hover {
    background-color: #e2e2e2;
}

.btn-cart {
    background-color: #9FCC9C;
    color: #fff;
}

.btn-cart:hover {
    background-color: #88bb88;
}