:root {
    --mwbs-primary: #0073e6;
    --mwbs-badge: #4caf50;
    --mwbs-selected-bg: #f0f8ff;
    --mwbs-border: #e0e0e0;
}

.mwbs-bundle-selector {
    border: 1px solid var(--mwbs-border);
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
    font-family: inherit;
}

.mwbs-title {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #555;
    padding: 12px 15px;
    border-bottom: 1px solid var(--mwbs-border);
    position: relative;
}

.mwbs-title::before,
.mwbs-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--mwbs-border);
}

.mwbs-title::before { left: 15px; }
.mwbs-title::after { right: 15px; }

.mwbs-tier {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    cursor: pointer;
    border-bottom: 1px solid var(--mwbs-border);
    transition: background 0.2s;
    gap: 12px;
}

.mwbs-tier:last-of-type {
    border-bottom: none;
}

.mwbs-tier:hover {
    background: #fafafa;
}

.mwbs-tier-selected {
    background: var(--mwbs-selected-bg) !important;
    border-left: 3px solid var(--mwbs-primary);
}

.mwbs-tier-radio {
    flex-shrink: 0;
}

.mwbs-tier-radio input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--mwbs-primary);
    cursor: pointer;
    margin: 0;
}

.mwbs-tier-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mwbs-tier-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mwbs-tier-badge {
    display: inline-block;
    background: var(--mwbs-badge);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

.mwbs-tier-desc {
    font-size: 12px;
    color: #777;
}

.mwbs-tier-price {
    flex-shrink: 0;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mwbs-price-current {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.mwbs-price-original {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

/* Cart badge */
.mwbs-cart-badge {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 5px;
}

/* Mobile */
@media (max-width: 480px) {
    .mwbs-tier {
        padding: 12px 14px;
        gap: 10px;
    }
    .mwbs-tier-name {
        font-size: 14px;
    }
    .mwbs-price-current {
        font-size: 14px;
    }
    .mwbs-title::before,
    .mwbs-title::after {
        width: 20px;
    }
}
