/* Bundle grid styling */
.bundle-grid, .bundle-slider .swiper-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bundle-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 300px;
    text-align: center;
    position: relative;
}

.bundle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.bundle-image {
    position: relative;
}

.bundle-image img {
    width: 100%;
    border-bottom: 1px solid #eee;
    object-fit: cover;
}

.bundle-discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4c3b;
    color: #fff;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.bundle-title {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
    min-height: 45px;
}

.bundle-price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.bundle-button {
    margin-bottom: 15px;
}

.bundle-button a {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.bundle-button .add_to_cart_button {
    background: #3c8dbc;
    color: #fff;
}

.bundle-button .add_to_cart_button:hover {
    background: #2a6a91;
}

.bundle-button .inquire-button {
    background: #ff4c3b;
    color: #fff;
}

.bundle-button .inquire-button:hover {
    background: #cc3a2e;
}

/* Slider adjustments */
.bundle-slider .swiper-slide {
    width: auto;
}
