.bundles-wrapper-76e6ec98 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.bundle-card-76e6ec98 {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    width: 100%;
}

.bundle-card-76e6ec98.is-selected {
    border-color: #3b82f6;
    background: #eff6ff;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.1);
}

.bundle-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 12px;
    border-bottom-left-radius: 8px;
    text-transform: uppercase;
}

.bundle-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.bundle-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bundle-card-76e6ec98.is-selected .bundle-radio {
    border-color: #3b82f6;
}

.bundle-card-76e6ec98.is-selected .radio-inner {
    width: 10px;
    height: 10px;
    background: #3b82f6;
    border-radius: 50%;
}

.bundle-image img {
    max-width: 60px;
    height: auto;
    border-radius: 4px;
}

.bundle-center {
    flex: 1 1 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bundle-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bundle-title {
    font-weight: 700;
    font-size: 16px;
    color: #1e293b;
}

.bundle-discount-badge {
    background: #22c55e;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.bundle-subtitle {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

.bundle-right {
    flex: 0 0 auto;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.bundle-regular-price {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: line-through;
}

.bundle-sale-price {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.bundle-discount-text {
    font-size: 12px;
    color: #22c55e;
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .bundle-card-76e6ec98 {
        padding: 15px 10px;
    }
    .bundle-image img {
        max-width: 45px;
    }
    .bundle-title {
        font-size: 14px;
    }
    .bundle-sale-price {
        font-size: 16px;
    }
    .bundle-subtitle, .bundle-regular-price, .bundle-discount-text {
        font-size: 11px;
    }
    .bundle-center {
        padding: 0 10px;
    }
}
