.shop-bundle-slider .swiper-slide.bundle-card {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.shop-bundle-slider .swiper-slide.bundle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.bundle-image img {
    max-width: 100%;
    border-radius: 8px;
}
.bundle-title a {
    font-weight: 600;
    font-size: 16px;
    color: #2c3e50;
    text-decoration: none;
}
.bundle-price {
    font-size: 18px;
    font-weight: 700;
    color: #e74c3c;
    margin: 10px 0;
}
.bundle-button a {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin-top: 5px;
}
.bundle-button a.add_to_cart_button {
    background-color: #27ae60;
}
.bundle-button a.inquire-button {
    background-color: #f39c12;
}
/* Ribbon / Special Deal Badge */
.bundle-card::before {
    content: 'Special Deal';
    position: absolute;
    top: 10px;
    left: -10px;
    background: #e74c3c;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    transform: rotate(-45deg);
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Discount percentage badge */
.bundle-price .discount-badge {
    display: inline-block;
    background: #f1c40f;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    margin-left: 5px;
    border-radius: 4px;
}
