.bundle-hero {
    background: linear-gradient(135deg, #090e1a 0%, #0d1e3d 100%);
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    border-bottom: 4px solid #198754;
}
.bundle-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(25, 135, 84, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}
.bundle-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}
.bundle-hero-content {
    position: relative;
    z-index: 2;
}
.badge-saving-pill {
    background: rgba(25, 135, 84, 0.2);
    border: 1px solid rgba(25, 135, 84, 0.4);
    color: #20c997;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.15);
}
.purchase-card-wrapper {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.purchase-card-wrapper:hover {
    transform: translateY(-5px);
}
.carousel-inner img {
    cursor: zoom-in;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.carousel-inner img:hover {
    transform: scale(1.015);
}
.list-checked li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}
.list-checked li::before {
    content: "\F272"; /* Bootstrap Icon bi-patch-check-fill */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: #198754;
    font-size: 1.15rem;
}
